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>
33 #include <linux/kref.h>
35 #include <linux/uaccess.h>
36 #include <linux/jiffies.h>
37 #include <media/v4l2-ioctl.h>
42 #define DEF_NURBS 2 /* default number of URBs */
44 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
45 MODULE_DESCRIPTION("GSPCA USB Camera Driver");
46 MODULE_LICENSE("GPL");
48 #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 3, 0)
50 static int video_nr = -1;
53 int gspca_debug = D_ERR | D_PROBE;
54 EXPORT_SYMBOL(gspca_debug);
56 static void PDEBUG_MODE(char *txt, __u32 pixfmt, int w, int h)
58 if ((pixfmt >> 24) >= '0' && (pixfmt >> 24) <= 'z') {
59 PDEBUG(D_CONF|D_STREAM, "%s %c%c%c%c %dx%d",
63 (pixfmt >> 16) & 0xff,
67 PDEBUG(D_CONF|D_STREAM, "%s 0x%08x %dx%d",
74 #define PDEBUG_MODE(txt, pixfmt, w, h)
77 /* specific memory types - !! should different from V4L2_MEMORY_xxx */
78 #define GSPCA_MEMORY_NO 0 /* V4L2_MEMORY_xxx starts from 1 */
79 #define GSPCA_MEMORY_READ 7
81 #define BUF_ALL_FLAGS (V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_DONE)
86 static void gspca_vm_open(struct vm_area_struct *vma)
88 struct gspca_frame *frame = vma->vm_private_data;
90 frame->vma_use_count++;
91 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_MAPPED;
94 static void gspca_vm_close(struct vm_area_struct *vma)
96 struct gspca_frame *frame = vma->vm_private_data;
98 if (--frame->vma_use_count <= 0)
99 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_MAPPED;
102 static struct vm_operations_struct gspca_vm_ops = {
103 .open = gspca_vm_open,
104 .close = gspca_vm_close,
107 /* get the current input frame buffer */
108 struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev)
110 struct gspca_frame *frame;
114 i = gspca_dev->fr_queue[i];
115 frame = &gspca_dev->frame[i];
116 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
117 != V4L2_BUF_FLAG_QUEUED)
121 EXPORT_SYMBOL(gspca_get_i_frame);
124 * fill a video frame from an URB and resubmit
126 static void fill_frame(struct gspca_dev *gspca_dev,
129 struct gspca_frame *frame;
130 __u8 *data; /* address of data in the iso message */
134 if (urb->status != 0) {
136 if (!gspca_dev->frozen)
138 PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
139 return; /* disconnection ? */
141 pkt_scan = gspca_dev->sd_desc->pkt_scan;
142 for (i = 0; i < urb->number_of_packets; i++) {
144 /* check the availability of the frame buffer */
145 frame = gspca_get_i_frame(gspca_dev);
147 gspca_dev->last_packet_type = DISCARD_PACKET;
151 /* check the packet status and length */
152 len = urb->iso_frame_desc[i].actual_length;
155 st = urb->iso_frame_desc[i].status;
158 "ISOC data error: [%d] len=%d, status=%d",
160 gspca_dev->last_packet_type = DISCARD_PACKET;
164 /* let the packet be analyzed by the subdriver */
165 PDEBUG(D_PACK, "packet [%d] o:%d l:%d",
166 i, urb->iso_frame_desc[i].offset, len);
167 data = (__u8 *) urb->transfer_buffer
168 + urb->iso_frame_desc[i].offset;
169 pkt_scan(gspca_dev, frame, data, len);
172 /* resubmit the URB */
174 st = usb_submit_urb(urb, GFP_ATOMIC);
176 PDEBUG(D_ERR|D_PACK, "usb_submit_urb() ret %d", st);
180 * ISOC message interrupt from the USB device
182 * Analyse each packet and call the subdriver for copy to the frame buffer.
184 static void isoc_irq(struct urb *urb
187 struct gspca_dev *gspca_dev = (struct gspca_dev *) urb->context;
189 PDEBUG(D_PACK, "isoc irq");
190 if (!gspca_dev->streaming)
192 fill_frame(gspca_dev, urb);
196 * bulk message interrupt from the USB device
198 static void bulk_irq(struct urb *urb
201 struct gspca_dev *gspca_dev = (struct gspca_dev *) urb->context;
202 struct gspca_frame *frame;
204 PDEBUG(D_PACK, "bulk irq");
205 if (!gspca_dev->streaming)
207 if (urb->status != 0 && urb->status != -ECONNRESET) {
209 if (!gspca_dev->frozen)
211 PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
212 return; /* disconnection ? */
215 /* check the availability of the frame buffer */
216 frame = gspca_get_i_frame(gspca_dev);
218 gspca_dev->last_packet_type = DISCARD_PACKET;
220 PDEBUG(D_PACK, "packet l:%d", urb->actual_length);
221 gspca_dev->sd_desc->pkt_scan(gspca_dev,
223 urb->transfer_buffer,
229 * add data to the current frame
231 * This function is called by the subdrivers at interrupt level.
233 * To build a frame, these ones must add
235 * - 0 or many INTER_PACKETs
237 * DISCARD_PACKET invalidates the whole frame.
238 * On LAST_PACKET, a new frame is returned.
240 struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev,
241 enum gspca_packet_type packet_type,
242 struct gspca_frame *frame,
248 PDEBUG(D_PACK, "add t:%d l:%d", packet_type, len);
250 /* when start of a new frame, if the current frame buffer
251 * is not queued, discard the whole frame */
252 if (packet_type == FIRST_PACKET) {
253 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
254 != V4L2_BUF_FLAG_QUEUED) {
255 gspca_dev->last_packet_type = DISCARD_PACKET;
258 frame->data_end = frame->data;
259 jiffies_to_timeval(get_jiffies_64(),
260 &frame->v4l2_buf.timestamp);
261 frame->v4l2_buf.sequence = ++gspca_dev->sequence;
262 } else if (gspca_dev->last_packet_type == DISCARD_PACKET) {
263 if (packet_type == LAST_PACKET)
264 gspca_dev->last_packet_type = packet_type;
268 /* append the packet to the frame buffer */
270 if (frame->data_end - frame->data + len
271 > frame->v4l2_buf.length) {
272 PDEBUG(D_ERR|D_PACK, "frame overflow %zd > %d",
273 frame->data_end - frame->data + len,
274 frame->v4l2_buf.length);
275 packet_type = DISCARD_PACKET;
277 memcpy(frame->data_end, data, len);
278 frame->data_end += len;
281 gspca_dev->last_packet_type = packet_type;
283 /* if last packet, wake up the application and advance in the queue */
284 if (packet_type == LAST_PACKET) {
285 frame->v4l2_buf.bytesused = frame->data_end - frame->data;
286 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_QUEUED;
287 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_DONE;
288 atomic_inc(&gspca_dev->nevent);
289 wake_up_interruptible(&gspca_dev->wq); /* event = new frame */
290 i = (gspca_dev->fr_i + 1) % gspca_dev->nframes;
292 PDEBUG(D_FRAM, "frame complete len:%d q:%d i:%d o:%d",
293 frame->v4l2_buf.bytesused,
297 j = gspca_dev->fr_queue[i];
298 frame = &gspca_dev->frame[j];
302 EXPORT_SYMBOL(gspca_frame_add);
304 static int gspca_is_compressed(__u32 format)
307 case V4L2_PIX_FMT_MJPEG:
308 case V4L2_PIX_FMT_JPEG:
309 case V4L2_PIX_FMT_SPCA561:
310 case V4L2_PIX_FMT_PAC207:
316 static void *rvmalloc(unsigned long size)
321 mem = vmalloc_32(size);
323 adr = (unsigned long) mem;
324 while ((long) size > 0) {
325 SetPageReserved(vmalloc_to_page((void *) adr));
333 static void rvfree(void *mem, long size)
337 adr = (unsigned long) mem;
339 ClearPageReserved(vmalloc_to_page((void *) adr));
346 static int frame_alloc(struct gspca_dev *gspca_dev,
349 struct gspca_frame *frame;
353 i = gspca_dev->curr_mode;
354 frsz = gspca_dev->cam.cam_mode[i].sizeimage;
355 PDEBUG(D_STREAM, "frame alloc frsz: %d", frsz);
356 frsz = PAGE_ALIGN(frsz);
357 gspca_dev->frsz = frsz;
358 if (count > GSPCA_MAX_FRAMES)
359 count = GSPCA_MAX_FRAMES;
360 gspca_dev->frbuf = rvmalloc(frsz * count);
361 if (!gspca_dev->frbuf) {
362 err("frame alloc failed");
365 gspca_dev->nframes = count;
366 for (i = 0; i < count; i++) {
367 frame = &gspca_dev->frame[i];
368 frame->v4l2_buf.index = i;
369 frame->v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
370 frame->v4l2_buf.flags = 0;
371 frame->v4l2_buf.field = V4L2_FIELD_NONE;
372 frame->v4l2_buf.length = frsz;
373 frame->v4l2_buf.memory = gspca_dev->memory;
374 frame->v4l2_buf.sequence = 0;
375 frame->data = frame->data_end =
376 gspca_dev->frbuf + i * frsz;
377 frame->v4l2_buf.m.offset = i * frsz;
379 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
380 gspca_dev->last_packet_type = DISCARD_PACKET;
381 gspca_dev->sequence = 0;
382 atomic_set(&gspca_dev->nevent, 0);
386 static void frame_free(struct gspca_dev *gspca_dev)
390 PDEBUG(D_STREAM, "frame free");
391 if (gspca_dev->frbuf != NULL) {
392 rvfree(gspca_dev->frbuf,
393 gspca_dev->nframes * gspca_dev->frsz);
394 gspca_dev->frbuf = NULL;
395 for (i = 0; i < gspca_dev->nframes; i++)
396 gspca_dev->frame[i].data = NULL;
398 gspca_dev->nframes = 0;
401 static void destroy_urbs(struct gspca_dev *gspca_dev)
406 PDEBUG(D_STREAM, "kill transfer");
407 for (i = 0; i < MAX_NURBS; i++) {
408 urb = gspca_dev->urb[i];
412 gspca_dev->urb[i] = NULL;
414 if (urb->transfer_buffer != NULL)
415 usb_buffer_free(gspca_dev->dev,
416 urb->transfer_buffer_length,
417 urb->transfer_buffer,
424 * look for an input transfer endpoint in an alternate setting
426 static struct usb_host_endpoint *alt_xfer(struct usb_host_interface *alt,
430 struct usb_host_endpoint *ep;
433 epaddr |= USB_DIR_IN;
434 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
435 ep = &alt->endpoint[i];
436 if (ep->desc.bEndpointAddress == epaddr) {
437 attr = ep->desc.bmAttributes
438 & USB_ENDPOINT_XFERTYPE_MASK;
448 * look for an input (isoc or bulk) endpoint
450 * The endpoint is defined by the subdriver.
451 * Use only the first isoc (some Zoran - 0x0572:0x0001 - have two such ep).
452 * This routine may be called many times when the bandwidth is too small
453 * (the bandwidth is checked on urb submit).
455 static struct usb_host_endpoint *get_ep(struct gspca_dev *gspca_dev)
457 struct usb_interface *intf;
458 struct usb_host_endpoint *ep;
461 intf = usb_ifnum_to_if(gspca_dev->dev, gspca_dev->iface);
463 i = gspca_dev->alt; /* previous alt setting */
466 while (--i > 0) { /* alt 0 is unusable */
467 ep = alt_xfer(&intf->altsetting[i],
468 gspca_dev->cam.epaddr,
469 USB_ENDPOINT_XFER_ISOC);
474 /* if no isoc, try bulk */
476 ep = alt_xfer(&intf->altsetting[0],
477 gspca_dev->cam.epaddr,
478 USB_ENDPOINT_XFER_BULK);
480 err("no transfer endpoint found");
484 PDEBUG(D_STREAM, "use alt %d ep 0x%02x",
485 i, ep->desc.bEndpointAddress);
487 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, i);
489 err("set interface err %d", ret);
493 gspca_dev->alt = i; /* memorize the current alt setting */
498 * create the URBs for image transfer
500 static int create_urbs(struct gspca_dev *gspca_dev,
501 struct usb_host_endpoint *ep)
504 int n, nurbs, i, psize, npkt, bsize;
506 /* calculate the packet size and the number of packets */
507 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
509 if (gspca_dev->alt != 0) { /* isoc */
511 /* See paragraph 5.9 / table 5-11 of the usb 2.0 spec. */
512 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
513 npkt = ISO_MAX_SIZE / psize;
514 if (npkt > ISO_MAX_PKT)
516 bsize = psize * npkt;
518 "isoc %d pkts size %d = bsize:%d",
523 bsize = gspca_dev->cam. bulk_size;
526 PDEBUG(D_STREAM, "bulk bsize:%d", bsize);
530 gspca_dev->nurbs = nurbs;
531 for (n = 0; n < nurbs; n++) {
532 urb = usb_alloc_urb(npkt, GFP_KERNEL);
534 err("usb_alloc_urb failed");
535 destroy_urbs(gspca_dev);
538 urb->transfer_buffer = usb_buffer_alloc(gspca_dev->dev,
543 if (urb->transfer_buffer == NULL) {
545 err("usb_buffer_urb failed");
546 destroy_urbs(gspca_dev);
549 gspca_dev->urb[n] = urb;
550 urb->dev = gspca_dev->dev;
551 urb->context = gspca_dev;
552 urb->transfer_buffer_length = bsize;
553 if (npkt != 0) { /* ISOC */
554 urb->pipe = usb_rcvisocpipe(gspca_dev->dev,
555 ep->desc.bEndpointAddress);
556 urb->transfer_flags = URB_ISO_ASAP
557 | URB_NO_TRANSFER_DMA_MAP;
558 urb->interval = ep->desc.bInterval;
559 urb->complete = isoc_irq;
560 urb->number_of_packets = npkt;
561 for (i = 0; i < npkt; i++) {
562 urb->iso_frame_desc[i].length = psize;
563 urb->iso_frame_desc[i].offset = psize * i;
566 urb->pipe = usb_rcvbulkpipe(gspca_dev->dev,
567 ep->desc.bEndpointAddress),
568 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
569 urb->complete = bulk_irq;
576 * start the USB transfer
578 static int gspca_init_transfer(struct gspca_dev *gspca_dev)
580 struct usb_host_endpoint *ep;
583 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
586 /* set the higher alternate setting and
587 * loop until urb submit succeeds */
588 gspca_dev->alt = gspca_dev->nbalt;
590 PDEBUG(D_STREAM, "init transfer alt %d", gspca_dev->alt);
591 ep = get_ep(gspca_dev);
596 ret = create_urbs(gspca_dev, ep);
601 ret = gspca_dev->sd_desc->start(gspca_dev);
603 destroy_urbs(gspca_dev);
606 gspca_dev->streaming = 1;
607 atomic_set(&gspca_dev->nevent, 0);
609 /* bulk transfers are started by the subdriver */
610 if (gspca_dev->alt == 0)
613 /* submit the URBs */
614 for (n = 0; n < gspca_dev->nurbs; n++) {
615 ret = usb_submit_urb(gspca_dev->urb[n], GFP_KERNEL);
617 PDEBUG(D_ERR|D_STREAM,
618 "usb_submit_urb [%d] err %d", n, ret);
619 gspca_dev->streaming = 0;
620 destroy_urbs(gspca_dev);
622 break; /* try the previous alt */
630 mutex_unlock(&gspca_dev->usb_lock);
634 static int gspca_set_alt0(struct gspca_dev *gspca_dev)
638 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, 0);
640 PDEBUG(D_ERR|D_STREAM, "set interface 0 err %d", ret);
644 /* Note: both the queue and the usb locks should be held when calling this */
645 static void gspca_stream_off(struct gspca_dev *gspca_dev)
647 gspca_dev->streaming = 0;
648 atomic_set(&gspca_dev->nevent, 0);
649 if (gspca_dev->present) {
650 if (gspca_dev->sd_desc->stopN)
651 gspca_dev->sd_desc->stopN(gspca_dev);
652 destroy_urbs(gspca_dev);
653 gspca_set_alt0(gspca_dev);
654 if (gspca_dev->sd_desc->stop0)
655 gspca_dev->sd_desc->stop0(gspca_dev);
656 PDEBUG(D_STREAM, "stream off OK");
660 static void gspca_set_default_mode(struct gspca_dev *gspca_dev)
664 i = gspca_dev->cam.nmodes - 1; /* take the highest mode */
665 gspca_dev->curr_mode = i;
666 gspca_dev->width = gspca_dev->cam.cam_mode[i].width;
667 gspca_dev->height = gspca_dev->cam.cam_mode[i].height;
668 gspca_dev->pixfmt = gspca_dev->cam.cam_mode[i].pixelformat;
671 static int wxh_to_mode(struct gspca_dev *gspca_dev,
672 int width, int height)
676 for (i = gspca_dev->cam.nmodes; --i > 0; ) {
677 if (width >= gspca_dev->cam.cam_mode[i].width
678 && height >= gspca_dev->cam.cam_mode[i].height)
685 * search a mode with the right pixel format
687 static int gspca_get_mode(struct gspca_dev *gspca_dev,
693 modeU = modeD = mode;
694 while ((modeU < gspca_dev->cam.nmodes) || modeD >= 0) {
696 if (gspca_dev->cam.cam_mode[modeD].pixelformat
700 if (++modeU < gspca_dev->cam.nmodes) {
701 if (gspca_dev->cam.cam_mode[modeU].pixelformat
709 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
710 struct v4l2_fmtdesc *fmtdesc)
712 struct gspca_dev *gspca_dev = priv;
716 /* give an index to each format */
719 for (i = gspca_dev->cam.nmodes; --i >= 0; ) {
720 fmt_tb[index] = gspca_dev->cam.cam_mode[i].pixelformat;
723 if (fmt_tb[j] == fmt_tb[index])
728 if (fmtdesc->index == index)
729 break; /* new format */
731 if (index >= sizeof fmt_tb / sizeof fmt_tb[0])
736 return -EINVAL; /* no more format */
738 fmtdesc->pixelformat = fmt_tb[index];
739 if (gspca_is_compressed(fmt_tb[index]))
740 fmtdesc->flags = V4L2_FMT_FLAG_COMPRESSED;
741 fmtdesc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
742 fmtdesc->description[0] = fmtdesc->pixelformat & 0xff;
743 fmtdesc->description[1] = (fmtdesc->pixelformat >> 8) & 0xff;
744 fmtdesc->description[2] = (fmtdesc->pixelformat >> 16) & 0xff;
745 fmtdesc->description[3] = fmtdesc->pixelformat >> 24;
746 fmtdesc->description[4] = '\0';
750 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
751 struct v4l2_format *fmt)
753 struct gspca_dev *gspca_dev = priv;
756 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
758 mode = gspca_dev->curr_mode;
759 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
760 sizeof fmt->fmt.pix);
764 static int try_fmt_vid_cap(struct gspca_dev *gspca_dev,
765 struct v4l2_format *fmt)
767 int w, h, mode, mode2;
769 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
771 w = fmt->fmt.pix.width;
772 h = fmt->fmt.pix.height;
775 if (gspca_debug & D_CONF)
776 PDEBUG_MODE("try fmt cap", fmt->fmt.pix.pixelformat, w, h);
778 /* search the closest mode for width and height */
779 mode = wxh_to_mode(gspca_dev, w, h);
781 /* OK if right palette */
782 if (gspca_dev->cam.cam_mode[mode].pixelformat
783 != fmt->fmt.pix.pixelformat) {
785 /* else, search the closest mode with the same pixel format */
786 mode2 = gspca_get_mode(gspca_dev, mode,
787 fmt->fmt.pix.pixelformat);
791 ; * no chance, return this mode */
793 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
794 sizeof fmt->fmt.pix);
795 return mode; /* used when s_fmt */
798 static int vidioc_try_fmt_vid_cap(struct file *file,
800 struct v4l2_format *fmt)
802 struct gspca_dev *gspca_dev = priv;
805 ret = try_fmt_vid_cap(gspca_dev, fmt);
811 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
812 struct v4l2_format *fmt)
814 struct gspca_dev *gspca_dev = priv;
817 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
820 ret = try_fmt_vid_cap(gspca_dev, fmt);
824 if (gspca_dev->nframes != 0
825 && fmt->fmt.pix.sizeimage > gspca_dev->frsz) {
830 if (ret == gspca_dev->curr_mode) {
832 goto out; /* same mode */
835 if (gspca_dev->streaming) {
839 gspca_dev->width = fmt->fmt.pix.width;
840 gspca_dev->height = fmt->fmt.pix.height;
841 gspca_dev->pixfmt = fmt->fmt.pix.pixelformat;
842 gspca_dev->curr_mode = ret;
846 mutex_unlock(&gspca_dev->queue_lock);
850 static void gspca_delete(struct kref *kref)
852 struct gspca_dev *gspca_dev = container_of(kref, struct gspca_dev, kref);
854 PDEBUG(D_STREAM, "device deleted");
856 kfree(gspca_dev->usb_buf);
860 static int dev_open(struct inode *inode, struct file *file)
862 struct gspca_dev *gspca_dev;
865 PDEBUG(D_STREAM, "%s open", current->comm);
866 gspca_dev = (struct gspca_dev *) video_devdata(file);
867 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
869 if (!gspca_dev->present) {
874 if (gspca_dev->users > 4) { /* (arbitrary value) */
881 kref_get(&gspca_dev->kref);
883 file->private_data = gspca_dev;
885 /* activate the v4l2 debug */
886 if (gspca_debug & D_V4L2)
887 gspca_dev->vdev.debug |= V4L2_DEBUG_IOCTL
888 | V4L2_DEBUG_IOCTL_ARG;
890 gspca_dev->vdev.debug &= ~(V4L2_DEBUG_IOCTL
891 | V4L2_DEBUG_IOCTL_ARG);
895 mutex_unlock(&gspca_dev->queue_lock);
897 PDEBUG(D_ERR|D_STREAM, "open failed err %d", ret);
899 PDEBUG(D_STREAM, "open done");
903 static int dev_close(struct inode *inode, struct file *file)
905 struct gspca_dev *gspca_dev = file->private_data;
907 PDEBUG(D_STREAM, "%s close", current->comm);
908 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
912 /* if the file did the capture, free the streaming resources */
913 if (gspca_dev->capt_file == file) {
914 if (gspca_dev->streaming) {
915 mutex_lock(&gspca_dev->usb_lock);
916 gspca_stream_off(gspca_dev);
917 mutex_unlock(&gspca_dev->usb_lock);
919 frame_free(gspca_dev);
920 gspca_dev->capt_file = NULL;
921 gspca_dev->memory = GSPCA_MEMORY_NO;
923 file->private_data = NULL;
924 mutex_unlock(&gspca_dev->queue_lock);
926 PDEBUG(D_STREAM, "close done");
928 kref_put(&gspca_dev->kref, gspca_delete);
933 static int vidioc_querycap(struct file *file, void *priv,
934 struct v4l2_capability *cap)
936 struct gspca_dev *gspca_dev = priv;
938 memset(cap, 0, sizeof *cap);
939 strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver);
940 if (gspca_dev->dev->product != NULL) {
941 strncpy(cap->card, gspca_dev->dev->product,
944 snprintf(cap->card, sizeof cap->card,
945 "USB Camera (%04x:%04x)",
946 le16_to_cpu(gspca_dev->dev->descriptor.idVendor),
947 le16_to_cpu(gspca_dev->dev->descriptor.idProduct));
949 strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name,
950 sizeof cap->bus_info);
951 cap->version = DRIVER_VERSION_NUMBER;
952 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
954 | V4L2_CAP_READWRITE;
958 static int vidioc_queryctrl(struct file *file, void *priv,
959 struct v4l2_queryctrl *q_ctrl)
961 struct gspca_dev *gspca_dev = priv;
967 if (id & V4L2_CTRL_FLAG_NEXT_CTRL) {
968 id &= V4L2_CTRL_ID_MASK;
970 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
971 if (gspca_dev->sd_desc->ctrls[i].qctrl.id < id)
977 if (gspca_dev->sd_desc->ctrls[i].qctrl.id
978 > gspca_dev->sd_desc->ctrls[ix].qctrl.id)
983 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
984 if (id == gspca_dev->sd_desc->ctrls[i].qctrl.id) {
991 memcpy(q_ctrl, &gspca_dev->sd_desc->ctrls[ix].qctrl,
993 if (gspca_dev->ctrl_dis & (1 << ix))
994 q_ctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
998 static int vidioc_s_ctrl(struct file *file, void *priv,
999 struct v4l2_control *ctrl)
1001 struct gspca_dev *gspca_dev = priv;
1002 const struct ctrl *ctrls;
1005 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
1006 i < gspca_dev->sd_desc->nctrls;
1008 if (ctrl->id != ctrls->qctrl.id)
1010 if (gspca_dev->ctrl_dis & (1 << i))
1012 if (ctrl->value < ctrls->qctrl.minimum
1013 || ctrl->value > ctrls->qctrl.maximum)
1015 PDEBUG(D_CONF, "set ctrl [%08x] = %d", ctrl->id, ctrl->value);
1016 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1017 return -ERESTARTSYS;
1018 ret = ctrls->set(gspca_dev, ctrl->value);
1019 mutex_unlock(&gspca_dev->usb_lock);
1025 static int vidioc_g_ctrl(struct file *file, void *priv,
1026 struct v4l2_control *ctrl)
1028 struct gspca_dev *gspca_dev = priv;
1030 const struct ctrl *ctrls;
1033 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
1034 i < gspca_dev->sd_desc->nctrls;
1036 if (ctrl->id != ctrls->qctrl.id)
1038 if (gspca_dev->ctrl_dis & (1 << i))
1040 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1041 return -ERESTARTSYS;
1042 ret = ctrls->get(gspca_dev, &ctrl->value);
1043 mutex_unlock(&gspca_dev->usb_lock);
1049 static int vidioc_querymenu(struct file *file, void *priv,
1050 struct v4l2_querymenu *qmenu)
1052 struct gspca_dev *gspca_dev = priv;
1054 if (!gspca_dev->sd_desc->querymenu)
1056 return gspca_dev->sd_desc->querymenu(gspca_dev, qmenu);
1059 static int vidioc_enum_input(struct file *file, void *priv,
1060 struct v4l2_input *input)
1062 struct gspca_dev *gspca_dev = priv;
1064 if (input->index != 0)
1066 memset(input, 0, sizeof *input);
1067 input->type = V4L2_INPUT_TYPE_CAMERA;
1068 strncpy(input->name, gspca_dev->sd_desc->name,
1069 sizeof input->name);
1073 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
1079 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
1086 static int vidioc_reqbufs(struct file *file, void *priv,
1087 struct v4l2_requestbuffers *rb)
1089 struct gspca_dev *gspca_dev = priv;
1092 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1094 switch (rb->memory) {
1095 case GSPCA_MEMORY_READ: /* (internal call) */
1096 case V4L2_MEMORY_MMAP:
1097 case V4L2_MEMORY_USERPTR:
1102 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1103 return -ERESTARTSYS;
1105 if (gspca_dev->memory != GSPCA_MEMORY_NO
1106 && gspca_dev->memory != rb->memory) {
1111 /* only one file may do the capture */
1112 if (gspca_dev->capt_file != NULL
1113 && gspca_dev->capt_file != file) {
1118 /* if allocated, the buffers must not be mapped */
1119 for (i = 0; i < gspca_dev->nframes; i++) {
1120 if (gspca_dev->frame[i].vma_use_count) {
1126 /* stop streaming */
1127 if (gspca_dev->streaming) {
1128 mutex_lock(&gspca_dev->usb_lock);
1129 gspca_stream_off(gspca_dev);
1130 mutex_unlock(&gspca_dev->usb_lock);
1133 /* free the previous allocated buffers, if any */
1134 if (gspca_dev->nframes != 0) {
1135 frame_free(gspca_dev);
1136 gspca_dev->capt_file = NULL;
1138 if (rb->count == 0) /* unrequest */
1140 gspca_dev->memory = rb->memory;
1141 ret = frame_alloc(gspca_dev, rb->count);
1143 rb->count = gspca_dev->nframes;
1144 gspca_dev->capt_file = file;
1147 mutex_unlock(&gspca_dev->queue_lock);
1148 PDEBUG(D_STREAM, "reqbufs st:%d c:%d", ret, rb->count);
1152 static int vidioc_querybuf(struct file *file, void *priv,
1153 struct v4l2_buffer *v4l2_buf)
1155 struct gspca_dev *gspca_dev = priv;
1156 struct gspca_frame *frame;
1158 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1159 || v4l2_buf->index < 0
1160 || v4l2_buf->index >= gspca_dev->nframes)
1163 frame = &gspca_dev->frame[v4l2_buf->index];
1164 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1168 static int vidioc_streamon(struct file *file, void *priv,
1169 enum v4l2_buf_type buf_type)
1171 struct gspca_dev *gspca_dev = priv;
1174 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1176 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1177 return -ERESTARTSYS;
1178 if (!gspca_dev->present) {
1182 if (gspca_dev->nframes == 0) {
1186 if (!gspca_dev->streaming) {
1187 ret = gspca_init_transfer(gspca_dev);
1192 if (gspca_debug & D_STREAM) {
1193 PDEBUG_MODE("stream on OK",
1201 mutex_unlock(&gspca_dev->queue_lock);
1205 static int vidioc_streamoff(struct file *file, void *priv,
1206 enum v4l2_buf_type buf_type)
1208 struct gspca_dev *gspca_dev = priv;
1211 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1213 if (!gspca_dev->streaming)
1215 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1216 return -ERESTARTSYS;
1218 /* stop streaming */
1219 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
1223 gspca_stream_off(gspca_dev);
1224 mutex_unlock(&gspca_dev->usb_lock);
1226 /* empty the application queues */
1227 for (i = 0; i < gspca_dev->nframes; i++)
1228 gspca_dev->frame[i].v4l2_buf.flags &= ~BUF_ALL_FLAGS;
1229 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
1230 gspca_dev->last_packet_type = DISCARD_PACKET;
1231 gspca_dev->sequence = 0;
1232 atomic_set(&gspca_dev->nevent, 0);
1235 mutex_unlock(&gspca_dev->queue_lock);
1239 static int vidioc_g_jpegcomp(struct file *file, void *priv,
1240 struct v4l2_jpegcompression *jpegcomp)
1242 struct gspca_dev *gspca_dev = priv;
1245 if (!gspca_dev->sd_desc->get_jcomp)
1247 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1248 return -ERESTARTSYS;
1249 ret = gspca_dev->sd_desc->get_jcomp(gspca_dev, jpegcomp);
1250 mutex_unlock(&gspca_dev->usb_lock);
1254 static int vidioc_s_jpegcomp(struct file *file, void *priv,
1255 struct v4l2_jpegcompression *jpegcomp)
1257 struct gspca_dev *gspca_dev = priv;
1260 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1261 return -ERESTARTSYS;
1262 if (!gspca_dev->sd_desc->set_jcomp)
1264 ret = gspca_dev->sd_desc->set_jcomp(gspca_dev, jpegcomp);
1265 mutex_unlock(&gspca_dev->usb_lock);
1269 static int vidioc_g_parm(struct file *filp, void *priv,
1270 struct v4l2_streamparm *parm)
1272 struct gspca_dev *gspca_dev = priv;
1274 memset(parm, 0, sizeof *parm);
1275 parm->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1276 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1280 static int vidioc_s_parm(struct file *filp, void *priv,
1281 struct v4l2_streamparm *parm)
1283 struct gspca_dev *gspca_dev = priv;
1286 n = parm->parm.capture.readbuffers;
1287 if (n == 0 || n > GSPCA_MAX_FRAMES)
1288 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1290 gspca_dev->nbufread = n;
1294 static int vidioc_s_std(struct file *filp, void *priv,
1300 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1301 static int vidiocgmbuf(struct file *file, void *priv,
1302 struct video_mbuf *mbuf)
1304 struct gspca_dev *gspca_dev = file->private_data;
1307 PDEBUG(D_STREAM, "cgmbuf");
1308 if (gspca_dev->nframes == 0) {
1312 struct v4l2_format fmt;
1314 memset(&fmt, 0, sizeof fmt);
1315 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1316 i = gspca_dev->cam.nmodes - 1; /* highest mode */
1317 fmt.fmt.pix.width = gspca_dev->cam.cam_mode[i].width;
1318 fmt.fmt.pix.height = gspca_dev->cam.cam_mode[i].height;
1319 fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_BGR24;
1320 ret = vidioc_s_fmt_vid_cap(file, priv, &fmt);
1325 struct v4l2_requestbuffers rb;
1327 memset(&rb, 0, sizeof rb);
1329 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1330 rb.memory = V4L2_MEMORY_MMAP;
1331 ret = vidioc_reqbufs(file, priv, &rb);
1336 mbuf->frames = gspca_dev->nframes;
1337 mbuf->size = gspca_dev->frsz * gspca_dev->nframes;
1338 for (i = 0; i < mbuf->frames; i++)
1339 mbuf->offsets[i] = gspca_dev->frame[i].v4l2_buf.m.offset;
1344 static int dev_mmap(struct file *file, struct vm_area_struct *vma)
1346 struct gspca_dev *gspca_dev = file->private_data;
1347 struct gspca_frame *frame;
1349 unsigned long addr, start, size;
1352 start = vma->vm_start;
1353 size = vma->vm_end - vma->vm_start;
1354 PDEBUG(D_STREAM, "mmap start:%08x size:%d", (int) start, (int) size);
1356 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1357 return -ERESTARTSYS;
1358 if (!gspca_dev->present) {
1362 if (gspca_dev->capt_file != file) {
1368 for (i = 0; i < gspca_dev->nframes; ++i) {
1369 if (gspca_dev->frame[i].v4l2_buf.memory != V4L2_MEMORY_MMAP) {
1370 PDEBUG(D_STREAM, "mmap bad memory type");
1373 if ((gspca_dev->frame[i].v4l2_buf.m.offset >> PAGE_SHIFT)
1375 frame = &gspca_dev->frame[i];
1379 if (frame == NULL) {
1380 PDEBUG(D_STREAM, "mmap no frame buffer found");
1384 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1385 /* v4l1 maps all the buffers */
1387 || size != frame->v4l2_buf.length * gspca_dev->nframes)
1389 if (size != frame->v4l2_buf.length) {
1390 PDEBUG(D_STREAM, "mmap bad size");
1396 * - VM_IO marks the area as being a mmaped region for I/O to a
1397 * device. It also prevents the region from being core dumped.
1399 vma->vm_flags |= VM_IO;
1401 addr = (unsigned long) frame->data;
1403 page = vmalloc_to_page((void *) addr);
1404 ret = vm_insert_page(vma, start, page);
1412 vma->vm_ops = &gspca_vm_ops;
1413 vma->vm_private_data = frame;
1417 mutex_unlock(&gspca_dev->queue_lock);
1422 * wait for a video frame
1424 * If a frame is ready, its index is returned.
1426 static int frame_wait(struct gspca_dev *gspca_dev,
1429 struct gspca_frame *frame;
1432 /* check if a frame is ready */
1433 i = gspca_dev->fr_o;
1434 j = gspca_dev->fr_queue[i];
1435 frame = &gspca_dev->frame[j];
1436 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE) {
1437 atomic_dec(&gspca_dev->nevent);
1440 if (nonblock_ing) /* no frame yet */
1443 /* wait till a frame is ready */
1445 ret = wait_event_interruptible_timeout(gspca_dev->wq,
1446 atomic_read(&gspca_dev->nevent) > 0,
1447 msecs_to_jiffies(3000));
1450 return ret; /* interrupt */
1451 return -EIO; /* timeout */
1453 atomic_dec(&gspca_dev->nevent);
1454 if (!gspca_dev->streaming || !gspca_dev->present)
1456 i = gspca_dev->fr_o;
1457 j = gspca_dev->fr_queue[i];
1458 frame = &gspca_dev->frame[j];
1459 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1463 gspca_dev->fr_o = (i + 1) % gspca_dev->nframes;
1464 PDEBUG(D_FRAM, "frame wait q:%d i:%d o:%d",
1469 if (gspca_dev->sd_desc->dq_callback) {
1470 mutex_lock(&gspca_dev->usb_lock);
1471 gspca_dev->sd_desc->dq_callback(gspca_dev);
1472 mutex_unlock(&gspca_dev->usb_lock);
1478 * dequeue a video buffer
1480 * If nonblock_ing is false, block until a buffer is available.
1482 static int vidioc_dqbuf(struct file *file, void *priv,
1483 struct v4l2_buffer *v4l2_buf)
1485 struct gspca_dev *gspca_dev = priv;
1486 struct gspca_frame *frame;
1489 PDEBUG(D_FRAM, "dqbuf");
1490 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1492 if (v4l2_buf->memory != gspca_dev->memory)
1495 /* if not streaming, be sure the application will not loop forever */
1496 if (!(file->f_flags & O_NONBLOCK)
1497 && !gspca_dev->streaming && gspca_dev->users == 1)
1500 /* only the capturing file may dequeue */
1501 if (gspca_dev->capt_file != file)
1504 /* only one dequeue / read at a time */
1505 if (mutex_lock_interruptible(&gspca_dev->read_lock))
1506 return -ERESTARTSYS;
1508 ret = frame_wait(gspca_dev, file->f_flags & O_NONBLOCK);
1511 i = ret; /* frame index */
1512 frame = &gspca_dev->frame[i];
1513 if (gspca_dev->memory == V4L2_MEMORY_USERPTR) {
1514 if (copy_to_user((__u8 __user *) frame->v4l2_buf.m.userptr,
1516 frame->v4l2_buf.bytesused)) {
1517 PDEBUG(D_ERR|D_STREAM,
1518 "dqbuf cp to user failed");
1523 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE;
1524 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1525 PDEBUG(D_FRAM, "dqbuf %d", i);
1528 mutex_unlock(&gspca_dev->read_lock);
1533 * queue a video buffer
1535 * Attempting to queue a buffer that has already been
1536 * queued will return -EINVAL.
1538 static int vidioc_qbuf(struct file *file, void *priv,
1539 struct v4l2_buffer *v4l2_buf)
1541 struct gspca_dev *gspca_dev = priv;
1542 struct gspca_frame *frame;
1545 PDEBUG(D_FRAM, "qbuf %d", v4l2_buf->index);
1546 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1549 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1550 return -ERESTARTSYS;
1552 index = v4l2_buf->index;
1553 if ((unsigned) index >= gspca_dev->nframes) {
1555 "qbuf idx %d >= %d", index, gspca_dev->nframes);
1559 if (v4l2_buf->memory != gspca_dev->memory) {
1560 PDEBUG(D_FRAM, "qbuf bad memory type");
1565 frame = &gspca_dev->frame[index];
1566 if (frame->v4l2_buf.flags & BUF_ALL_FLAGS) {
1567 PDEBUG(D_FRAM, "qbuf bad state");
1572 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_QUEUED;
1574 if (frame->v4l2_buf.memory == V4L2_MEMORY_USERPTR) {
1575 frame->v4l2_buf.m.userptr = v4l2_buf->m.userptr;
1576 frame->v4l2_buf.length = v4l2_buf->length;
1579 /* put the buffer in the 'queued' queue */
1580 i = gspca_dev->fr_q;
1581 gspca_dev->fr_queue[i] = index;
1582 gspca_dev->fr_q = (i + 1) % gspca_dev->nframes;
1583 PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d",
1588 v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED;
1589 v4l2_buf->flags &= ~V4L2_BUF_FLAG_DONE;
1592 mutex_unlock(&gspca_dev->queue_lock);
1597 * allocate the resources for read()
1599 static int read_alloc(struct gspca_dev *gspca_dev,
1602 struct v4l2_buffer v4l2_buf;
1605 PDEBUG(D_STREAM, "read alloc");
1606 if (gspca_dev->nframes == 0) {
1607 struct v4l2_requestbuffers rb;
1609 memset(&rb, 0, sizeof rb);
1610 rb.count = gspca_dev->nbufread;
1611 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1612 rb.memory = GSPCA_MEMORY_READ;
1613 ret = vidioc_reqbufs(file, gspca_dev, &rb);
1615 PDEBUG(D_STREAM, "read reqbuf err %d", ret);
1618 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1619 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1620 v4l2_buf.memory = GSPCA_MEMORY_READ;
1621 for (i = 0; i < gspca_dev->nbufread; i++) {
1623 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1625 PDEBUG(D_STREAM, "read qbuf err: %d", ret);
1629 gspca_dev->memory = GSPCA_MEMORY_READ;
1632 /* start streaming */
1633 ret = vidioc_streamon(file, gspca_dev, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1635 PDEBUG(D_STREAM, "read streamon err %d", ret);
1639 static unsigned int dev_poll(struct file *file, poll_table *wait)
1641 struct gspca_dev *gspca_dev = file->private_data;
1644 PDEBUG(D_FRAM, "poll");
1646 poll_wait(file, &gspca_dev->wq, wait);
1647 if (!gspca_dev->present)
1650 /* if reqbufs is not done, the user would use read() */
1651 if (gspca_dev->nframes == 0) {
1652 if (gspca_dev->memory != GSPCA_MEMORY_NO)
1653 return POLLERR; /* not the 1st time */
1654 ret = read_alloc(gspca_dev, file);
1659 if (mutex_lock_interruptible(&gspca_dev->queue_lock) != 0)
1661 if (!gspca_dev->present) {
1666 /* check the next incoming buffer */
1667 i = gspca_dev->fr_o;
1668 i = gspca_dev->fr_queue[i];
1669 if (gspca_dev->frame[i].v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1670 ret = POLLIN | POLLRDNORM; /* something to read */
1674 mutex_unlock(&gspca_dev->queue_lock);
1678 static ssize_t dev_read(struct file *file, char __user *data,
1679 size_t count, loff_t *ppos)
1681 struct gspca_dev *gspca_dev = file->private_data;
1682 struct gspca_frame *frame;
1683 struct v4l2_buffer v4l2_buf;
1684 struct timeval timestamp;
1687 PDEBUG(D_FRAM, "read (%zd)", count);
1688 if (!gspca_dev->present)
1690 switch (gspca_dev->memory) {
1691 case GSPCA_MEMORY_NO: /* first time */
1692 ret = read_alloc(gspca_dev, file);
1696 case GSPCA_MEMORY_READ:
1697 if (gspca_dev->capt_file == file)
1705 jiffies_to_timeval(get_jiffies_64(), ×tamp);
1709 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1710 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1711 v4l2_buf.memory = GSPCA_MEMORY_READ;
1712 ret = vidioc_dqbuf(file, gspca_dev, &v4l2_buf);
1714 PDEBUG(D_STREAM, "read dqbuf err %d", ret);
1718 /* if the process slept for more than 1 second,
1719 * get a newer frame */
1720 frame = &gspca_dev->frame[v4l2_buf.index];
1722 break; /* avoid infinite loop */
1723 if (frame->v4l2_buf.timestamp.tv_sec >= timestamp.tv_sec)
1725 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1727 PDEBUG(D_STREAM, "read qbuf err %d", ret);
1732 /* copy the frame */
1733 if (count > frame->v4l2_buf.bytesused)
1734 count = frame->v4l2_buf.bytesused;
1735 ret = copy_to_user(data, frame->data, count);
1737 PDEBUG(D_ERR|D_STREAM,
1738 "read cp to user lack %d / %zd", ret, count);
1744 /* in each case, requeue the buffer */
1745 ret2 = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1751 static void dev_release(struct video_device *vfd)
1756 static struct file_operations dev_fops = {
1757 .owner = THIS_MODULE,
1759 .release = dev_close,
1762 .ioctl = video_ioctl2,
1763 #ifdef CONFIG_COMPAT
1764 .compat_ioctl = v4l_compat_ioctl32,
1766 .llseek = no_llseek,
1770 static const struct v4l2_ioctl_ops dev_ioctl_ops = {
1771 .vidioc_querycap = vidioc_querycap,
1772 .vidioc_dqbuf = vidioc_dqbuf,
1773 .vidioc_qbuf = vidioc_qbuf,
1774 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1775 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1776 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1777 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1778 .vidioc_streamon = vidioc_streamon,
1779 .vidioc_queryctrl = vidioc_queryctrl,
1780 .vidioc_g_ctrl = vidioc_g_ctrl,
1781 .vidioc_s_ctrl = vidioc_s_ctrl,
1782 .vidioc_querymenu = vidioc_querymenu,
1783 .vidioc_enum_input = vidioc_enum_input,
1784 .vidioc_g_input = vidioc_g_input,
1785 .vidioc_s_input = vidioc_s_input,
1786 .vidioc_reqbufs = vidioc_reqbufs,
1787 .vidioc_querybuf = vidioc_querybuf,
1788 .vidioc_streamoff = vidioc_streamoff,
1789 .vidioc_g_jpegcomp = vidioc_g_jpegcomp,
1790 .vidioc_s_jpegcomp = vidioc_s_jpegcomp,
1791 .vidioc_g_parm = vidioc_g_parm,
1792 .vidioc_s_parm = vidioc_s_parm,
1793 .vidioc_s_std = vidioc_s_std,
1794 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1795 .vidiocgmbuf = vidiocgmbuf,
1799 static struct video_device gspca_template = {
1800 .name = "gspca main driver",
1802 .ioctl_ops = &dev_ioctl_ops,
1803 .release = dev_release, /* mandatory */
1808 * probe and create a new gspca device
1810 * This function must be called by the sub-driver when it is
1811 * called for probing a new device.
1813 int gspca_dev_probe(struct usb_interface *intf,
1814 const struct usb_device_id *id,
1815 const struct sd_desc *sd_desc,
1817 struct module *module)
1819 struct usb_interface_descriptor *interface;
1820 struct gspca_dev *gspca_dev;
1821 struct usb_device *dev = interface_to_usbdev(intf);
1824 PDEBUG(D_PROBE, "probing %04x:%04x", id->idVendor, id->idProduct);
1826 /* we don't handle multi-config cameras */
1827 if (dev->descriptor.bNumConfigurations != 1)
1829 interface = &intf->cur_altsetting->desc;
1830 if (interface->bInterfaceNumber > 0)
1833 /* create the device */
1834 if (dev_size < sizeof *gspca_dev)
1835 dev_size = sizeof *gspca_dev;
1836 gspca_dev = kzalloc(dev_size, GFP_KERNEL);
1838 err("couldn't kzalloc gspca struct");
1841 kref_init(&gspca_dev->kref);
1842 gspca_dev->usb_buf = kmalloc(USB_BUF_SZ, GFP_KERNEL);
1843 if (!gspca_dev->usb_buf) {
1844 err("out of memory");
1848 gspca_dev->dev = dev;
1849 gspca_dev->iface = interface->bInterfaceNumber;
1850 gspca_dev->nbalt = intf->num_altsetting;
1851 gspca_dev->sd_desc = sd_desc;
1852 gspca_dev->nbufread = 2;
1854 /* configure the subdriver and initialize the USB device */
1855 ret = gspca_dev->sd_desc->config(gspca_dev, id);
1858 ret = gspca_dev->sd_desc->init(gspca_dev);
1861 ret = gspca_set_alt0(gspca_dev);
1864 gspca_set_default_mode(gspca_dev);
1866 mutex_init(&gspca_dev->usb_lock);
1867 mutex_init(&gspca_dev->read_lock);
1868 mutex_init(&gspca_dev->queue_lock);
1869 init_waitqueue_head(&gspca_dev->wq);
1871 /* init video stuff */
1872 memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template);
1873 gspca_dev->vdev.parent = &dev->dev;
1874 memcpy(&gspca_dev->fops, &dev_fops, sizeof gspca_dev->fops);
1875 gspca_dev->vdev.fops = &gspca_dev->fops;
1876 gspca_dev->fops.owner = module; /* module protection */
1877 gspca_dev->present = 1;
1878 ret = video_register_device(&gspca_dev->vdev,
1882 err("video_register_device err %d", ret);
1886 usb_set_intfdata(intf, gspca_dev);
1887 PDEBUG(D_PROBE, "probe ok");
1890 kref_put(&gspca_dev->kref, gspca_delete);
1893 EXPORT_SYMBOL(gspca_dev_probe);
1898 * This function must be called by the sub-driver
1899 * when the device disconnects, after the specific resources are freed.
1901 void gspca_disconnect(struct usb_interface *intf)
1903 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1905 usb_set_intfdata(intf, NULL);
1907 /* We don't want people trying to open up the device */
1908 video_unregister_device(&gspca_dev->vdev);
1910 gspca_dev->present = 0;
1911 gspca_dev->streaming = 0;
1913 kref_put(&gspca_dev->kref, gspca_delete);
1915 PDEBUG(D_PROBE, "disconnect complete");
1917 EXPORT_SYMBOL(gspca_disconnect);
1920 int gspca_suspend(struct usb_interface *intf, pm_message_t message)
1922 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1924 if (!gspca_dev->streaming)
1926 gspca_dev->frozen = 1; /* avoid urb error messages */
1927 if (gspca_dev->sd_desc->stopN)
1928 gspca_dev->sd_desc->stopN(gspca_dev);
1929 destroy_urbs(gspca_dev);
1930 gspca_set_alt0(gspca_dev);
1931 if (gspca_dev->sd_desc->stop0)
1932 gspca_dev->sd_desc->stop0(gspca_dev);
1935 EXPORT_SYMBOL(gspca_suspend);
1937 int gspca_resume(struct usb_interface *intf)
1939 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1941 gspca_dev->frozen = 0;
1942 gspca_dev->sd_desc->init(gspca_dev);
1943 if (gspca_dev->streaming)
1944 return gspca_init_transfer(gspca_dev);
1947 EXPORT_SYMBOL(gspca_resume);
1949 /* -- cam driver utility functions -- */
1951 /* auto gain and exposure algorithm based on the knee algorithm described here:
1952 http://ytse.tricolour.net/docs/LowLightOptimization.html
1954 Returns 0 if no changes were made, 1 if the gain and or exposure settings
1956 int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
1957 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee)
1959 int i, steps, gain, orig_gain, exposure, orig_exposure, autogain;
1960 const struct ctrl *gain_ctrl = NULL;
1961 const struct ctrl *exposure_ctrl = NULL;
1962 const struct ctrl *autogain_ctrl = NULL;
1965 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
1966 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_GAIN)
1967 gain_ctrl = &gspca_dev->sd_desc->ctrls[i];
1968 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_EXPOSURE)
1969 exposure_ctrl = &gspca_dev->sd_desc->ctrls[i];
1970 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_AUTOGAIN)
1971 autogain_ctrl = &gspca_dev->sd_desc->ctrls[i];
1973 if (!gain_ctrl || !exposure_ctrl || !autogain_ctrl) {
1974 PDEBUG(D_ERR, "Error: gspca_auto_gain_n_exposure called "
1975 "on cam without (auto)gain/exposure");
1979 if (gain_ctrl->get(gspca_dev, &gain) ||
1980 exposure_ctrl->get(gspca_dev, &exposure) ||
1981 autogain_ctrl->get(gspca_dev, &autogain) || !autogain)
1985 orig_exposure = exposure;
1987 /* If we are of a multiple of deadzone, do multiple steps to reach the
1988 desired lumination fast (with the risc of a slight overshoot) */
1989 steps = abs(desired_avg_lum - avg_lum) / deadzone;
1991 PDEBUG(D_FRAM, "autogain: lum: %d, desired: %d, steps: %d\n",
1992 avg_lum, desired_avg_lum, steps);
1994 for (i = 0; i < steps; i++) {
1995 if (avg_lum > desired_avg_lum) {
1996 if (gain > gain_knee)
1998 else if (exposure > exposure_knee)
2000 else if (gain > gain_ctrl->qctrl.default_value)
2002 else if (exposure > exposure_ctrl->qctrl.minimum)
2004 else if (gain > gain_ctrl->qctrl.minimum)
2009 if (gain < gain_ctrl->qctrl.default_value)
2011 else if (exposure < exposure_knee)
2013 else if (gain < gain_knee)
2015 else if (exposure < exposure_ctrl->qctrl.maximum)
2017 else if (gain < gain_ctrl->qctrl.maximum)
2024 if (gain != orig_gain) {
2025 gain_ctrl->set(gspca_dev, gain);
2028 if (exposure != orig_exposure) {
2029 exposure_ctrl->set(gspca_dev, exposure);
2035 EXPORT_SYMBOL(gspca_auto_gain_n_exposure);
2037 /* -- module insert / remove -- */
2038 static int __init gspca_init(void)
2040 info("main v%d.%d.%d registered",
2041 (DRIVER_VERSION_NUMBER >> 16) & 0xff,
2042 (DRIVER_VERSION_NUMBER >> 8) & 0xff,
2043 DRIVER_VERSION_NUMBER & 0xff);
2046 static void __exit gspca_exit(void)
2048 info("main deregistered");
2051 module_init(gspca_init);
2052 module_exit(gspca_exit);
2055 module_param_named(debug, gspca_debug, int, 0644);
2056 MODULE_PARM_DESC(debug,
2057 "Debug (bit) 0x01:error 0x02:probe 0x04:config"
2058 " 0x08:stream 0x10:frame 0x20:packet 0x40:USBin 0x80:USBout"