2 * uvc_video.c -- USB Video Class driver - Video handling
4 * Copyright (C) 2005-2009
5 * Laurent Pinchart (laurent.pinchart@skynet.be)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/list.h>
16 #include <linux/module.h>
17 #include <linux/usb.h>
18 #include <linux/videodev2.h>
19 #include <linux/vmalloc.h>
20 #include <linux/wait.h>
21 #include <asm/atomic.h>
22 #include <asm/unaligned.h>
24 #include <media/v4l2-common.h>
28 /* ------------------------------------------------------------------------
32 static int __uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
33 __u8 intfnum, __u8 cs, void *data, __u16 size,
36 __u8 type = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
39 pipe = (query & 0x80) ? usb_rcvctrlpipe(dev->udev, 0)
40 : usb_sndctrlpipe(dev->udev, 0);
41 type |= (query & 0x80) ? USB_DIR_IN : USB_DIR_OUT;
43 return usb_control_msg(dev->udev, pipe, query, type, cs << 8,
44 unit << 8 | intfnum, data, size, timeout);
47 int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
48 __u8 intfnum, __u8 cs, void *data, __u16 size)
52 ret = __uvc_query_ctrl(dev, query, unit, intfnum, cs, data, size,
53 UVC_CTRL_CONTROL_TIMEOUT);
55 uvc_printk(KERN_ERR, "Failed to query (%u) UVC control %u "
56 "(unit %u) : %d (exp. %u).\n", query, cs, unit, ret,
64 static void uvc_fixup_video_ctrl(struct uvc_video_device *video,
65 struct uvc_streaming_control *ctrl)
67 struct uvc_format *format;
68 struct uvc_frame *frame = NULL;
71 if (ctrl->bFormatIndex <= 0 ||
72 ctrl->bFormatIndex > video->streaming->nformats)
75 format = &video->streaming->format[ctrl->bFormatIndex - 1];
77 for (i = 0; i < format->nframes; ++i) {
78 if (format->frame[i].bFrameIndex == ctrl->bFrameIndex) {
79 frame = &format->frame[i];
87 if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) ||
88 (ctrl->dwMaxVideoFrameSize == 0 &&
89 video->dev->uvc_version < 0x0110))
90 ctrl->dwMaxVideoFrameSize =
91 frame->dwMaxVideoFrameBufferSize;
93 if (video->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH &&
94 video->streaming->intf->num_altsetting > 1) {
98 interval = (ctrl->dwFrameInterval > 100000)
99 ? ctrl->dwFrameInterval
100 : frame->dwFrameInterval[0];
102 /* Compute a bandwidth estimation by multiplying the frame
103 * size by the number of video frames per second, divide the
104 * result by the number of USB frames (or micro-frames for
105 * high-speed devices) per second and add the UVC header size
106 * (assumed to be 12 bytes long).
108 bandwidth = frame->wWidth * frame->wHeight / 8 * format->bpp;
109 bandwidth *= 10000000 / interval + 1;
111 if (video->dev->udev->speed == USB_SPEED_HIGH)
115 ctrl->dwMaxPayloadTransferSize = bandwidth;
119 static int uvc_get_video_ctrl(struct uvc_video_device *video,
120 struct uvc_streaming_control *ctrl, int probe, __u8 query)
126 size = video->dev->uvc_version >= 0x0110 ? 34 : 26;
127 data = kmalloc(size, GFP_KERNEL);
131 ret = __uvc_query_ctrl(video->dev, query, 0, video->streaming->intfnum,
132 probe ? VS_PROBE_CONTROL : VS_COMMIT_CONTROL, data, size,
133 UVC_CTRL_STREAMING_TIMEOUT);
135 if ((query == GET_MIN || query == GET_MAX) && ret == 2) {
136 /* Some cameras, mostly based on Bison Electronics chipsets,
137 * answer a GET_MIN or GET_MAX request with the wCompQuality
140 uvc_warn_once(video->dev, UVC_WARN_MINMAX, "UVC non "
141 "compliance - GET_MIN/MAX(PROBE) incorrectly "
142 "supported. Enabling workaround.\n");
143 memset(ctrl, 0, sizeof ctrl);
144 ctrl->wCompQuality = le16_to_cpup((__le16 *)data);
147 } else if (query == GET_DEF && probe == 1 && ret != size) {
148 /* Many cameras don't support the GET_DEF request on their
149 * video probe control. Warn once and return, the caller will
150 * fall back to GET_CUR.
152 uvc_warn_once(video->dev, UVC_WARN_PROBE_DEF, "UVC non "
153 "compliance - GET_DEF(PROBE) not supported. "
154 "Enabling workaround.\n");
157 } else if (ret != size) {
158 uvc_printk(KERN_ERR, "Failed to query (%u) UVC %s control : "
159 "%d (exp. %u).\n", query, probe ? "probe" : "commit",
165 ctrl->bmHint = le16_to_cpup((__le16 *)&data[0]);
166 ctrl->bFormatIndex = data[2];
167 ctrl->bFrameIndex = data[3];
168 ctrl->dwFrameInterval = le32_to_cpup((__le32 *)&data[4]);
169 ctrl->wKeyFrameRate = le16_to_cpup((__le16 *)&data[8]);
170 ctrl->wPFrameRate = le16_to_cpup((__le16 *)&data[10]);
171 ctrl->wCompQuality = le16_to_cpup((__le16 *)&data[12]);
172 ctrl->wCompWindowSize = le16_to_cpup((__le16 *)&data[14]);
173 ctrl->wDelay = le16_to_cpup((__le16 *)&data[16]);
174 ctrl->dwMaxVideoFrameSize = get_unaligned_le32(&data[18]);
175 ctrl->dwMaxPayloadTransferSize = get_unaligned_le32(&data[22]);
178 ctrl->dwClockFrequency = get_unaligned_le32(&data[26]);
179 ctrl->bmFramingInfo = data[30];
180 ctrl->bPreferedVersion = data[31];
181 ctrl->bMinVersion = data[32];
182 ctrl->bMaxVersion = data[33];
184 ctrl->dwClockFrequency = video->dev->clock_frequency;
185 ctrl->bmFramingInfo = 0;
186 ctrl->bPreferedVersion = 0;
187 ctrl->bMinVersion = 0;
188 ctrl->bMaxVersion = 0;
191 /* Some broken devices return null or wrong dwMaxVideoFrameSize and
192 * dwMaxPayloadTransferSize fields. Try to get the value from the
193 * format and frame descriptors.
195 uvc_fixup_video_ctrl(video, ctrl);
203 static int uvc_set_video_ctrl(struct uvc_video_device *video,
204 struct uvc_streaming_control *ctrl, int probe)
210 size = video->dev->uvc_version >= 0x0110 ? 34 : 26;
211 data = kzalloc(size, GFP_KERNEL);
215 *(__le16 *)&data[0] = cpu_to_le16(ctrl->bmHint);
216 data[2] = ctrl->bFormatIndex;
217 data[3] = ctrl->bFrameIndex;
218 *(__le32 *)&data[4] = cpu_to_le32(ctrl->dwFrameInterval);
219 *(__le16 *)&data[8] = cpu_to_le16(ctrl->wKeyFrameRate);
220 *(__le16 *)&data[10] = cpu_to_le16(ctrl->wPFrameRate);
221 *(__le16 *)&data[12] = cpu_to_le16(ctrl->wCompQuality);
222 *(__le16 *)&data[14] = cpu_to_le16(ctrl->wCompWindowSize);
223 *(__le16 *)&data[16] = cpu_to_le16(ctrl->wDelay);
224 put_unaligned_le32(ctrl->dwMaxVideoFrameSize, &data[18]);
225 put_unaligned_le32(ctrl->dwMaxPayloadTransferSize, &data[22]);
228 put_unaligned_le32(ctrl->dwClockFrequency, &data[26]);
229 data[30] = ctrl->bmFramingInfo;
230 data[31] = ctrl->bPreferedVersion;
231 data[32] = ctrl->bMinVersion;
232 data[33] = ctrl->bMaxVersion;
235 ret = __uvc_query_ctrl(video->dev, SET_CUR, 0,
236 video->streaming->intfnum,
237 probe ? VS_PROBE_CONTROL : VS_COMMIT_CONTROL, data, size,
238 UVC_CTRL_STREAMING_TIMEOUT);
240 uvc_printk(KERN_ERR, "Failed to set UVC %s control : "
241 "%d (exp. %u).\n", probe ? "probe" : "commit",
250 int uvc_probe_video(struct uvc_video_device *video,
251 struct uvc_streaming_control *probe)
253 struct uvc_streaming_control probe_min, probe_max;
258 mutex_lock(&video->streaming->mutex);
260 /* Perform probing. The device should adjust the requested values
261 * according to its capabilities. However, some devices, namely the
262 * first generation UVC Logitech webcams, don't implement the Video
263 * Probe control properly, and just return the needed bandwidth. For
264 * that reason, if the needed bandwidth exceeds the maximum available
265 * bandwidth, try to lower the quality.
267 if ((ret = uvc_set_video_ctrl(video, probe, 1)) < 0)
270 /* Get the minimum and maximum values for compression settings. */
271 if (!(video->dev->quirks & UVC_QUIRK_PROBE_MINMAX)) {
272 ret = uvc_get_video_ctrl(video, &probe_min, 1, GET_MIN);
275 ret = uvc_get_video_ctrl(video, &probe_max, 1, GET_MAX);
279 probe->wCompQuality = probe_max.wCompQuality;
282 for (i = 0; i < 2; ++i) {
283 if ((ret = uvc_set_video_ctrl(video, probe, 1)) < 0 ||
284 (ret = uvc_get_video_ctrl(video, probe, 1, GET_CUR)) < 0)
287 if (video->streaming->intf->num_altsetting == 1)
290 bandwidth = probe->dwMaxPayloadTransferSize;
291 if (bandwidth <= video->streaming->maxpsize)
294 if (video->dev->quirks & UVC_QUIRK_PROBE_MINMAX) {
299 /* TODO: negotiate compression parameters */
300 probe->wKeyFrameRate = probe_min.wKeyFrameRate;
301 probe->wPFrameRate = probe_min.wPFrameRate;
302 probe->wCompQuality = probe_max.wCompQuality;
303 probe->wCompWindowSize = probe_min.wCompWindowSize;
307 mutex_unlock(&video->streaming->mutex);
311 int uvc_commit_video(struct uvc_video_device *video,
312 struct uvc_streaming_control *probe)
314 return uvc_set_video_ctrl(video, probe, 0);
317 /* ------------------------------------------------------------------------
321 /* Values for bmHeaderInfo (Video and Still Image Payload Headers, 2.4.3.3) */
322 #define UVC_STREAM_EOH (1 << 7)
323 #define UVC_STREAM_ERR (1 << 6)
324 #define UVC_STREAM_STI (1 << 5)
325 #define UVC_STREAM_RES (1 << 4)
326 #define UVC_STREAM_SCR (1 << 3)
327 #define UVC_STREAM_PTS (1 << 2)
328 #define UVC_STREAM_EOF (1 << 1)
329 #define UVC_STREAM_FID (1 << 0)
331 /* Video payload decoding is handled by uvc_video_decode_start(),
332 * uvc_video_decode_data() and uvc_video_decode_end().
334 * uvc_video_decode_start is called with URB data at the start of a bulk or
335 * isochronous payload. It processes header data and returns the header size
336 * in bytes if successful. If an error occurs, it returns a negative error
337 * code. The following error codes have special meanings.
339 * - EAGAIN informs the caller that the current video buffer should be marked
340 * as done, and that the function should be called again with the same data
341 * and a new video buffer. This is used when end of frame conditions can be
342 * reliably detected at the beginning of the next frame only.
344 * If an error other than -EAGAIN is returned, the caller will drop the current
345 * payload. No call to uvc_video_decode_data and uvc_video_decode_end will be
346 * made until the next payload. -ENODATA can be used to drop the current
347 * payload if no other error code is appropriate.
349 * uvc_video_decode_data is called for every URB with URB data. It copies the
350 * data to the video buffer.
352 * uvc_video_decode_end is called with header data at the end of a bulk or
353 * isochronous payload. It performs any additional header data processing and
354 * returns 0 or a negative error code if an error occured. As header data have
355 * already been processed by uvc_video_decode_start, this functions isn't
356 * required to perform sanity checks a second time.
358 * For isochronous transfers where a payload is always transfered in a single
359 * URB, the three functions will be called in a row.
361 * To let the decoder process header data and update its internal state even
362 * when no video buffer is available, uvc_video_decode_start must be prepared
363 * to be called with a NULL buf parameter. uvc_video_decode_data and
364 * uvc_video_decode_end will never be called with a NULL buffer.
366 static int uvc_video_decode_start(struct uvc_video_device *video,
367 struct uvc_buffer *buf, const __u8 *data, int len)
372 * - packet must be at least 2 bytes long
373 * - bHeaderLength value must be at least 2 bytes (see above)
374 * - bHeaderLength value can't be larger than the packet size.
376 if (len < 2 || data[0] < 2 || data[0] > len)
379 /* Skip payloads marked with the error bit ("error frames"). */
380 if (data[1] & UVC_STREAM_ERR) {
381 uvc_trace(UVC_TRACE_FRAME, "Dropping payload (error bit "
386 fid = data[1] & UVC_STREAM_FID;
388 /* Store the payload FID bit and return immediately when the buffer is
392 video->last_fid = fid;
396 /* Synchronize to the input stream by waiting for the FID bit to be
397 * toggled when the the buffer state is not UVC_BUF_STATE_ACTIVE.
398 * video->last_fid is initialized to -1, so the first isochronous
399 * frame will always be in sync.
401 * If the device doesn't toggle the FID bit, invert video->last_fid
402 * when the EOF bit is set to force synchronisation on the next packet.
404 if (buf->state != UVC_BUF_STATE_ACTIVE) {
405 if (fid == video->last_fid) {
406 uvc_trace(UVC_TRACE_FRAME, "Dropping payload (out of "
408 if ((video->dev->quirks & UVC_QUIRK_STREAM_NO_FID) &&
409 (data[1] & UVC_STREAM_EOF))
410 video->last_fid ^= UVC_STREAM_FID;
414 /* TODO: Handle PTS and SCR. */
415 buf->state = UVC_BUF_STATE_ACTIVE;
418 /* Mark the buffer as done if we're at the beginning of a new frame.
419 * End of frame detection is better implemented by checking the EOF
420 * bit (FID bit toggling is delayed by one frame compared to the EOF
421 * bit), but some devices don't set the bit at end of frame (and the
422 * last payload can be lost anyway). We thus must check if the FID has
425 * video->last_fid is initialized to -1, so the first isochronous
426 * frame will never trigger an end of frame detection.
428 * Empty buffers (bytesused == 0) don't trigger end of frame detection
429 * as it doesn't make sense to return an empty buffer. This also
430 * avoids detecting end of frame conditions at FID toggling if the
431 * previous payload had the EOF bit set.
433 if (fid != video->last_fid && buf->buf.bytesused != 0) {
434 uvc_trace(UVC_TRACE_FRAME, "Frame complete (FID bit "
436 buf->state = UVC_BUF_STATE_DONE;
440 video->last_fid = fid;
445 static void uvc_video_decode_data(struct uvc_video_device *video,
446 struct uvc_buffer *buf, const __u8 *data, int len)
448 struct uvc_video_queue *queue = &video->queue;
449 unsigned int maxlen, nbytes;
455 /* Copy the video data to the buffer. */
456 maxlen = buf->buf.length - buf->buf.bytesused;
457 mem = queue->mem + buf->buf.m.offset + buf->buf.bytesused;
458 nbytes = min((unsigned int)len, maxlen);
459 memcpy(mem, data, nbytes);
460 buf->buf.bytesused += nbytes;
462 /* Complete the current frame if the buffer size was exceeded. */
464 uvc_trace(UVC_TRACE_FRAME, "Frame complete (overflow).\n");
465 buf->state = UVC_BUF_STATE_DONE;
469 static void uvc_video_decode_end(struct uvc_video_device *video,
470 struct uvc_buffer *buf, const __u8 *data, int len)
472 /* Mark the buffer as done if the EOF marker is set. */
473 if (data[1] & UVC_STREAM_EOF && buf->buf.bytesused != 0) {
474 uvc_trace(UVC_TRACE_FRAME, "Frame complete (EOF found).\n");
476 uvc_trace(UVC_TRACE_FRAME, "EOF in empty payload.\n");
477 buf->state = UVC_BUF_STATE_DONE;
478 if (video->dev->quirks & UVC_QUIRK_STREAM_NO_FID)
479 video->last_fid ^= UVC_STREAM_FID;
483 /* Video payload encoding is handled by uvc_video_encode_header() and
484 * uvc_video_encode_data(). Only bulk transfers are currently supported.
486 * uvc_video_encode_header is called at the start of a payload. It adds header
487 * data to the transfer buffer and returns the header size. As the only known
488 * UVC output device transfers a whole frame in a single payload, the EOF bit
489 * is always set in the header.
491 * uvc_video_encode_data is called for every URB and copies the data from the
492 * video buffer to the transfer buffer.
494 static int uvc_video_encode_header(struct uvc_video_device *video,
495 struct uvc_buffer *buf, __u8 *data, int len)
497 data[0] = 2; /* Header length */
498 data[1] = UVC_STREAM_EOH | UVC_STREAM_EOF
499 | (video->last_fid & UVC_STREAM_FID);
503 static int uvc_video_encode_data(struct uvc_video_device *video,
504 struct uvc_buffer *buf, __u8 *data, int len)
506 struct uvc_video_queue *queue = &video->queue;
510 /* Copy video data to the URB buffer. */
511 mem = queue->mem + buf->buf.m.offset + queue->buf_used;
512 nbytes = min((unsigned int)len, buf->buf.bytesused - queue->buf_used);
513 nbytes = min(video->bulk.max_payload_size - video->bulk.payload_size,
515 memcpy(data, mem, nbytes);
517 queue->buf_used += nbytes;
522 /* ------------------------------------------------------------------------
527 * Completion handler for video URBs.
529 static void uvc_video_decode_isoc(struct urb *urb,
530 struct uvc_video_device *video, struct uvc_buffer *buf)
535 for (i = 0; i < urb->number_of_packets; ++i) {
536 if (urb->iso_frame_desc[i].status < 0) {
537 uvc_trace(UVC_TRACE_FRAME, "USB isochronous frame "
538 "lost (%d).\n", urb->iso_frame_desc[i].status);
542 /* Decode the payload header. */
543 mem = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
545 ret = uvc_video_decode_start(video, buf, mem,
546 urb->iso_frame_desc[i].actual_length);
548 buf = uvc_queue_next_buffer(&video->queue, buf);
549 } while (ret == -EAGAIN);
554 /* Decode the payload data. */
555 uvc_video_decode_data(video, buf, mem + ret,
556 urb->iso_frame_desc[i].actual_length - ret);
558 /* Process the header again. */
559 uvc_video_decode_end(video, buf, mem,
560 urb->iso_frame_desc[i].actual_length);
562 if (buf->state == UVC_BUF_STATE_DONE ||
563 buf->state == UVC_BUF_STATE_ERROR)
564 buf = uvc_queue_next_buffer(&video->queue, buf);
568 static void uvc_video_decode_bulk(struct urb *urb,
569 struct uvc_video_device *video, struct uvc_buffer *buf)
574 if (urb->actual_length == 0)
577 mem = urb->transfer_buffer;
578 len = urb->actual_length;
579 video->bulk.payload_size += len;
581 /* If the URB is the first of its payload, decode and save the
584 if (video->bulk.header_size == 0 && !video->bulk.skip_payload) {
586 ret = uvc_video_decode_start(video, buf, mem, len);
588 buf = uvc_queue_next_buffer(&video->queue, buf);
589 } while (ret == -EAGAIN);
591 /* If an error occured skip the rest of the payload. */
592 if (ret < 0 || buf == NULL) {
593 video->bulk.skip_payload = 1;
595 memcpy(video->bulk.header, mem, ret);
596 video->bulk.header_size = ret;
603 /* The buffer queue might have been cancelled while a bulk transfer
604 * was in progress, so we can reach here with buf equal to NULL. Make
605 * sure buf is never dereferenced if NULL.
608 /* Process video data. */
609 if (!video->bulk.skip_payload && buf != NULL)
610 uvc_video_decode_data(video, buf, mem, len);
612 /* Detect the payload end by a URB smaller than the maximum size (or
613 * a payload size equal to the maximum) and process the header again.
615 if (urb->actual_length < urb->transfer_buffer_length ||
616 video->bulk.payload_size >= video->bulk.max_payload_size) {
617 if (!video->bulk.skip_payload && buf != NULL) {
618 uvc_video_decode_end(video, buf, video->bulk.header,
619 video->bulk.payload_size);
620 if (buf->state == UVC_BUF_STATE_DONE ||
621 buf->state == UVC_BUF_STATE_ERROR)
622 buf = uvc_queue_next_buffer(&video->queue, buf);
625 video->bulk.header_size = 0;
626 video->bulk.skip_payload = 0;
627 video->bulk.payload_size = 0;
631 static void uvc_video_encode_bulk(struct urb *urb,
632 struct uvc_video_device *video, struct uvc_buffer *buf)
634 u8 *mem = urb->transfer_buffer;
635 int len = video->urb_size, ret;
638 urb->transfer_buffer_length = 0;
642 /* If the URB is the first of its payload, add the header. */
643 if (video->bulk.header_size == 0) {
644 ret = uvc_video_encode_header(video, buf, mem, len);
645 video->bulk.header_size = ret;
646 video->bulk.payload_size += ret;
651 /* Process video data. */
652 ret = uvc_video_encode_data(video, buf, mem, len);
654 video->bulk.payload_size += ret;
657 if (buf->buf.bytesused == video->queue.buf_used ||
658 video->bulk.payload_size == video->bulk.max_payload_size) {
659 if (buf->buf.bytesused == video->queue.buf_used) {
660 video->queue.buf_used = 0;
661 buf->state = UVC_BUF_STATE_DONE;
662 uvc_queue_next_buffer(&video->queue, buf);
663 video->last_fid ^= UVC_STREAM_FID;
666 video->bulk.header_size = 0;
667 video->bulk.payload_size = 0;
670 urb->transfer_buffer_length = video->urb_size - len;
673 static void uvc_video_complete(struct urb *urb)
675 struct uvc_video_device *video = urb->context;
676 struct uvc_video_queue *queue = &video->queue;
677 struct uvc_buffer *buf = NULL;
681 switch (urb->status) {
686 uvc_printk(KERN_WARNING, "Non-zero status (%d) in video "
687 "completion handler.\n", urb->status);
689 case -ENOENT: /* usb_kill_urb() called. */
693 case -ECONNRESET: /* usb_unlink_urb() called. */
694 case -ESHUTDOWN: /* The endpoint is being disabled. */
695 uvc_queue_cancel(queue, urb->status == -ESHUTDOWN);
699 spin_lock_irqsave(&queue->irqlock, flags);
700 if (!list_empty(&queue->irqqueue))
701 buf = list_first_entry(&queue->irqqueue, struct uvc_buffer,
703 spin_unlock_irqrestore(&queue->irqlock, flags);
705 video->decode(urb, video, buf);
707 if ((ret = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
708 uvc_printk(KERN_ERR, "Failed to resubmit video URB (%d).\n",
714 * Free transfer buffers.
716 static void uvc_free_urb_buffers(struct uvc_video_device *video)
720 for (i = 0; i < UVC_URBS; ++i) {
721 if (video->urb_buffer[i]) {
722 usb_buffer_free(video->dev->udev, video->urb_size,
723 video->urb_buffer[i], video->urb_dma[i]);
724 video->urb_buffer[i] = NULL;
732 * Allocate transfer buffers. This function can be called with buffers
733 * already allocated when resuming from suspend, in which case it will
734 * return without touching the buffers.
736 * Limit the buffer size to UVC_MAX_PACKETS bulk/isochronous packets. If the
737 * system is too low on memory try successively smaller numbers of packets
738 * until allocation succeeds.
740 * Return the number of allocated packets on success or 0 when out of memory.
742 static int uvc_alloc_urb_buffers(struct uvc_video_device *video,
743 unsigned int size, unsigned int psize, gfp_t gfp_flags)
745 unsigned int npackets;
748 /* Buffers are already allocated, bail out. */
750 return video->urb_size / psize;
752 /* Compute the number of packets. Bulk endpoints might transfer UVC
753 * payloads accross multiple URBs.
755 npackets = DIV_ROUND_UP(size, psize);
756 if (npackets > UVC_MAX_PACKETS)
757 npackets = UVC_MAX_PACKETS;
759 /* Retry allocations until one succeed. */
760 for (; npackets > 1; npackets /= 2) {
761 for (i = 0; i < UVC_URBS; ++i) {
762 video->urb_buffer[i] = usb_buffer_alloc(
763 video->dev->udev, psize * npackets,
764 gfp_flags | __GFP_NOWARN, &video->urb_dma[i]);
765 if (!video->urb_buffer[i]) {
766 uvc_free_urb_buffers(video);
772 video->urb_size = psize * npackets;
781 * Uninitialize isochronous/bulk URBs and free transfer buffers.
783 static void uvc_uninit_video(struct uvc_video_device *video, int free_buffers)
788 for (i = 0; i < UVC_URBS; ++i) {
789 if ((urb = video->urb[i]) == NULL)
794 video->urb[i] = NULL;
798 uvc_free_urb_buffers(video);
802 * Initialize isochronous URBs and allocate transfer buffers. The packet size
803 * is given by the endpoint.
805 static int uvc_init_video_isoc(struct uvc_video_device *video,
806 struct usb_host_endpoint *ep, gfp_t gfp_flags)
809 unsigned int npackets, i, j;
813 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
814 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
815 size = video->streaming->ctrl.dwMaxVideoFrameSize;
817 npackets = uvc_alloc_urb_buffers(video, size, psize, gfp_flags);
821 size = npackets * psize;
823 for (i = 0; i < UVC_URBS; ++i) {
824 urb = usb_alloc_urb(npackets, gfp_flags);
826 uvc_uninit_video(video, 1);
830 urb->dev = video->dev->udev;
831 urb->context = video;
832 urb->pipe = usb_rcvisocpipe(video->dev->udev,
833 ep->desc.bEndpointAddress);
834 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
835 urb->interval = ep->desc.bInterval;
836 urb->transfer_buffer = video->urb_buffer[i];
837 urb->transfer_dma = video->urb_dma[i];
838 urb->complete = uvc_video_complete;
839 urb->number_of_packets = npackets;
840 urb->transfer_buffer_length = size;
842 for (j = 0; j < npackets; ++j) {
843 urb->iso_frame_desc[j].offset = j * psize;
844 urb->iso_frame_desc[j].length = psize;
854 * Initialize bulk URBs and allocate transfer buffers. The packet size is
855 * given by the endpoint.
857 static int uvc_init_video_bulk(struct uvc_video_device *video,
858 struct usb_host_endpoint *ep, gfp_t gfp_flags)
861 unsigned int npackets, pipe, i;
865 psize = le16_to_cpu(ep->desc.wMaxPacketSize) & 0x07ff;
866 size = video->streaming->ctrl.dwMaxPayloadTransferSize;
867 video->bulk.max_payload_size = size;
869 npackets = uvc_alloc_urb_buffers(video, size, psize, gfp_flags);
873 size = npackets * psize;
875 if (usb_endpoint_dir_in(&ep->desc))
876 pipe = usb_rcvbulkpipe(video->dev->udev,
877 ep->desc.bEndpointAddress);
879 pipe = usb_sndbulkpipe(video->dev->udev,
880 ep->desc.bEndpointAddress);
882 if (video->streaming->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
885 for (i = 0; i < UVC_URBS; ++i) {
886 urb = usb_alloc_urb(0, gfp_flags);
888 uvc_uninit_video(video, 1);
892 usb_fill_bulk_urb(urb, video->dev->udev, pipe,
893 video->urb_buffer[i], size, uvc_video_complete,
895 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
896 urb->transfer_dma = video->urb_dma[i];
905 * Initialize isochronous/bulk URBs and allocate transfer buffers.
907 static int uvc_init_video(struct uvc_video_device *video, gfp_t gfp_flags)
909 struct usb_interface *intf = video->streaming->intf;
910 struct usb_host_interface *alts;
911 struct usb_host_endpoint *ep = NULL;
912 int intfnum = video->streaming->intfnum;
913 unsigned int bandwidth, psize, i;
916 video->last_fid = -1;
917 video->bulk.header_size = 0;
918 video->bulk.skip_payload = 0;
919 video->bulk.payload_size = 0;
921 if (intf->num_altsetting > 1) {
922 /* Isochronous endpoint, select the alternate setting. */
923 bandwidth = video->streaming->ctrl.dwMaxPayloadTransferSize;
925 if (bandwidth == 0) {
926 uvc_printk(KERN_WARNING, "device %s requested null "
927 "bandwidth, defaulting to lowest.\n",
932 for (i = 0; i < intf->num_altsetting; ++i) {
933 alts = &intf->altsetting[i];
934 ep = uvc_find_endpoint(alts,
935 video->streaming->header.bEndpointAddress);
939 /* Check if the bandwidth is high enough. */
940 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
941 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
942 if (psize >= bandwidth)
946 if (i >= intf->num_altsetting)
949 if ((ret = usb_set_interface(video->dev->udev, intfnum, i)) < 0)
952 ret = uvc_init_video_isoc(video, ep, gfp_flags);
954 /* Bulk endpoint, proceed to URB initialization. */
955 ep = uvc_find_endpoint(&intf->altsetting[0],
956 video->streaming->header.bEndpointAddress);
960 ret = uvc_init_video_bulk(video, ep, gfp_flags);
966 /* Submit the URBs. */
967 for (i = 0; i < UVC_URBS; ++i) {
968 if ((ret = usb_submit_urb(video->urb[i], gfp_flags)) < 0) {
969 uvc_printk(KERN_ERR, "Failed to submit URB %u "
971 uvc_uninit_video(video, 1);
979 /* --------------------------------------------------------------------------
984 * Stop streaming without disabling the video queue.
986 * To let userspace applications resume without trouble, we must not touch the
987 * video buffers in any way. We mark the device as frozen to make sure the URB
988 * completion handler won't try to cancel the queue when we kill the URBs.
990 int uvc_video_suspend(struct uvc_video_device *video)
992 if (!uvc_queue_streaming(&video->queue))
996 uvc_uninit_video(video, 0);
997 usb_set_interface(video->dev->udev, video->streaming->intfnum, 0);
1002 * Reconfigure the video interface and restart streaming if it was enabled
1005 * If an error occurs, disable the video queue. This will wake all pending
1006 * buffers, making sure userspace applications are notified of the problem
1007 * instead of waiting forever.
1009 int uvc_video_resume(struct uvc_video_device *video)
1015 if ((ret = uvc_commit_video(video, &video->streaming->ctrl)) < 0) {
1016 uvc_queue_enable(&video->queue, 0);
1020 if (!uvc_queue_streaming(&video->queue))
1023 if ((ret = uvc_init_video(video, GFP_NOIO)) < 0)
1024 uvc_queue_enable(&video->queue, 0);
1029 /* ------------------------------------------------------------------------
1034 * Initialize the UVC video device by switching to alternate setting 0 and
1035 * retrieve the default format.
1037 * Some cameras (namely the Fuji Finepix) set the format and frame
1038 * indexes to zero. The UVC standard doesn't clearly make this a spec
1039 * violation, so try to silently fix the values if possible.
1041 * This function is called before registering the device with V4L.
1043 int uvc_video_init(struct uvc_video_device *video)
1045 struct uvc_streaming_control *probe = &video->streaming->ctrl;
1046 struct uvc_format *format = NULL;
1047 struct uvc_frame *frame = NULL;
1051 if (video->streaming->nformats == 0) {
1052 uvc_printk(KERN_INFO, "No supported video formats found.\n");
1056 /* Alternate setting 0 should be the default, yet the XBox Live Vision
1057 * Cam (and possibly other devices) crash or otherwise misbehave if
1058 * they don't receive a SET_INTERFACE request before any other video
1061 usb_set_interface(video->dev->udev, video->streaming->intfnum, 0);
1063 /* Set the streaming probe control with default streaming parameters
1064 * retrieved from the device. Webcams that don't suport GET_DEF
1065 * requests on the probe control will just keep their current streaming
1068 if (uvc_get_video_ctrl(video, probe, 1, GET_DEF) == 0)
1069 uvc_set_video_ctrl(video, probe, 1);
1071 /* Initialize the streaming parameters with the probe control current
1072 * value. This makes sure SET_CUR requests on the streaming commit
1073 * control will always use values retrieved from a successful GET_CUR
1074 * request on the probe control, as required by the UVC specification.
1076 if ((ret = uvc_get_video_ctrl(video, probe, 1, GET_CUR)) < 0)
1079 /* Check if the default format descriptor exists. Use the first
1080 * available format otherwise.
1082 for (i = video->streaming->nformats; i > 0; --i) {
1083 format = &video->streaming->format[i-1];
1084 if (format->index == probe->bFormatIndex)
1088 if (format->nframes == 0) {
1089 uvc_printk(KERN_INFO, "No frame descriptor found for the "
1090 "default format.\n");
1094 /* Zero bFrameIndex might be correct. Stream-based formats (including
1095 * MPEG-2 TS and DV) do not support frames but have a dummy frame
1096 * descriptor with bFrameIndex set to zero. If the default frame
1097 * descriptor is not found, use the first available frame.
1099 for (i = format->nframes; i > 0; --i) {
1100 frame = &format->frame[i-1];
1101 if (frame->bFrameIndex == probe->bFrameIndex)
1105 probe->bFormatIndex = format->index;
1106 probe->bFrameIndex = frame->bFrameIndex;
1108 video->streaming->cur_format = format;
1109 video->streaming->cur_frame = frame;
1110 atomic_set(&video->active, 0);
1112 /* Select the video decoding function */
1113 if (video->streaming->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1114 if (video->dev->quirks & UVC_QUIRK_BUILTIN_ISIGHT)
1115 video->decode = uvc_video_decode_isight;
1116 else if (video->streaming->intf->num_altsetting > 1)
1117 video->decode = uvc_video_decode_isoc;
1119 video->decode = uvc_video_decode_bulk;
1121 if (video->streaming->intf->num_altsetting == 1)
1122 video->decode = uvc_video_encode_bulk;
1124 uvc_printk(KERN_INFO, "Isochronous endpoints are not "
1125 "supported for video output devices.\n");
1134 * Enable or disable the video stream.
1136 int uvc_video_enable(struct uvc_video_device *video, int enable)
1141 uvc_uninit_video(video, 1);
1142 usb_set_interface(video->dev->udev,
1143 video->streaming->intfnum, 0);
1144 uvc_queue_enable(&video->queue, 0);
1148 if ((video->streaming->cur_format->flags & UVC_FMT_FLAG_COMPRESSED) ||
1150 video->queue.flags &= ~UVC_QUEUE_DROP_INCOMPLETE;
1152 video->queue.flags |= UVC_QUEUE_DROP_INCOMPLETE;
1154 if ((ret = uvc_queue_enable(&video->queue, 1)) < 0)
1157 /* Commit the streaming parameters. */
1158 if ((ret = uvc_commit_video(video, &video->streaming->ctrl)) < 0)
1161 return uvc_init_video(video, GFP_KERNEL);