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>
24 #include <linux/version.h>
26 #include <linux/vmalloc.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
30 #include <linux/string.h>
31 #include <linux/pagemap.h>
34 #include <linux/uaccess.h>
35 #include <linux/jiffies.h>
36 #include <media/v4l2-ioctl.h>
41 #define DEF_NURBS 2 /* default number of URBs */
43 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
44 MODULE_DESCRIPTION("GSPCA USB Camera Driver");
45 MODULE_LICENSE("GPL");
47 #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 4, 0)
49 static int video_nr = -1;
52 int gspca_debug = D_ERR | D_PROBE;
53 EXPORT_SYMBOL(gspca_debug);
55 static void PDEBUG_MODE(char *txt, __u32 pixfmt, int w, int h)
57 if ((pixfmt >> 24) >= '0' && (pixfmt >> 24) <= 'z') {
58 PDEBUG(D_CONF|D_STREAM, "%s %c%c%c%c %dx%d",
62 (pixfmt >> 16) & 0xff,
66 PDEBUG(D_CONF|D_STREAM, "%s 0x%08x %dx%d",
73 #define PDEBUG_MODE(txt, pixfmt, w, h)
76 /* specific memory types - !! should different from V4L2_MEMORY_xxx */
77 #define GSPCA_MEMORY_NO 0 /* V4L2_MEMORY_xxx starts from 1 */
78 #define GSPCA_MEMORY_READ 7
80 #define BUF_ALL_FLAGS (V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_DONE)
85 static void gspca_vm_open(struct vm_area_struct *vma)
87 struct gspca_frame *frame = vma->vm_private_data;
89 frame->vma_use_count++;
90 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_MAPPED;
93 static void gspca_vm_close(struct vm_area_struct *vma)
95 struct gspca_frame *frame = vma->vm_private_data;
97 if (--frame->vma_use_count <= 0)
98 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_MAPPED;
101 static struct vm_operations_struct gspca_vm_ops = {
102 .open = gspca_vm_open,
103 .close = gspca_vm_close,
106 /* get the current input frame buffer */
107 struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev)
109 struct gspca_frame *frame;
113 i = gspca_dev->fr_queue[i];
114 frame = &gspca_dev->frame[i];
115 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
116 != V4L2_BUF_FLAG_QUEUED)
120 EXPORT_SYMBOL(gspca_get_i_frame);
123 * fill a video frame from an URB and resubmit
125 static void fill_frame(struct gspca_dev *gspca_dev,
128 struct gspca_frame *frame;
129 __u8 *data; /* address of data in the iso message */
133 if (urb->status != 0) {
135 if (!gspca_dev->frozen)
137 PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
138 return; /* disconnection ? */
140 pkt_scan = gspca_dev->sd_desc->pkt_scan;
141 for (i = 0; i < urb->number_of_packets; i++) {
143 /* check the availability of the frame buffer */
144 frame = gspca_get_i_frame(gspca_dev);
146 gspca_dev->last_packet_type = DISCARD_PACKET;
150 /* check the packet status and length */
151 len = urb->iso_frame_desc[i].actual_length;
153 if (gspca_dev->empty_packet == 0)
154 gspca_dev->empty_packet = 1;
157 st = urb->iso_frame_desc[i].status;
160 "ISOC data error: [%d] len=%d, status=%d",
162 gspca_dev->last_packet_type = DISCARD_PACKET;
166 /* let the packet be analyzed by the subdriver */
167 PDEBUG(D_PACK, "packet [%d] o:%d l:%d",
168 i, urb->iso_frame_desc[i].offset, len);
169 data = (__u8 *) urb->transfer_buffer
170 + urb->iso_frame_desc[i].offset;
171 pkt_scan(gspca_dev, frame, data, len);
174 /* resubmit the URB */
175 st = usb_submit_urb(urb, GFP_ATOMIC);
177 PDEBUG(D_ERR|D_PACK, "usb_submit_urb() ret %d", st);
181 * ISOC message interrupt from the USB device
183 * Analyse each packet and call the subdriver for copy to the frame buffer.
185 static void isoc_irq(struct urb *urb
188 struct gspca_dev *gspca_dev = (struct gspca_dev *) urb->context;
190 PDEBUG(D_PACK, "isoc irq");
191 if (!gspca_dev->streaming)
193 fill_frame(gspca_dev, urb);
197 * bulk message interrupt from the USB device
199 static void bulk_irq(struct urb *urb
202 struct gspca_dev *gspca_dev = (struct gspca_dev *) urb->context;
203 struct gspca_frame *frame;
206 PDEBUG(D_PACK, "bulk irq");
207 if (!gspca_dev->streaming)
209 switch (urb->status) {
217 if (!gspca_dev->frozen)
219 PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
220 return; /* disconnection ? */
223 /* check the availability of the frame buffer */
224 frame = gspca_get_i_frame(gspca_dev);
226 gspca_dev->last_packet_type = DISCARD_PACKET;
228 PDEBUG(D_PACK, "packet l:%d", urb->actual_length);
229 gspca_dev->sd_desc->pkt_scan(gspca_dev,
231 urb->transfer_buffer,
235 /* resubmit the URB */
236 if (gspca_dev->cam.bulk_nurbs != 0) {
237 st = usb_submit_urb(urb, GFP_ATOMIC);
239 PDEBUG(D_ERR|D_PACK, "usb_submit_urb() ret %d", st);
244 * add data to the current frame
246 * This function is called by the subdrivers at interrupt level.
248 * To build a frame, these ones must add
250 * - 0 or many INTER_PACKETs
252 * DISCARD_PACKET invalidates the whole frame.
253 * On LAST_PACKET, a new frame is returned.
255 struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev,
256 enum gspca_packet_type packet_type,
257 struct gspca_frame *frame,
263 PDEBUG(D_PACK, "add t:%d l:%d", packet_type, len);
265 /* when start of a new frame, if the current frame buffer
266 * is not queued, discard the whole frame */
267 if (packet_type == FIRST_PACKET) {
268 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
269 != V4L2_BUF_FLAG_QUEUED) {
270 gspca_dev->last_packet_type = DISCARD_PACKET;
273 frame->data_end = frame->data;
274 jiffies_to_timeval(get_jiffies_64(),
275 &frame->v4l2_buf.timestamp);
276 frame->v4l2_buf.sequence = ++gspca_dev->sequence;
277 } else if (gspca_dev->last_packet_type == DISCARD_PACKET) {
278 if (packet_type == LAST_PACKET)
279 gspca_dev->last_packet_type = packet_type;
283 /* append the packet to the frame buffer */
285 if (frame->data_end - frame->data + len
286 > frame->v4l2_buf.length) {
287 PDEBUG(D_ERR|D_PACK, "frame overflow %zd > %d",
288 frame->data_end - frame->data + len,
289 frame->v4l2_buf.length);
290 packet_type = DISCARD_PACKET;
292 memcpy(frame->data_end, data, len);
293 frame->data_end += len;
296 gspca_dev->last_packet_type = packet_type;
298 /* if last packet, wake up the application and advance in the queue */
299 if (packet_type == LAST_PACKET) {
300 frame->v4l2_buf.bytesused = frame->data_end - frame->data;
301 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_QUEUED;
302 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_DONE;
303 wake_up_interruptible(&gspca_dev->wq); /* event = new frame */
304 i = (gspca_dev->fr_i + 1) % gspca_dev->nframes;
306 PDEBUG(D_FRAM, "frame complete len:%d q:%d i:%d o:%d",
307 frame->v4l2_buf.bytesused,
311 j = gspca_dev->fr_queue[i];
312 frame = &gspca_dev->frame[j];
316 EXPORT_SYMBOL(gspca_frame_add);
318 static int gspca_is_compressed(__u32 format)
321 case V4L2_PIX_FMT_MJPEG:
322 case V4L2_PIX_FMT_JPEG:
323 case V4L2_PIX_FMT_SPCA561:
324 case V4L2_PIX_FMT_PAC207:
330 static void *rvmalloc(unsigned long size)
335 mem = vmalloc_32(size);
337 adr = (unsigned long) mem;
338 while ((long) size > 0) {
339 SetPageReserved(vmalloc_to_page((void *) adr));
347 static void rvfree(void *mem, long size)
351 adr = (unsigned long) mem;
353 ClearPageReserved(vmalloc_to_page((void *) adr));
360 static int frame_alloc(struct gspca_dev *gspca_dev,
363 struct gspca_frame *frame;
367 i = gspca_dev->curr_mode;
368 frsz = gspca_dev->cam.cam_mode[i].sizeimage;
369 PDEBUG(D_STREAM, "frame alloc frsz: %d", frsz);
370 frsz = PAGE_ALIGN(frsz);
371 gspca_dev->frsz = frsz;
372 if (count > GSPCA_MAX_FRAMES)
373 count = GSPCA_MAX_FRAMES;
374 gspca_dev->frbuf = rvmalloc(frsz * count);
375 if (!gspca_dev->frbuf) {
376 err("frame alloc failed");
379 gspca_dev->nframes = count;
380 for (i = 0; i < count; i++) {
381 frame = &gspca_dev->frame[i];
382 frame->v4l2_buf.index = i;
383 frame->v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
384 frame->v4l2_buf.flags = 0;
385 frame->v4l2_buf.field = V4L2_FIELD_NONE;
386 frame->v4l2_buf.length = frsz;
387 frame->v4l2_buf.memory = gspca_dev->memory;
388 frame->v4l2_buf.sequence = 0;
389 frame->data = frame->data_end =
390 gspca_dev->frbuf + i * frsz;
391 frame->v4l2_buf.m.offset = i * frsz;
393 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
394 gspca_dev->last_packet_type = DISCARD_PACKET;
395 gspca_dev->sequence = 0;
399 static void frame_free(struct gspca_dev *gspca_dev)
403 PDEBUG(D_STREAM, "frame free");
404 if (gspca_dev->frbuf != NULL) {
405 rvfree(gspca_dev->frbuf,
406 gspca_dev->nframes * gspca_dev->frsz);
407 gspca_dev->frbuf = NULL;
408 for (i = 0; i < gspca_dev->nframes; i++)
409 gspca_dev->frame[i].data = NULL;
411 gspca_dev->nframes = 0;
414 static void destroy_urbs(struct gspca_dev *gspca_dev)
419 PDEBUG(D_STREAM, "kill transfer");
420 for (i = 0; i < MAX_NURBS; i++) {
421 urb = gspca_dev->urb[i];
425 gspca_dev->urb[i] = NULL;
426 if (!gspca_dev->present)
428 if (urb->transfer_buffer != NULL)
429 usb_buffer_free(gspca_dev->dev,
430 urb->transfer_buffer_length,
431 urb->transfer_buffer,
438 * look for an input transfer endpoint in an alternate setting
440 static struct usb_host_endpoint *alt_xfer(struct usb_host_interface *alt,
444 struct usb_host_endpoint *ep;
447 epaddr |= USB_DIR_IN;
448 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
449 ep = &alt->endpoint[i];
450 if (ep->desc.bEndpointAddress == epaddr) {
451 attr = ep->desc.bmAttributes
452 & USB_ENDPOINT_XFERTYPE_MASK;
462 * look for an input (isoc or bulk) endpoint
464 * The endpoint is defined by the subdriver.
465 * Use only the first isoc (some Zoran - 0x0572:0x0001 - have two such ep).
466 * This routine may be called many times when the bandwidth is too small
467 * (the bandwidth is checked on urb submit).
469 static struct usb_host_endpoint *get_ep(struct gspca_dev *gspca_dev)
471 struct usb_interface *intf;
472 struct usb_host_endpoint *ep;
475 intf = usb_ifnum_to_if(gspca_dev->dev, gspca_dev->iface);
477 i = gspca_dev->alt; /* previous alt setting */
480 while (--i > 0) { /* alt 0 is unusable */
481 ep = alt_xfer(&intf->altsetting[i],
482 gspca_dev->cam.epaddr,
483 USB_ENDPOINT_XFER_ISOC);
488 /* if no isoc, try bulk */
490 ep = alt_xfer(&intf->altsetting[0],
491 gspca_dev->cam.epaddr,
492 USB_ENDPOINT_XFER_BULK);
494 err("no transfer endpoint found");
498 PDEBUG(D_STREAM, "use alt %d ep 0x%02x",
499 i, ep->desc.bEndpointAddress);
501 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, i);
503 err("set interface err %d", ret);
507 gspca_dev->alt = i; /* memorize the current alt setting */
512 * create the URBs for image transfer
514 static int create_urbs(struct gspca_dev *gspca_dev,
515 struct usb_host_endpoint *ep)
518 int n, nurbs, i, psize, npkt, bsize;
520 /* calculate the packet size and the number of packets */
521 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
523 if (gspca_dev->alt != 0) { /* isoc */
525 /* See paragraph 5.9 / table 5-11 of the usb 2.0 spec. */
526 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
527 npkt = ISO_MAX_SIZE / psize;
528 if (npkt > ISO_MAX_PKT)
530 bsize = psize * npkt;
532 "isoc %d pkts size %d = bsize:%d",
537 bsize = gspca_dev->cam.bulk_size;
540 PDEBUG(D_STREAM, "bulk bsize:%d", bsize);
541 if (gspca_dev->cam.bulk_nurbs != 0)
542 nurbs = gspca_dev->cam.bulk_nurbs;
547 gspca_dev->nurbs = nurbs;
548 for (n = 0; n < nurbs; n++) {
549 urb = usb_alloc_urb(npkt, GFP_KERNEL);
551 err("usb_alloc_urb failed");
552 destroy_urbs(gspca_dev);
555 urb->transfer_buffer = usb_buffer_alloc(gspca_dev->dev,
560 if (urb->transfer_buffer == NULL) {
562 err("usb_buffer_urb failed");
563 destroy_urbs(gspca_dev);
566 gspca_dev->urb[n] = urb;
567 urb->dev = gspca_dev->dev;
568 urb->context = gspca_dev;
569 urb->transfer_buffer_length = bsize;
570 if (npkt != 0) { /* ISOC */
571 urb->pipe = usb_rcvisocpipe(gspca_dev->dev,
572 ep->desc.bEndpointAddress);
573 urb->transfer_flags = URB_ISO_ASAP
574 | URB_NO_TRANSFER_DMA_MAP;
575 urb->interval = ep->desc.bInterval;
576 urb->complete = isoc_irq;
577 urb->number_of_packets = npkt;
578 for (i = 0; i < npkt; i++) {
579 urb->iso_frame_desc[i].length = psize;
580 urb->iso_frame_desc[i].offset = psize * i;
583 urb->pipe = usb_rcvbulkpipe(gspca_dev->dev,
584 ep->desc.bEndpointAddress),
585 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
586 urb->complete = bulk_irq;
593 * start the USB transfer
595 static int gspca_init_transfer(struct gspca_dev *gspca_dev)
597 struct usb_host_endpoint *ep;
600 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
603 /* set the higher alternate setting and
604 * loop until urb submit succeeds */
605 gspca_dev->alt = gspca_dev->nbalt;
607 PDEBUG(D_STREAM, "init transfer alt %d", gspca_dev->alt);
608 ep = get_ep(gspca_dev);
613 ret = create_urbs(gspca_dev, ep);
617 /* clear the bulk endpoint */
618 if (gspca_dev->alt == 0) /* if bulk transfer */
619 usb_clear_halt(gspca_dev->dev,
620 usb_rcvintpipe(gspca_dev->dev,
621 gspca_dev->cam.epaddr));
624 ret = gspca_dev->sd_desc->start(gspca_dev);
626 destroy_urbs(gspca_dev);
629 gspca_dev->streaming = 1;
631 /* some bulk transfers are started by the subdriver */
632 if (gspca_dev->alt == 0 && gspca_dev->cam.bulk_nurbs == 0)
635 /* submit the URBs */
636 for (n = 0; n < gspca_dev->nurbs; n++) {
637 ret = usb_submit_urb(gspca_dev->urb[n], GFP_KERNEL);
639 PDEBUG(D_ERR|D_STREAM,
640 "usb_submit_urb [%d] err %d", n, ret);
641 gspca_dev->streaming = 0;
642 destroy_urbs(gspca_dev);
643 if (ret == -ENOSPC) {
644 msleep(20); /* wait for kill
646 break; /* try the previous alt */
655 mutex_unlock(&gspca_dev->usb_lock);
659 static int gspca_set_alt0(struct gspca_dev *gspca_dev)
663 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, 0);
665 PDEBUG(D_ERR|D_STREAM, "set alt 0 err %d", ret);
669 /* Note: both the queue and the usb locks should be held when calling this */
670 static void gspca_stream_off(struct gspca_dev *gspca_dev)
672 gspca_dev->streaming = 0;
673 if (gspca_dev->present
674 && gspca_dev->sd_desc->stopN)
675 gspca_dev->sd_desc->stopN(gspca_dev);
676 destroy_urbs(gspca_dev);
677 gspca_set_alt0(gspca_dev);
678 if (gspca_dev->sd_desc->stop0)
679 gspca_dev->sd_desc->stop0(gspca_dev);
680 PDEBUG(D_STREAM, "stream off OK");
683 static void gspca_set_default_mode(struct gspca_dev *gspca_dev)
687 i = gspca_dev->cam.nmodes - 1; /* take the highest mode */
688 gspca_dev->curr_mode = i;
689 gspca_dev->width = gspca_dev->cam.cam_mode[i].width;
690 gspca_dev->height = gspca_dev->cam.cam_mode[i].height;
691 gspca_dev->pixfmt = gspca_dev->cam.cam_mode[i].pixelformat;
694 static int wxh_to_mode(struct gspca_dev *gspca_dev,
695 int width, int height)
699 for (i = gspca_dev->cam.nmodes; --i > 0; ) {
700 if (width >= gspca_dev->cam.cam_mode[i].width
701 && height >= gspca_dev->cam.cam_mode[i].height)
708 * search a mode with the right pixel format
710 static int gspca_get_mode(struct gspca_dev *gspca_dev,
716 modeU = modeD = mode;
717 while ((modeU < gspca_dev->cam.nmodes) || modeD >= 0) {
719 if (gspca_dev->cam.cam_mode[modeD].pixelformat
723 if (++modeU < gspca_dev->cam.nmodes) {
724 if (gspca_dev->cam.cam_mode[modeU].pixelformat
732 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
733 struct v4l2_fmtdesc *fmtdesc)
735 struct gspca_dev *gspca_dev = priv;
739 /* give an index to each format */
742 for (i = gspca_dev->cam.nmodes; --i >= 0; ) {
743 fmt_tb[index] = gspca_dev->cam.cam_mode[i].pixelformat;
746 if (fmt_tb[j] == fmt_tb[index])
751 if (fmtdesc->index == index)
752 break; /* new format */
754 if (index >= ARRAY_SIZE(fmt_tb))
759 return -EINVAL; /* no more format */
761 fmtdesc->pixelformat = fmt_tb[index];
762 if (gspca_is_compressed(fmt_tb[index]))
763 fmtdesc->flags = V4L2_FMT_FLAG_COMPRESSED;
764 fmtdesc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
765 fmtdesc->description[0] = fmtdesc->pixelformat & 0xff;
766 fmtdesc->description[1] = (fmtdesc->pixelformat >> 8) & 0xff;
767 fmtdesc->description[2] = (fmtdesc->pixelformat >> 16) & 0xff;
768 fmtdesc->description[3] = fmtdesc->pixelformat >> 24;
769 fmtdesc->description[4] = '\0';
773 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
774 struct v4l2_format *fmt)
776 struct gspca_dev *gspca_dev = priv;
779 mode = gspca_dev->curr_mode;
780 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
781 sizeof fmt->fmt.pix);
785 static int try_fmt_vid_cap(struct gspca_dev *gspca_dev,
786 struct v4l2_format *fmt)
788 int w, h, mode, mode2;
790 w = fmt->fmt.pix.width;
791 h = fmt->fmt.pix.height;
794 if (gspca_debug & D_CONF)
795 PDEBUG_MODE("try fmt cap", fmt->fmt.pix.pixelformat, w, h);
797 /* search the closest mode for width and height */
798 mode = wxh_to_mode(gspca_dev, w, h);
800 /* OK if right palette */
801 if (gspca_dev->cam.cam_mode[mode].pixelformat
802 != fmt->fmt.pix.pixelformat) {
804 /* else, search the closest mode with the same pixel format */
805 mode2 = gspca_get_mode(gspca_dev, mode,
806 fmt->fmt.pix.pixelformat);
810 ; * no chance, return this mode */
812 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
813 sizeof fmt->fmt.pix);
814 return mode; /* used when s_fmt */
817 static int vidioc_try_fmt_vid_cap(struct file *file,
819 struct v4l2_format *fmt)
821 struct gspca_dev *gspca_dev = priv;
824 ret = try_fmt_vid_cap(gspca_dev, fmt);
830 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
831 struct v4l2_format *fmt)
833 struct gspca_dev *gspca_dev = priv;
836 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
839 ret = try_fmt_vid_cap(gspca_dev, fmt);
843 if (gspca_dev->nframes != 0
844 && fmt->fmt.pix.sizeimage > gspca_dev->frsz) {
849 if (ret == gspca_dev->curr_mode) {
851 goto out; /* same mode */
854 if (gspca_dev->streaming) {
858 gspca_dev->width = fmt->fmt.pix.width;
859 gspca_dev->height = fmt->fmt.pix.height;
860 gspca_dev->pixfmt = fmt->fmt.pix.pixelformat;
861 gspca_dev->curr_mode = ret;
865 mutex_unlock(&gspca_dev->queue_lock);
869 static void gspca_release(struct video_device *vfd)
871 struct gspca_dev *gspca_dev = container_of(vfd, struct gspca_dev, vdev);
873 PDEBUG(D_STREAM, "device released");
875 kfree(gspca_dev->usb_buf);
879 static int dev_open(struct file *file)
881 struct gspca_dev *gspca_dev;
884 PDEBUG(D_STREAM, "%s open", current->comm);
885 gspca_dev = (struct gspca_dev *) video_devdata(file);
886 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
888 if (!gspca_dev->present) {
893 if (gspca_dev->users > 4) { /* (arbitrary value) */
898 /* protect the subdriver against rmmod */
899 if (!try_module_get(gspca_dev->module)) {
906 file->private_data = gspca_dev;
908 /* activate the v4l2 debug */
909 if (gspca_debug & D_V4L2)
910 gspca_dev->vdev.debug |= V4L2_DEBUG_IOCTL
911 | V4L2_DEBUG_IOCTL_ARG;
913 gspca_dev->vdev.debug &= ~(V4L2_DEBUG_IOCTL
914 | V4L2_DEBUG_IOCTL_ARG);
918 mutex_unlock(&gspca_dev->queue_lock);
920 PDEBUG(D_ERR|D_STREAM, "open failed err %d", ret);
922 PDEBUG(D_STREAM, "open done");
926 static int dev_close(struct file *file)
928 struct gspca_dev *gspca_dev = file->private_data;
930 PDEBUG(D_STREAM, "%s close", current->comm);
931 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
935 /* if the file did the capture, free the streaming resources */
936 if (gspca_dev->capt_file == file) {
937 if (gspca_dev->streaming) {
938 mutex_lock(&gspca_dev->usb_lock);
939 gspca_stream_off(gspca_dev);
940 mutex_unlock(&gspca_dev->usb_lock);
942 frame_free(gspca_dev);
943 gspca_dev->capt_file = NULL;
944 gspca_dev->memory = GSPCA_MEMORY_NO;
946 file->private_data = NULL;
947 module_put(gspca_dev->module);
948 mutex_unlock(&gspca_dev->queue_lock);
950 PDEBUG(D_STREAM, "close done");
955 static int vidioc_querycap(struct file *file, void *priv,
956 struct v4l2_capability *cap)
958 struct gspca_dev *gspca_dev = priv;
960 memset(cap, 0, sizeof *cap);
961 strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver);
962 if (gspca_dev->dev->product != NULL) {
963 strncpy(cap->card, gspca_dev->dev->product,
966 snprintf(cap->card, sizeof cap->card,
967 "USB Camera (%04x:%04x)",
968 le16_to_cpu(gspca_dev->dev->descriptor.idVendor),
969 le16_to_cpu(gspca_dev->dev->descriptor.idProduct));
971 strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name,
972 sizeof cap->bus_info);
973 cap->version = DRIVER_VERSION_NUMBER;
974 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
976 | V4L2_CAP_READWRITE;
980 static int vidioc_queryctrl(struct file *file, void *priv,
981 struct v4l2_queryctrl *q_ctrl)
983 struct gspca_dev *gspca_dev = priv;
989 if (id & V4L2_CTRL_FLAG_NEXT_CTRL) {
990 id &= V4L2_CTRL_ID_MASK;
992 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
993 if (gspca_dev->sd_desc->ctrls[i].qctrl.id < id)
999 if (gspca_dev->sd_desc->ctrls[i].qctrl.id
1000 > gspca_dev->sd_desc->ctrls[ix].qctrl.id)
1005 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
1006 if (id == gspca_dev->sd_desc->ctrls[i].qctrl.id) {
1013 memcpy(q_ctrl, &gspca_dev->sd_desc->ctrls[ix].qctrl,
1015 if (gspca_dev->ctrl_dis & (1 << ix))
1016 q_ctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
1020 static int vidioc_s_ctrl(struct file *file, void *priv,
1021 struct v4l2_control *ctrl)
1023 struct gspca_dev *gspca_dev = priv;
1024 const struct ctrl *ctrls;
1027 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
1028 i < gspca_dev->sd_desc->nctrls;
1030 if (ctrl->id != ctrls->qctrl.id)
1032 if (gspca_dev->ctrl_dis & (1 << i))
1034 if (ctrl->value < ctrls->qctrl.minimum
1035 || ctrl->value > ctrls->qctrl.maximum)
1037 PDEBUG(D_CONF, "set ctrl [%08x] = %d", ctrl->id, ctrl->value);
1038 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1039 return -ERESTARTSYS;
1040 ret = ctrls->set(gspca_dev, ctrl->value);
1041 mutex_unlock(&gspca_dev->usb_lock);
1047 static int vidioc_g_ctrl(struct file *file, void *priv,
1048 struct v4l2_control *ctrl)
1050 struct gspca_dev *gspca_dev = priv;
1052 const struct ctrl *ctrls;
1055 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
1056 i < gspca_dev->sd_desc->nctrls;
1058 if (ctrl->id != ctrls->qctrl.id)
1060 if (gspca_dev->ctrl_dis & (1 << i))
1062 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1063 return -ERESTARTSYS;
1064 ret = ctrls->get(gspca_dev, &ctrl->value);
1065 mutex_unlock(&gspca_dev->usb_lock);
1071 /*fixme: have an audio flag in gspca_dev?*/
1072 static int vidioc_s_audio(struct file *file, void *priv,
1073 struct v4l2_audio *audio)
1075 if (audio->index != 0)
1080 static int vidioc_g_audio(struct file *file, void *priv,
1081 struct v4l2_audio *audio)
1083 memset(audio, 0, sizeof *audio);
1084 strcpy(audio->name, "Microphone");
1088 static int vidioc_enumaudio(struct file *file, void *priv,
1089 struct v4l2_audio *audio)
1091 if (audio->index != 0)
1094 strcpy(audio->name, "Microphone");
1095 audio->capability = 0;
1100 static int vidioc_querymenu(struct file *file, void *priv,
1101 struct v4l2_querymenu *qmenu)
1103 struct gspca_dev *gspca_dev = priv;
1105 if (!gspca_dev->sd_desc->querymenu)
1107 return gspca_dev->sd_desc->querymenu(gspca_dev, qmenu);
1110 static int vidioc_enum_input(struct file *file, void *priv,
1111 struct v4l2_input *input)
1113 struct gspca_dev *gspca_dev = priv;
1115 if (input->index != 0)
1117 memset(input, 0, sizeof *input);
1118 input->type = V4L2_INPUT_TYPE_CAMERA;
1119 strncpy(input->name, gspca_dev->sd_desc->name,
1120 sizeof input->name);
1124 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1130 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1137 static int vidioc_reqbufs(struct file *file, void *priv,
1138 struct v4l2_requestbuffers *rb)
1140 struct gspca_dev *gspca_dev = priv;
1143 switch (rb->memory) {
1144 case GSPCA_MEMORY_READ: /* (internal call) */
1145 case V4L2_MEMORY_MMAP:
1146 case V4L2_MEMORY_USERPTR:
1151 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1152 return -ERESTARTSYS;
1154 if (gspca_dev->memory != GSPCA_MEMORY_NO
1155 && gspca_dev->memory != rb->memory) {
1160 /* only one file may do the capture */
1161 if (gspca_dev->capt_file != NULL
1162 && gspca_dev->capt_file != file) {
1167 /* if allocated, the buffers must not be mapped */
1168 for (i = 0; i < gspca_dev->nframes; i++) {
1169 if (gspca_dev->frame[i].vma_use_count) {
1175 /* stop streaming */
1176 if (gspca_dev->streaming) {
1177 mutex_lock(&gspca_dev->usb_lock);
1178 gspca_stream_off(gspca_dev);
1179 mutex_unlock(&gspca_dev->usb_lock);
1182 /* free the previous allocated buffers, if any */
1183 if (gspca_dev->nframes != 0) {
1184 frame_free(gspca_dev);
1185 gspca_dev->capt_file = NULL;
1187 if (rb->count == 0) /* unrequest */
1189 gspca_dev->memory = rb->memory;
1190 ret = frame_alloc(gspca_dev, rb->count);
1192 rb->count = gspca_dev->nframes;
1193 gspca_dev->capt_file = file;
1196 mutex_unlock(&gspca_dev->queue_lock);
1197 PDEBUG(D_STREAM, "reqbufs st:%d c:%d", ret, rb->count);
1201 static int vidioc_querybuf(struct file *file, void *priv,
1202 struct v4l2_buffer *v4l2_buf)
1204 struct gspca_dev *gspca_dev = priv;
1205 struct gspca_frame *frame;
1207 if (v4l2_buf->index < 0
1208 || v4l2_buf->index >= gspca_dev->nframes)
1211 frame = &gspca_dev->frame[v4l2_buf->index];
1212 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1216 static int vidioc_streamon(struct file *file, void *priv,
1217 enum v4l2_buf_type buf_type)
1219 struct gspca_dev *gspca_dev = priv;
1222 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1224 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1225 return -ERESTARTSYS;
1226 if (!gspca_dev->present) {
1230 if (gspca_dev->nframes == 0
1231 || !(gspca_dev->frame[0].v4l2_buf.flags & V4L2_BUF_FLAG_QUEUED)) {
1235 if (!gspca_dev->streaming) {
1236 ret = gspca_init_transfer(gspca_dev);
1241 if (gspca_debug & D_STREAM) {
1242 PDEBUG_MODE("stream on OK",
1250 mutex_unlock(&gspca_dev->queue_lock);
1254 static int vidioc_streamoff(struct file *file, void *priv,
1255 enum v4l2_buf_type buf_type)
1257 struct gspca_dev *gspca_dev = priv;
1260 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1262 if (!gspca_dev->streaming)
1264 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1265 return -ERESTARTSYS;
1267 /* stop streaming */
1268 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
1272 gspca_stream_off(gspca_dev);
1273 mutex_unlock(&gspca_dev->usb_lock);
1275 /* empty the application queues */
1276 for (i = 0; i < gspca_dev->nframes; i++)
1277 gspca_dev->frame[i].v4l2_buf.flags &= ~BUF_ALL_FLAGS;
1278 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
1279 gspca_dev->last_packet_type = DISCARD_PACKET;
1280 gspca_dev->sequence = 0;
1283 mutex_unlock(&gspca_dev->queue_lock);
1287 static int vidioc_g_jpegcomp(struct file *file, void *priv,
1288 struct v4l2_jpegcompression *jpegcomp)
1290 struct gspca_dev *gspca_dev = priv;
1293 if (!gspca_dev->sd_desc->get_jcomp)
1295 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1296 return -ERESTARTSYS;
1297 ret = gspca_dev->sd_desc->get_jcomp(gspca_dev, jpegcomp);
1298 mutex_unlock(&gspca_dev->usb_lock);
1302 static int vidioc_s_jpegcomp(struct file *file, void *priv,
1303 struct v4l2_jpegcompression *jpegcomp)
1305 struct gspca_dev *gspca_dev = priv;
1308 if (!gspca_dev->sd_desc->set_jcomp)
1310 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1311 return -ERESTARTSYS;
1312 ret = gspca_dev->sd_desc->set_jcomp(gspca_dev, jpegcomp);
1313 mutex_unlock(&gspca_dev->usb_lock);
1317 static int vidioc_g_parm(struct file *filp, void *priv,
1318 struct v4l2_streamparm *parm)
1320 struct gspca_dev *gspca_dev = priv;
1322 memset(parm, 0, sizeof *parm);
1323 parm->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1324 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1326 if (gspca_dev->sd_desc->get_streamparm) {
1329 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1330 return -ERESTARTSYS;
1331 ret = gspca_dev->sd_desc->get_streamparm(gspca_dev, parm);
1332 mutex_unlock(&gspca_dev->usb_lock);
1339 static int vidioc_s_parm(struct file *filp, void *priv,
1340 struct v4l2_streamparm *parm)
1342 struct gspca_dev *gspca_dev = priv;
1345 n = parm->parm.capture.readbuffers;
1346 if (n == 0 || n > GSPCA_MAX_FRAMES)
1347 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1349 gspca_dev->nbufread = n;
1351 if (gspca_dev->sd_desc->set_streamparm) {
1354 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1355 return -ERESTARTSYS;
1356 ret = gspca_dev->sd_desc->set_streamparm(gspca_dev, parm);
1357 mutex_unlock(&gspca_dev->usb_lock);
1364 static int vidioc_s_std(struct file *filp, void *priv,
1370 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1371 static int vidiocgmbuf(struct file *file, void *priv,
1372 struct video_mbuf *mbuf)
1374 struct gspca_dev *gspca_dev = file->private_data;
1377 PDEBUG(D_STREAM, "cgmbuf");
1378 if (gspca_dev->nframes == 0) {
1382 struct v4l2_format fmt;
1384 memset(&fmt, 0, sizeof fmt);
1385 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1386 i = gspca_dev->cam.nmodes - 1; /* highest mode */
1387 fmt.fmt.pix.width = gspca_dev->cam.cam_mode[i].width;
1388 fmt.fmt.pix.height = gspca_dev->cam.cam_mode[i].height;
1389 fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_BGR24;
1390 ret = vidioc_s_fmt_vid_cap(file, priv, &fmt);
1395 struct v4l2_requestbuffers rb;
1397 memset(&rb, 0, sizeof rb);
1399 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1400 rb.memory = V4L2_MEMORY_MMAP;
1401 ret = vidioc_reqbufs(file, priv, &rb);
1406 mbuf->frames = gspca_dev->nframes;
1407 mbuf->size = gspca_dev->frsz * gspca_dev->nframes;
1408 for (i = 0; i < mbuf->frames; i++)
1409 mbuf->offsets[i] = gspca_dev->frame[i].v4l2_buf.m.offset;
1414 static int dev_mmap(struct file *file, struct vm_area_struct *vma)
1416 struct gspca_dev *gspca_dev = file->private_data;
1417 struct gspca_frame *frame;
1419 unsigned long addr, start, size;
1422 start = vma->vm_start;
1423 size = vma->vm_end - vma->vm_start;
1424 PDEBUG(D_STREAM, "mmap start:%08x size:%d", (int) start, (int) size);
1426 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1427 return -ERESTARTSYS;
1428 if (!gspca_dev->present) {
1432 if (gspca_dev->capt_file != file) {
1438 for (i = 0; i < gspca_dev->nframes; ++i) {
1439 if (gspca_dev->frame[i].v4l2_buf.memory != V4L2_MEMORY_MMAP) {
1440 PDEBUG(D_STREAM, "mmap bad memory type");
1443 if ((gspca_dev->frame[i].v4l2_buf.m.offset >> PAGE_SHIFT)
1445 frame = &gspca_dev->frame[i];
1449 if (frame == NULL) {
1450 PDEBUG(D_STREAM, "mmap no frame buffer found");
1454 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1455 /* v4l1 maps all the buffers */
1457 || size != frame->v4l2_buf.length * gspca_dev->nframes)
1459 if (size != frame->v4l2_buf.length) {
1460 PDEBUG(D_STREAM, "mmap bad size");
1466 * - VM_IO marks the area as being a mmaped region for I/O to a
1467 * device. It also prevents the region from being core dumped.
1469 vma->vm_flags |= VM_IO;
1471 addr = (unsigned long) frame->data;
1473 page = vmalloc_to_page((void *) addr);
1474 ret = vm_insert_page(vma, start, page);
1482 vma->vm_ops = &gspca_vm_ops;
1483 vma->vm_private_data = frame;
1487 mutex_unlock(&gspca_dev->queue_lock);
1492 * wait for a video frame
1494 * If a frame is ready, its index is returned.
1496 static int frame_wait(struct gspca_dev *gspca_dev,
1499 struct gspca_frame *frame;
1502 /* check if a frame is ready */
1503 i = gspca_dev->fr_o;
1504 j = gspca_dev->fr_queue[i];
1505 frame = &gspca_dev->frame[j];
1507 if (!(frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE)) {
1511 /* wait till a frame is ready */
1512 ret = wait_event_interruptible_timeout(gspca_dev->wq,
1513 (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE) ||
1514 !gspca_dev->streaming || !gspca_dev->present,
1515 msecs_to_jiffies(3000));
1518 if (ret == 0 || !gspca_dev->streaming || !gspca_dev->present)
1522 gspca_dev->fr_o = (i + 1) % gspca_dev->nframes;
1523 PDEBUG(D_FRAM, "frame wait q:%d i:%d o:%d",
1528 if (gspca_dev->sd_desc->dq_callback) {
1529 mutex_lock(&gspca_dev->usb_lock);
1530 gspca_dev->sd_desc->dq_callback(gspca_dev);
1531 mutex_unlock(&gspca_dev->usb_lock);
1537 * dequeue a video buffer
1539 * If nonblock_ing is false, block until a buffer is available.
1541 static int vidioc_dqbuf(struct file *file, void *priv,
1542 struct v4l2_buffer *v4l2_buf)
1544 struct gspca_dev *gspca_dev = priv;
1545 struct gspca_frame *frame;
1548 PDEBUG(D_FRAM, "dqbuf");
1549 if (v4l2_buf->memory != gspca_dev->memory)
1552 /* if not streaming, be sure the application will not loop forever */
1553 if (!(file->f_flags & O_NONBLOCK)
1554 && !gspca_dev->streaming && gspca_dev->users == 1)
1557 /* only the capturing file may dequeue */
1558 if (gspca_dev->capt_file != file)
1561 /* only one dequeue / read at a time */
1562 if (mutex_lock_interruptible(&gspca_dev->read_lock))
1563 return -ERESTARTSYS;
1565 ret = frame_wait(gspca_dev, file->f_flags & O_NONBLOCK);
1568 i = ret; /* frame index */
1569 frame = &gspca_dev->frame[i];
1570 if (gspca_dev->memory == V4L2_MEMORY_USERPTR) {
1571 if (copy_to_user((__u8 __user *) frame->v4l2_buf.m.userptr,
1573 frame->v4l2_buf.bytesused)) {
1574 PDEBUG(D_ERR|D_STREAM,
1575 "dqbuf cp to user failed");
1580 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE;
1581 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1582 PDEBUG(D_FRAM, "dqbuf %d", i);
1585 mutex_unlock(&gspca_dev->read_lock);
1590 * queue a video buffer
1592 * Attempting to queue a buffer that has already been
1593 * queued will return -EINVAL.
1595 static int vidioc_qbuf(struct file *file, void *priv,
1596 struct v4l2_buffer *v4l2_buf)
1598 struct gspca_dev *gspca_dev = priv;
1599 struct gspca_frame *frame;
1602 PDEBUG(D_FRAM, "qbuf %d", v4l2_buf->index);
1604 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1605 return -ERESTARTSYS;
1607 index = v4l2_buf->index;
1608 if ((unsigned) index >= gspca_dev->nframes) {
1610 "qbuf idx %d >= %d", index, gspca_dev->nframes);
1614 if (v4l2_buf->memory != gspca_dev->memory) {
1615 PDEBUG(D_FRAM, "qbuf bad memory type");
1620 frame = &gspca_dev->frame[index];
1621 if (frame->v4l2_buf.flags & BUF_ALL_FLAGS) {
1622 PDEBUG(D_FRAM, "qbuf bad state");
1627 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_QUEUED;
1629 if (frame->v4l2_buf.memory == V4L2_MEMORY_USERPTR) {
1630 frame->v4l2_buf.m.userptr = v4l2_buf->m.userptr;
1631 frame->v4l2_buf.length = v4l2_buf->length;
1634 /* put the buffer in the 'queued' queue */
1635 i = gspca_dev->fr_q;
1636 gspca_dev->fr_queue[i] = index;
1637 gspca_dev->fr_q = (i + 1) % gspca_dev->nframes;
1638 PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d",
1643 v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED;
1644 v4l2_buf->flags &= ~V4L2_BUF_FLAG_DONE;
1647 mutex_unlock(&gspca_dev->queue_lock);
1652 * allocate the resources for read()
1654 static int read_alloc(struct gspca_dev *gspca_dev,
1657 struct v4l2_buffer v4l2_buf;
1660 PDEBUG(D_STREAM, "read alloc");
1661 if (gspca_dev->nframes == 0) {
1662 struct v4l2_requestbuffers rb;
1664 memset(&rb, 0, sizeof rb);
1665 rb.count = gspca_dev->nbufread;
1666 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1667 rb.memory = GSPCA_MEMORY_READ;
1668 ret = vidioc_reqbufs(file, gspca_dev, &rb);
1670 PDEBUG(D_STREAM, "read reqbuf err %d", ret);
1673 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1674 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1675 v4l2_buf.memory = GSPCA_MEMORY_READ;
1676 for (i = 0; i < gspca_dev->nbufread; i++) {
1678 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1680 PDEBUG(D_STREAM, "read qbuf err: %d", ret);
1684 gspca_dev->memory = GSPCA_MEMORY_READ;
1687 /* start streaming */
1688 ret = vidioc_streamon(file, gspca_dev, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1690 PDEBUG(D_STREAM, "read streamon err %d", ret);
1694 static unsigned int dev_poll(struct file *file, poll_table *wait)
1696 struct gspca_dev *gspca_dev = file->private_data;
1699 PDEBUG(D_FRAM, "poll");
1701 poll_wait(file, &gspca_dev->wq, wait);
1702 if (!gspca_dev->present)
1705 /* if reqbufs is not done, the user would use read() */
1706 if (gspca_dev->nframes == 0) {
1707 if (gspca_dev->memory != GSPCA_MEMORY_NO)
1708 return POLLERR; /* not the 1st time */
1709 ret = read_alloc(gspca_dev, file);
1714 if (mutex_lock_interruptible(&gspca_dev->queue_lock) != 0)
1716 if (!gspca_dev->present) {
1721 /* check the next incoming buffer */
1722 i = gspca_dev->fr_o;
1723 i = gspca_dev->fr_queue[i];
1724 if (gspca_dev->frame[i].v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1725 ret = POLLIN | POLLRDNORM; /* something to read */
1729 mutex_unlock(&gspca_dev->queue_lock);
1733 static ssize_t dev_read(struct file *file, char __user *data,
1734 size_t count, loff_t *ppos)
1736 struct gspca_dev *gspca_dev = file->private_data;
1737 struct gspca_frame *frame;
1738 struct v4l2_buffer v4l2_buf;
1739 struct timeval timestamp;
1742 PDEBUG(D_FRAM, "read (%zd)", count);
1743 if (!gspca_dev->present)
1745 switch (gspca_dev->memory) {
1746 case GSPCA_MEMORY_NO: /* first time */
1747 ret = read_alloc(gspca_dev, file);
1751 case GSPCA_MEMORY_READ:
1752 if (gspca_dev->capt_file == file)
1760 jiffies_to_timeval(get_jiffies_64(), ×tamp);
1764 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1765 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1766 v4l2_buf.memory = GSPCA_MEMORY_READ;
1767 ret = vidioc_dqbuf(file, gspca_dev, &v4l2_buf);
1769 PDEBUG(D_STREAM, "read dqbuf err %d", ret);
1773 /* if the process slept for more than 1 second,
1774 * get a newer frame */
1775 frame = &gspca_dev->frame[v4l2_buf.index];
1777 break; /* avoid infinite loop */
1778 if (frame->v4l2_buf.timestamp.tv_sec >= timestamp.tv_sec)
1780 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1782 PDEBUG(D_STREAM, "read qbuf err %d", ret);
1787 /* copy the frame */
1788 if (count > frame->v4l2_buf.bytesused)
1789 count = frame->v4l2_buf.bytesused;
1790 ret = copy_to_user(data, frame->data, count);
1792 PDEBUG(D_ERR|D_STREAM,
1793 "read cp to user lack %d / %zd", ret, count);
1799 /* in each case, requeue the buffer */
1800 ret2 = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1806 static struct v4l2_file_operations dev_fops = {
1807 .owner = THIS_MODULE,
1809 .release = dev_close,
1812 .unlocked_ioctl = video_ioctl2,
1816 static const struct v4l2_ioctl_ops dev_ioctl_ops = {
1817 .vidioc_querycap = vidioc_querycap,
1818 .vidioc_dqbuf = vidioc_dqbuf,
1819 .vidioc_qbuf = vidioc_qbuf,
1820 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1821 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1822 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1823 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1824 .vidioc_streamon = vidioc_streamon,
1825 .vidioc_queryctrl = vidioc_queryctrl,
1826 .vidioc_g_ctrl = vidioc_g_ctrl,
1827 .vidioc_s_ctrl = vidioc_s_ctrl,
1828 .vidioc_g_audio = vidioc_g_audio,
1829 .vidioc_s_audio = vidioc_s_audio,
1830 .vidioc_enumaudio = vidioc_enumaudio,
1831 .vidioc_querymenu = vidioc_querymenu,
1832 .vidioc_enum_input = vidioc_enum_input,
1833 .vidioc_g_input = vidioc_g_input,
1834 .vidioc_s_input = vidioc_s_input,
1835 .vidioc_reqbufs = vidioc_reqbufs,
1836 .vidioc_querybuf = vidioc_querybuf,
1837 .vidioc_streamoff = vidioc_streamoff,
1838 .vidioc_g_jpegcomp = vidioc_g_jpegcomp,
1839 .vidioc_s_jpegcomp = vidioc_s_jpegcomp,
1840 .vidioc_g_parm = vidioc_g_parm,
1841 .vidioc_s_parm = vidioc_s_parm,
1842 .vidioc_s_std = vidioc_s_std,
1843 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1844 .vidiocgmbuf = vidiocgmbuf,
1848 static struct video_device gspca_template = {
1849 .name = "gspca main driver",
1851 .ioctl_ops = &dev_ioctl_ops,
1852 .release = gspca_release,
1857 * probe and create a new gspca device
1859 * This function must be called by the sub-driver when it is
1860 * called for probing a new device.
1862 int gspca_dev_probe(struct usb_interface *intf,
1863 const struct usb_device_id *id,
1864 const struct sd_desc *sd_desc,
1866 struct module *module)
1868 struct usb_interface_descriptor *interface;
1869 struct gspca_dev *gspca_dev;
1870 struct usb_device *dev = interface_to_usbdev(intf);
1873 PDEBUG(D_PROBE, "probing %04x:%04x", id->idVendor, id->idProduct);
1875 /* we don't handle multi-config cameras */
1876 if (dev->descriptor.bNumConfigurations != 1)
1878 interface = &intf->cur_altsetting->desc;
1879 if (interface->bInterfaceNumber > 0)
1882 /* create the device */
1883 if (dev_size < sizeof *gspca_dev)
1884 dev_size = sizeof *gspca_dev;
1885 gspca_dev = kzalloc(dev_size, GFP_KERNEL);
1887 err("couldn't kzalloc gspca struct");
1890 gspca_dev->usb_buf = kmalloc(USB_BUF_SZ, GFP_KERNEL);
1891 if (!gspca_dev->usb_buf) {
1892 err("out of memory");
1896 gspca_dev->dev = dev;
1897 gspca_dev->iface = interface->bInterfaceNumber;
1898 gspca_dev->nbalt = intf->num_altsetting;
1899 gspca_dev->sd_desc = sd_desc;
1900 gspca_dev->nbufread = 2;
1901 gspca_dev->empty_packet = -1; /* don't check the empty packets */
1903 /* configure the subdriver and initialize the USB device */
1904 ret = sd_desc->config(gspca_dev, id);
1907 ret = sd_desc->init(gspca_dev);
1910 ret = gspca_set_alt0(gspca_dev);
1913 gspca_set_default_mode(gspca_dev);
1915 mutex_init(&gspca_dev->usb_lock);
1916 mutex_init(&gspca_dev->read_lock);
1917 mutex_init(&gspca_dev->queue_lock);
1918 init_waitqueue_head(&gspca_dev->wq);
1920 /* init video stuff */
1921 memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template);
1922 gspca_dev->vdev.parent = &dev->dev;
1923 gspca_dev->module = module;
1924 gspca_dev->present = 1;
1925 ret = video_register_device(&gspca_dev->vdev,
1929 err("video_register_device err %d", ret);
1933 usb_set_intfdata(intf, gspca_dev);
1934 PDEBUG(D_PROBE, "probe ok");
1937 kfree(gspca_dev->usb_buf);
1941 EXPORT_SYMBOL(gspca_dev_probe);
1946 * This function must be called by the sub-driver
1947 * when the device disconnects, after the specific resources are freed.
1949 void gspca_disconnect(struct usb_interface *intf)
1951 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1953 gspca_dev->present = 0;
1955 usb_set_intfdata(intf, NULL);
1957 /* release the device */
1958 /* (this will call gspca_release() immediatly or on last close) */
1959 video_unregister_device(&gspca_dev->vdev);
1961 PDEBUG(D_PROBE, "disconnect complete");
1963 EXPORT_SYMBOL(gspca_disconnect);
1966 int gspca_suspend(struct usb_interface *intf, pm_message_t message)
1968 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1970 if (!gspca_dev->streaming)
1972 gspca_dev->frozen = 1; /* avoid urb error messages */
1973 if (gspca_dev->sd_desc->stopN)
1974 gspca_dev->sd_desc->stopN(gspca_dev);
1975 destroy_urbs(gspca_dev);
1976 gspca_set_alt0(gspca_dev);
1977 if (gspca_dev->sd_desc->stop0)
1978 gspca_dev->sd_desc->stop0(gspca_dev);
1981 EXPORT_SYMBOL(gspca_suspend);
1983 int gspca_resume(struct usb_interface *intf)
1985 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1987 gspca_dev->frozen = 0;
1988 gspca_dev->sd_desc->init(gspca_dev);
1989 if (gspca_dev->streaming)
1990 return gspca_init_transfer(gspca_dev);
1993 EXPORT_SYMBOL(gspca_resume);
1995 /* -- cam driver utility functions -- */
1997 /* auto gain and exposure algorithm based on the knee algorithm described here:
1998 http://ytse.tricolour.net/docs/LowLightOptimization.html
2000 Returns 0 if no changes were made, 1 if the gain and or exposure settings
2002 int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
2003 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee)
2005 int i, steps, gain, orig_gain, exposure, orig_exposure, autogain;
2006 const struct ctrl *gain_ctrl = NULL;
2007 const struct ctrl *exposure_ctrl = NULL;
2008 const struct ctrl *autogain_ctrl = NULL;
2011 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
2012 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_GAIN)
2013 gain_ctrl = &gspca_dev->sd_desc->ctrls[i];
2014 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_EXPOSURE)
2015 exposure_ctrl = &gspca_dev->sd_desc->ctrls[i];
2016 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_AUTOGAIN)
2017 autogain_ctrl = &gspca_dev->sd_desc->ctrls[i];
2019 if (!gain_ctrl || !exposure_ctrl || !autogain_ctrl) {
2020 PDEBUG(D_ERR, "Error: gspca_auto_gain_n_exposure called "
2021 "on cam without (auto)gain/exposure");
2025 if (gain_ctrl->get(gspca_dev, &gain) ||
2026 exposure_ctrl->get(gspca_dev, &exposure) ||
2027 autogain_ctrl->get(gspca_dev, &autogain) || !autogain)
2031 orig_exposure = exposure;
2033 /* If we are of a multiple of deadzone, do multiple steps to reach the
2034 desired lumination fast (with the risc of a slight overshoot) */
2035 steps = abs(desired_avg_lum - avg_lum) / deadzone;
2037 PDEBUG(D_FRAM, "autogain: lum: %d, desired: %d, steps: %d",
2038 avg_lum, desired_avg_lum, steps);
2040 for (i = 0; i < steps; i++) {
2041 if (avg_lum > desired_avg_lum) {
2042 if (gain > gain_knee)
2044 else if (exposure > exposure_knee)
2046 else if (gain > gain_ctrl->qctrl.default_value)
2048 else if (exposure > exposure_ctrl->qctrl.minimum)
2050 else if (gain > gain_ctrl->qctrl.minimum)
2055 if (gain < gain_ctrl->qctrl.default_value)
2057 else if (exposure < exposure_knee)
2059 else if (gain < gain_knee)
2061 else if (exposure < exposure_ctrl->qctrl.maximum)
2063 else if (gain < gain_ctrl->qctrl.maximum)
2070 if (gain != orig_gain) {
2071 gain_ctrl->set(gspca_dev, gain);
2074 if (exposure != orig_exposure) {
2075 exposure_ctrl->set(gspca_dev, exposure);
2081 EXPORT_SYMBOL(gspca_auto_gain_n_exposure);
2083 /* -- module insert / remove -- */
2084 static int __init gspca_init(void)
2086 info("main v%d.%d.%d registered",
2087 (DRIVER_VERSION_NUMBER >> 16) & 0xff,
2088 (DRIVER_VERSION_NUMBER >> 8) & 0xff,
2089 DRIVER_VERSION_NUMBER & 0xff);
2092 static void __exit gspca_exit(void)
2094 info("main deregistered");
2097 module_init(gspca_init);
2098 module_exit(gspca_exit);
2101 module_param_named(debug, gspca_debug, int, 0644);
2102 MODULE_PARM_DESC(debug,
2103 "Debug (bit) 0x01:error 0x02:probe 0x04:config"
2104 " 0x08:stream 0x10:frame 0x20:packet 0x40:USBin 0x80:USBout"