]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/media/video/uvc/uvc_video.c
[media] uvcvideo: Document the struct uvc_xu_control_query query field
[mirror_ubuntu-hirsute-kernel.git] / drivers / media / video / uvc / uvc_video.c
CommitLineData
c0efd232
LP
1/*
2 * uvc_video.c -- USB Video Class driver - Video handling
3 *
11fc5baf
LP
4 * Copyright (C) 2005-2010
5 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
c0efd232
LP
6 *
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.
11 *
12 */
13
14#include <linux/kernel.h>
c0efd232
LP
15#include <linux/list.h>
16#include <linux/module.h>
5a0e3ad6 17#include <linux/slab.h>
c0efd232
LP
18#include <linux/usb.h>
19#include <linux/videodev2.h>
20#include <linux/vmalloc.h>
21#include <linux/wait.h>
60063497 22#include <linux/atomic.h>
c0efd232
LP
23#include <asm/unaligned.h>
24
25#include <media/v4l2-common.h>
26
27#include "uvcvideo.h"
28
29/* ------------------------------------------------------------------------
30 * UVC Controls
31 */
32
33static int __uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
34 __u8 intfnum, __u8 cs, void *data, __u16 size,
35 int timeout)
36{
37 __u8 type = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
38 unsigned int pipe;
c0efd232
LP
39
40 pipe = (query & 0x80) ? usb_rcvctrlpipe(dev->udev, 0)
41 : usb_sndctrlpipe(dev->udev, 0);
42 type |= (query & 0x80) ? USB_DIR_IN : USB_DIR_OUT;
43
44f0079e 44 return usb_control_msg(dev->udev, pipe, query, type, cs << 8,
c0efd232 45 unit << 8 | intfnum, data, size, timeout);
44f0079e
LP
46}
47
707dcd90
LP
48static const char *uvc_query_name(__u8 query)
49{
50 switch (query) {
51 case UVC_SET_CUR:
52 return "SET_CUR";
53 case UVC_GET_CUR:
54 return "GET_CUR";
55 case UVC_GET_MIN:
56 return "GET_MIN";
57 case UVC_GET_MAX:
58 return "GET_MAX";
59 case UVC_GET_RES:
60 return "GET_RES";
61 case UVC_GET_LEN:
62 return "GET_LEN";
63 case UVC_GET_INFO:
64 return "GET_INFO";
65 case UVC_GET_DEF:
66 return "GET_DEF";
67 default:
68 return "<invalid>";
69 }
70}
71
44f0079e
LP
72int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
73 __u8 intfnum, __u8 cs, void *data, __u16 size)
74{
75 int ret;
c0efd232 76
44f0079e
LP
77 ret = __uvc_query_ctrl(dev, query, unit, intfnum, cs, data, size,
78 UVC_CTRL_CONTROL_TIMEOUT);
c0efd232 79 if (ret != size) {
707dcd90
LP
80 uvc_printk(KERN_ERR, "Failed to query (%s) UVC control %u on "
81 "unit %u: %d (exp. %u).\n", uvc_query_name(query), cs,
82 unit, ret, size);
c0efd232
LP
83 return -EIO;
84 }
85
86 return 0;
87}
88
35f02a68 89static void uvc_fixup_video_ctrl(struct uvc_streaming *stream,
c0efd232
LP
90 struct uvc_streaming_control *ctrl)
91{
38a66824 92 struct uvc_format *format = NULL;
078f8947
LP
93 struct uvc_frame *frame = NULL;
94 unsigned int i;
c0efd232 95
38a66824
SL
96 for (i = 0; i < stream->nformats; ++i) {
97 if (stream->format[i].index == ctrl->bFormatIndex) {
98 format = &stream->format[i];
99 break;
100 }
101 }
c0efd232 102
38a66824
SL
103 if (format == NULL)
104 return;
c0efd232 105
078f8947
LP
106 for (i = 0; i < format->nframes; ++i) {
107 if (format->frame[i].bFrameIndex == ctrl->bFrameIndex) {
108 frame = &format->frame[i];
109 break;
110 }
111 }
c0efd232 112
078f8947
LP
113 if (frame == NULL)
114 return;
c0efd232
LP
115
116 if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) ||
117 (ctrl->dwMaxVideoFrameSize == 0 &&
35f02a68 118 stream->dev->uvc_version < 0x0110))
c0efd232
LP
119 ctrl->dwMaxVideoFrameSize =
120 frame->dwMaxVideoFrameBufferSize;
50144aee 121
a2e35af6
LP
122 if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) &&
123 stream->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH &&
35f02a68 124 stream->intf->num_altsetting > 1) {
50144aee
LP
125 u32 interval;
126 u32 bandwidth;
127
128 interval = (ctrl->dwFrameInterval > 100000)
129 ? ctrl->dwFrameInterval
130 : frame->dwFrameInterval[0];
131
132 /* Compute a bandwidth estimation by multiplying the frame
133 * size by the number of video frames per second, divide the
134 * result by the number of USB frames (or micro-frames for
135 * high-speed devices) per second and add the UVC header size
136 * (assumed to be 12 bytes long).
137 */
138 bandwidth = frame->wWidth * frame->wHeight / 8 * format->bpp;
139 bandwidth *= 10000000 / interval + 1;
140 bandwidth /= 1000;
35f02a68 141 if (stream->dev->udev->speed == USB_SPEED_HIGH)
50144aee
LP
142 bandwidth /= 8;
143 bandwidth += 12;
144
9bb7262d
LP
145 /* The bandwidth estimate is too low for many cameras. Don't use
146 * maximum packet sizes lower than 1024 bytes to try and work
147 * around the problem. According to measurements done on two
148 * different camera models, the value is high enough to get most
149 * resolutions working while not preventing two simultaneous
150 * VGA streams at 15 fps.
151 */
152 bandwidth = max_t(u32, bandwidth, 1024);
153
50144aee
LP
154 ctrl->dwMaxPayloadTransferSize = bandwidth;
155 }
c0efd232
LP
156}
157
35f02a68 158static int uvc_get_video_ctrl(struct uvc_streaming *stream,
c0efd232
LP
159 struct uvc_streaming_control *ctrl, int probe, __u8 query)
160{
04793dd0
LP
161 __u8 *data;
162 __u16 size;
c0efd232
LP
163 int ret;
164
35f02a68 165 size = stream->dev->uvc_version >= 0x0110 ? 34 : 26;
d2be7643
JL
166 if ((stream->dev->quirks & UVC_QUIRK_PROBE_DEF) &&
167 query == UVC_GET_DEF)
168 return -EIO;
169
04793dd0
LP
170 data = kmalloc(size, GFP_KERNEL);
171 if (data == NULL)
172 return -ENOMEM;
173
35f02a68 174 ret = __uvc_query_ctrl(stream->dev, query, 0, stream->intfnum,
b482d923 175 probe ? UVC_VS_PROBE_CONTROL : UVC_VS_COMMIT_CONTROL, data,
b232a012 176 size, uvc_timeout_param);
44f0079e 177
b482d923 178 if ((query == UVC_GET_MIN || query == UVC_GET_MAX) && ret == 2) {
44f0079e
LP
179 /* Some cameras, mostly based on Bison Electronics chipsets,
180 * answer a GET_MIN or GET_MAX request with the wCompQuality
181 * field only.
182 */
35f02a68 183 uvc_warn_once(stream->dev, UVC_WARN_MINMAX, "UVC non "
44f0079e
LP
184 "compliance - GET_MIN/MAX(PROBE) incorrectly "
185 "supported. Enabling workaround.\n");
ddb0b34f 186 memset(ctrl, 0, sizeof *ctrl);
44f0079e
LP
187 ctrl->wCompQuality = le16_to_cpup((__le16 *)data);
188 ret = 0;
04793dd0 189 goto out;
b482d923 190 } else if (query == UVC_GET_DEF && probe == 1 && ret != size) {
44f0079e
LP
191 /* Many cameras don't support the GET_DEF request on their
192 * video probe control. Warn once and return, the caller will
193 * fall back to GET_CUR.
194 */
35f02a68 195 uvc_warn_once(stream->dev, UVC_WARN_PROBE_DEF, "UVC non "
44f0079e
LP
196 "compliance - GET_DEF(PROBE) not supported. "
197 "Enabling workaround.\n");
198 ret = -EIO;
199 goto out;
200 } else if (ret != size) {
201 uvc_printk(KERN_ERR, "Failed to query (%u) UVC %s control : "
202 "%d (exp. %u).\n", query, probe ? "probe" : "commit",
203 ret, size);
204 ret = -EIO;
205 goto out;
206 }
c0efd232
LP
207
208 ctrl->bmHint = le16_to_cpup((__le16 *)&data[0]);
209 ctrl->bFormatIndex = data[2];
210 ctrl->bFrameIndex = data[3];
211 ctrl->dwFrameInterval = le32_to_cpup((__le32 *)&data[4]);
212 ctrl->wKeyFrameRate = le16_to_cpup((__le16 *)&data[8]);
213 ctrl->wPFrameRate = le16_to_cpup((__le16 *)&data[10]);
214 ctrl->wCompQuality = le16_to_cpup((__le16 *)&data[12]);
215 ctrl->wCompWindowSize = le16_to_cpup((__le16 *)&data[14]);
216 ctrl->wDelay = le16_to_cpup((__le16 *)&data[16]);
4d3939f6
LP
217 ctrl->dwMaxVideoFrameSize = get_unaligned_le32(&data[18]);
218 ctrl->dwMaxPayloadTransferSize = get_unaligned_le32(&data[22]);
c0efd232
LP
219
220 if (size == 34) {
4d3939f6 221 ctrl->dwClockFrequency = get_unaligned_le32(&data[26]);
c0efd232
LP
222 ctrl->bmFramingInfo = data[30];
223 ctrl->bPreferedVersion = data[31];
224 ctrl->bMinVersion = data[32];
225 ctrl->bMaxVersion = data[33];
226 } else {
35f02a68 227 ctrl->dwClockFrequency = stream->dev->clock_frequency;
c0efd232
LP
228 ctrl->bmFramingInfo = 0;
229 ctrl->bPreferedVersion = 0;
230 ctrl->bMinVersion = 0;
231 ctrl->bMaxVersion = 0;
232 }
233
50144aee
LP
234 /* Some broken devices return null or wrong dwMaxVideoFrameSize and
235 * dwMaxPayloadTransferSize fields. Try to get the value from the
236 * format and frame descriptors.
c0efd232 237 */
35f02a68 238 uvc_fixup_video_ctrl(stream, ctrl);
44f0079e 239 ret = 0;
c0efd232 240
04793dd0
LP
241out:
242 kfree(data);
243 return ret;
c0efd232
LP
244}
245
35f02a68 246static int uvc_set_video_ctrl(struct uvc_streaming *stream,
c0efd232
LP
247 struct uvc_streaming_control *ctrl, int probe)
248{
04793dd0
LP
249 __u8 *data;
250 __u16 size;
251 int ret;
c0efd232 252
35f02a68 253 size = stream->dev->uvc_version >= 0x0110 ? 34 : 26;
04793dd0
LP
254 data = kzalloc(size, GFP_KERNEL);
255 if (data == NULL)
256 return -ENOMEM;
c0efd232
LP
257
258 *(__le16 *)&data[0] = cpu_to_le16(ctrl->bmHint);
259 data[2] = ctrl->bFormatIndex;
260 data[3] = ctrl->bFrameIndex;
261 *(__le32 *)&data[4] = cpu_to_le32(ctrl->dwFrameInterval);
262 *(__le16 *)&data[8] = cpu_to_le16(ctrl->wKeyFrameRate);
263 *(__le16 *)&data[10] = cpu_to_le16(ctrl->wPFrameRate);
264 *(__le16 *)&data[12] = cpu_to_le16(ctrl->wCompQuality);
265 *(__le16 *)&data[14] = cpu_to_le16(ctrl->wCompWindowSize);
266 *(__le16 *)&data[16] = cpu_to_le16(ctrl->wDelay);
4d3939f6
LP
267 put_unaligned_le32(ctrl->dwMaxVideoFrameSize, &data[18]);
268 put_unaligned_le32(ctrl->dwMaxPayloadTransferSize, &data[22]);
c0efd232
LP
269
270 if (size == 34) {
4d3939f6 271 put_unaligned_le32(ctrl->dwClockFrequency, &data[26]);
c0efd232
LP
272 data[30] = ctrl->bmFramingInfo;
273 data[31] = ctrl->bPreferedVersion;
274 data[32] = ctrl->bMinVersion;
275 data[33] = ctrl->bMaxVersion;
276 }
277
35f02a68 278 ret = __uvc_query_ctrl(stream->dev, UVC_SET_CUR, 0, stream->intfnum,
b482d923 279 probe ? UVC_VS_PROBE_CONTROL : UVC_VS_COMMIT_CONTROL, data,
b232a012 280 size, uvc_timeout_param);
44f0079e
LP
281 if (ret != size) {
282 uvc_printk(KERN_ERR, "Failed to set UVC %s control : "
283 "%d (exp. %u).\n", probe ? "probe" : "commit",
284 ret, size);
285 ret = -EIO;
286 }
04793dd0
LP
287
288 kfree(data);
289 return ret;
c0efd232
LP
290}
291
35f02a68 292int uvc_probe_video(struct uvc_streaming *stream,
c0efd232
LP
293 struct uvc_streaming_control *probe)
294{
295 struct uvc_streaming_control probe_min, probe_max;
296 __u16 bandwidth;
297 unsigned int i;
298 int ret;
299
c0efd232
LP
300 /* Perform probing. The device should adjust the requested values
301 * according to its capabilities. However, some devices, namely the
302 * first generation UVC Logitech webcams, don't implement the Video
303 * Probe control properly, and just return the needed bandwidth. For
304 * that reason, if the needed bandwidth exceeds the maximum available
305 * bandwidth, try to lower the quality.
306 */
35f02a68
LP
307 ret = uvc_set_video_ctrl(stream, probe, 1);
308 if (ret < 0)
c0efd232
LP
309 goto done;
310
311 /* Get the minimum and maximum values for compression settings. */
35f02a68
LP
312 if (!(stream->dev->quirks & UVC_QUIRK_PROBE_MINMAX)) {
313 ret = uvc_get_video_ctrl(stream, &probe_min, 1, UVC_GET_MIN);
c0efd232
LP
314 if (ret < 0)
315 goto done;
35f02a68 316 ret = uvc_get_video_ctrl(stream, &probe_max, 1, UVC_GET_MAX);
c0efd232
LP
317 if (ret < 0)
318 goto done;
319
320 probe->wCompQuality = probe_max.wCompQuality;
321 }
322
323 for (i = 0; i < 2; ++i) {
35f02a68 324 ret = uvc_set_video_ctrl(stream, probe, 1);
b482d923
LP
325 if (ret < 0)
326 goto done;
35f02a68 327 ret = uvc_get_video_ctrl(stream, probe, 1, UVC_GET_CUR);
b482d923 328 if (ret < 0)
c0efd232
LP
329 goto done;
330
35f02a68 331 if (stream->intf->num_altsetting == 1)
c0efd232
LP
332 break;
333
334 bandwidth = probe->dwMaxPayloadTransferSize;
35f02a68 335 if (bandwidth <= stream->maxpsize)
c0efd232
LP
336 break;
337
35f02a68 338 if (stream->dev->quirks & UVC_QUIRK_PROBE_MINMAX) {
c0efd232
LP
339 ret = -ENOSPC;
340 goto done;
341 }
342
343 /* TODO: negotiate compression parameters */
344 probe->wKeyFrameRate = probe_min.wKeyFrameRate;
345 probe->wPFrameRate = probe_min.wPFrameRate;
346 probe->wCompQuality = probe_max.wCompQuality;
347 probe->wCompWindowSize = probe_min.wCompWindowSize;
348 }
349
350done:
c0efd232
LP
351 return ret;
352}
353
0c6a3b26
LP
354static int uvc_commit_video(struct uvc_streaming *stream,
355 struct uvc_streaming_control *probe)
44f0079e 356{
35f02a68 357 return uvc_set_video_ctrl(stream, probe, 0);
44f0079e
LP
358}
359
66847ef0
LP
360/* -----------------------------------------------------------------------------
361 * Clocks and timestamps
362 */
363
364static void
365uvc_video_clock_decode(struct uvc_streaming *stream, struct uvc_buffer *buf,
366 const __u8 *data, int len)
367{
368 struct uvc_clock_sample *sample;
369 unsigned int header_size;
370 bool has_pts = false;
371 bool has_scr = false;
372 unsigned long flags;
373 struct timespec ts;
374 u16 host_sof;
375 u16 dev_sof;
376
377 switch (data[1] & (UVC_STREAM_PTS | UVC_STREAM_SCR)) {
378 case UVC_STREAM_PTS | UVC_STREAM_SCR:
379 header_size = 12;
380 has_pts = true;
381 has_scr = true;
382 break;
383 case UVC_STREAM_PTS:
384 header_size = 6;
385 has_pts = true;
386 break;
387 case UVC_STREAM_SCR:
388 header_size = 8;
389 has_scr = true;
390 break;
391 default:
392 header_size = 2;
393 break;
394 }
395
396 /* Check for invalid headers. */
397 if (len < header_size)
398 return;
399
400 /* Extract the timestamps:
401 *
402 * - store the frame PTS in the buffer structure
403 * - if the SCR field is present, retrieve the host SOF counter and
404 * kernel timestamps and store them with the SCR STC and SOF fields
405 * in the ring buffer
406 */
407 if (has_pts && buf != NULL)
408 buf->pts = get_unaligned_le32(&data[2]);
409
410 if (!has_scr)
411 return;
412
413 /* To limit the amount of data, drop SCRs with an SOF identical to the
414 * previous one.
415 */
416 dev_sof = get_unaligned_le16(&data[header_size - 2]);
417 if (dev_sof == stream->clock.last_sof)
418 return;
419
420 stream->clock.last_sof = dev_sof;
421
422 host_sof = usb_get_current_frame_number(stream->dev->udev);
423 ktime_get_ts(&ts);
424
425 /* The UVC specification allows device implementations that can't obtain
426 * the USB frame number to keep their own frame counters as long as they
427 * match the size and frequency of the frame number associated with USB
428 * SOF tokens. The SOF values sent by such devices differ from the USB
429 * SOF tokens by a fixed offset that needs to be estimated and accounted
430 * for to make timestamp recovery as accurate as possible.
431 *
432 * The offset is estimated the first time a device SOF value is received
433 * as the difference between the host and device SOF values. As the two
434 * SOF values can differ slightly due to transmission delays, consider
435 * that the offset is null if the difference is not higher than 10 ms
436 * (negative differences can not happen and are thus considered as an
437 * offset). The video commit control wDelay field should be used to
438 * compute a dynamic threshold instead of using a fixed 10 ms value, but
439 * devices don't report reliable wDelay values.
440 *
441 * See uvc_video_clock_host_sof() for an explanation regarding why only
442 * the 8 LSBs of the delta are kept.
443 */
444 if (stream->clock.sof_offset == (u16)-1) {
445 u16 delta_sof = (host_sof - dev_sof) & 255;
446 if (delta_sof >= 10)
447 stream->clock.sof_offset = delta_sof;
448 else
449 stream->clock.sof_offset = 0;
450 }
451
452 dev_sof = (dev_sof + stream->clock.sof_offset) & 2047;
453
454 spin_lock_irqsave(&stream->clock.lock, flags);
455
456 sample = &stream->clock.samples[stream->clock.head];
457 sample->dev_stc = get_unaligned_le32(&data[header_size - 6]);
458 sample->dev_sof = dev_sof;
459 sample->host_sof = host_sof;
460 sample->host_ts = ts;
461
462 /* Update the sliding window head and count. */
463 stream->clock.head = (stream->clock.head + 1) % stream->clock.size;
464
465 if (stream->clock.count < stream->clock.size)
466 stream->clock.count++;
467
468 spin_unlock_irqrestore(&stream->clock.lock, flags);
469}
470
ed0ee0ce 471static void uvc_video_clock_reset(struct uvc_streaming *stream)
66847ef0
LP
472{
473 struct uvc_clock *clock = &stream->clock;
474
66847ef0
LP
475 clock->head = 0;
476 clock->count = 0;
66847ef0
LP
477 clock->last_sof = -1;
478 clock->sof_offset = -1;
ed0ee0ce
LP
479}
480
481static int uvc_video_clock_init(struct uvc_streaming *stream)
482{
483 struct uvc_clock *clock = &stream->clock;
484
485 spin_lock_init(&clock->lock);
486 clock->size = 32;
66847ef0
LP
487
488 clock->samples = kmalloc(clock->size * sizeof(*clock->samples),
489 GFP_KERNEL);
490 if (clock->samples == NULL)
491 return -ENOMEM;
492
ed0ee0ce
LP
493 uvc_video_clock_reset(stream);
494
66847ef0
LP
495 return 0;
496}
497
498static void uvc_video_clock_cleanup(struct uvc_streaming *stream)
499{
500 kfree(stream->clock.samples);
501 stream->clock.samples = NULL;
502}
503
504/*
505 * uvc_video_clock_host_sof - Return the host SOF value for a clock sample
506 *
507 * Host SOF counters reported by usb_get_current_frame_number() usually don't
508 * cover the whole 11-bits SOF range (0-2047) but are limited to the HCI frame
509 * schedule window. They can be limited to 8, 9 or 10 bits depending on the host
510 * controller and its configuration.
511 *
512 * We thus need to recover the SOF value corresponding to the host frame number.
513 * As the device and host frame numbers are sampled in a short interval, the
514 * difference between their values should be equal to a small delta plus an
515 * integer multiple of 256 caused by the host frame number limited precision.
516 *
517 * To obtain the recovered host SOF value, compute the small delta by masking
518 * the high bits of the host frame counter and device SOF difference and add it
519 * to the device SOF value.
520 */
521static u16 uvc_video_clock_host_sof(const struct uvc_clock_sample *sample)
522{
523 /* The delta value can be negative. */
524 s8 delta_sof;
525
526 delta_sof = (sample->host_sof - sample->dev_sof) & 255;
527
528 return (sample->dev_sof + delta_sof) & 2047;
529}
530
531/*
532 * uvc_video_clock_update - Update the buffer timestamp
533 *
534 * This function converts the buffer PTS timestamp to the host clock domain by
535 * going through the USB SOF clock domain and stores the result in the V4L2
536 * buffer timestamp field.
537 *
538 * The relationship between the device clock and the host clock isn't known.
539 * However, the device and the host share the common USB SOF clock which can be
540 * used to recover that relationship.
541 *
542 * The relationship between the device clock and the USB SOF clock is considered
543 * to be linear over the clock samples sliding window and is given by
544 *
545 * SOF = m * PTS + p
546 *
547 * Several methods to compute the slope (m) and intercept (p) can be used. As
548 * the clock drift should be small compared to the sliding window size, we
549 * assume that the line that goes through the points at both ends of the window
550 * is a good approximation. Naming those points P1 and P2, we get
551 *
552 * SOF = (SOF2 - SOF1) / (STC2 - STC1) * PTS
553 * + (SOF1 * STC2 - SOF2 * STC1) / (STC2 - STC1)
554 *
555 * or
556 *
557 * SOF = ((SOF2 - SOF1) * PTS + SOF1 * STC2 - SOF2 * STC1) / (STC2 - STC1) (1)
558 *
559 * to avoid loosing precision in the division. Similarly, the host timestamp is
560 * computed with
561 *
562 * TS = ((TS2 - TS1) * PTS + TS1 * SOF2 - TS2 * SOF1) / (SOF2 - SOF1) (2)
563 *
564 * SOF values are coded on 11 bits by USB. We extend their precision with 16
565 * decimal bits, leading to a 11.16 coding.
566 *
567 * TODO: To avoid surprises with device clock values, PTS/STC timestamps should
568 * be normalized using the nominal device clock frequency reported through the
569 * UVC descriptors.
570 *
571 * Both the PTS/STC and SOF counters roll over, after a fixed but device
572 * specific amount of time for PTS/STC and after 2048ms for SOF. As long as the
573 * sliding window size is smaller than the rollover period, differences computed
574 * on unsigned integers will produce the correct result. However, the p term in
575 * the linear relations will be miscomputed.
576 *
577 * To fix the issue, we subtract a constant from the PTS and STC values to bring
578 * PTS to half the 32 bit STC range. The sliding window STC values then fit into
579 * the 32 bit range without any rollover.
580 *
581 * Similarly, we add 2048 to the device SOF values to make sure that the SOF
582 * computed by (1) will never be smaller than 0. This offset is then compensated
583 * by adding 2048 to the SOF values used in (2). However, this doesn't prevent
584 * rollovers between (1) and (2): the SOF value computed by (1) can be slightly
585 * lower than 4096, and the host SOF counters can have rolled over to 2048. This
586 * case is handled by subtracting 2048 from the SOF value if it exceeds the host
587 * SOF value at the end of the sliding window.
588 *
589 * Finally we subtract a constant from the host timestamps to bring the first
590 * timestamp of the sliding window to 1s.
591 */
592void uvc_video_clock_update(struct uvc_streaming *stream,
593 struct v4l2_buffer *v4l2_buf,
594 struct uvc_buffer *buf)
595{
596 struct uvc_clock *clock = &stream->clock;
597 struct uvc_clock_sample *first;
598 struct uvc_clock_sample *last;
599 unsigned long flags;
600 struct timespec ts;
601 u32 delta_stc;
602 u32 y1, y2;
603 u32 x1, x2;
604 u32 mean;
605 u32 sof;
606 u32 div;
607 u32 rem;
608 u64 y;
609
610 spin_lock_irqsave(&clock->lock, flags);
611
612 if (clock->count < clock->size)
613 goto done;
614
615 first = &clock->samples[clock->head];
616 last = &clock->samples[(clock->head - 1) % clock->size];
617
618 /* First step, PTS to SOF conversion. */
619 delta_stc = buf->pts - (1UL << 31);
620 x1 = first->dev_stc - delta_stc;
621 x2 = last->dev_stc - delta_stc;
8e57dec0
LP
622 if (x1 == x2)
623 goto done;
624
66847ef0
LP
625 y1 = (first->dev_sof + 2048) << 16;
626 y2 = (last->dev_sof + 2048) << 16;
66847ef0
LP
627 if (y2 < y1)
628 y2 += 2048 << 16;
629
630 y = (u64)(y2 - y1) * (1ULL << 31) + (u64)y1 * (u64)x2
631 - (u64)y2 * (u64)x1;
632 y = div_u64(y, x2 - x1);
633
634 sof = y;
635
636 uvc_trace(UVC_TRACE_CLOCK, "%s: PTS %u y %llu.%06llu SOF %u.%06llu "
637 "(x1 %u x2 %u y1 %u y2 %u SOF offset %u)\n",
638 stream->dev->name, buf->pts,
639 y >> 16, div_u64((y & 0xffff) * 1000000, 65536),
640 sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536),
641 x1, x2, y1, y2, clock->sof_offset);
642
643 /* Second step, SOF to host clock conversion. */
66847ef0
LP
644 x1 = (uvc_video_clock_host_sof(first) + 2048) << 16;
645 x2 = (uvc_video_clock_host_sof(last) + 2048) << 16;
66847ef0
LP
646 if (x2 < x1)
647 x2 += 2048 << 16;
8e57dec0
LP
648 if (x1 == x2)
649 goto done;
650
651 ts = timespec_sub(last->host_ts, first->host_ts);
652 y1 = NSEC_PER_SEC;
653 y2 = (ts.tv_sec + 1) * NSEC_PER_SEC + ts.tv_nsec;
66847ef0
LP
654
655 /* Interpolated and host SOF timestamps can wrap around at slightly
656 * different times. Handle this by adding or removing 2048 to or from
657 * the computed SOF value to keep it close to the SOF samples mean
658 * value.
659 */
660 mean = (x1 + x2) / 2;
661 if (mean - (1024 << 16) > sof)
662 sof += 2048 << 16;
663 else if (sof > mean + (1024 << 16))
664 sof -= 2048 << 16;
665
666 y = (u64)(y2 - y1) * (u64)sof + (u64)y1 * (u64)x2
667 - (u64)y2 * (u64)x1;
668 y = div_u64(y, x2 - x1);
669
670 div = div_u64_rem(y, NSEC_PER_SEC, &rem);
671 ts.tv_sec = first->host_ts.tv_sec - 1 + div;
672 ts.tv_nsec = first->host_ts.tv_nsec + rem;
673 if (ts.tv_nsec >= NSEC_PER_SEC) {
674 ts.tv_sec++;
675 ts.tv_nsec -= NSEC_PER_SEC;
676 }
677
678 uvc_trace(UVC_TRACE_CLOCK, "%s: SOF %u.%06llu y %llu ts %lu.%06lu "
679 "buf ts %lu.%06lu (x1 %u/%u/%u x2 %u/%u/%u y1 %u y2 %u)\n",
680 stream->dev->name,
681 sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536),
682 y, ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC,
683 v4l2_buf->timestamp.tv_sec, v4l2_buf->timestamp.tv_usec,
684 x1, first->host_sof, first->dev_sof,
685 x2, last->host_sof, last->dev_sof, y1, y2);
686
687 /* Update the V4L2 buffer. */
688 v4l2_buf->timestamp.tv_sec = ts.tv_sec;
689 v4l2_buf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
690
691done:
692 spin_unlock_irqrestore(&stream->clock.lock, flags);
693}
694
7bc5edb0
OR
695/* ------------------------------------------------------------------------
696 * Stream statistics
697 */
698
699static void uvc_video_stats_decode(struct uvc_streaming *stream,
700 const __u8 *data, int len)
701{
702 unsigned int header_size;
25738cbd
LP
703 bool has_pts = false;
704 bool has_scr = false;
705 u16 uninitialized_var(scr_sof);
706 u32 uninitialized_var(scr_stc);
707 u32 uninitialized_var(pts);
7bc5edb0
OR
708
709 if (stream->stats.stream.nb_frames == 0 &&
710 stream->stats.frame.nb_packets == 0)
711 ktime_get_ts(&stream->stats.stream.start_ts);
712
713 switch (data[1] & (UVC_STREAM_PTS | UVC_STREAM_SCR)) {
714 case UVC_STREAM_PTS | UVC_STREAM_SCR:
715 header_size = 12;
25738cbd
LP
716 has_pts = true;
717 has_scr = true;
7bc5edb0
OR
718 break;
719 case UVC_STREAM_PTS:
720 header_size = 6;
25738cbd 721 has_pts = true;
7bc5edb0
OR
722 break;
723 case UVC_STREAM_SCR:
724 header_size = 8;
25738cbd 725 has_scr = true;
7bc5edb0
OR
726 break;
727 default:
728 header_size = 2;
729 break;
730 }
731
732 /* Check for invalid headers. */
733 if (len < header_size || data[0] < header_size) {
734 stream->stats.frame.nb_invalid++;
735 return;
736 }
737
25738cbd
LP
738 /* Extract the timestamps. */
739 if (has_pts)
740 pts = get_unaligned_le32(&data[2]);
741
742 if (has_scr) {
743 scr_stc = get_unaligned_le32(&data[header_size - 6]);
744 scr_sof = get_unaligned_le16(&data[header_size - 2]);
745 }
746
747 /* Is PTS constant through the whole frame ? */
748 if (has_pts && stream->stats.frame.nb_pts) {
749 if (stream->stats.frame.pts != pts) {
750 stream->stats.frame.nb_pts_diffs++;
751 stream->stats.frame.last_pts_diff =
752 stream->stats.frame.nb_packets;
753 }
754 }
755
756 if (has_pts) {
757 stream->stats.frame.nb_pts++;
758 stream->stats.frame.pts = pts;
759 }
760
761 /* Do all frames have a PTS in their first non-empty packet, or before
762 * their first empty packet ?
763 */
764 if (stream->stats.frame.size == 0) {
765 if (len > header_size)
766 stream->stats.frame.has_initial_pts = has_pts;
767 if (len == header_size && has_pts)
768 stream->stats.frame.has_early_pts = true;
769 }
770
771 /* Do the SCR.STC and SCR.SOF fields vary through the frame ? */
772 if (has_scr && stream->stats.frame.nb_scr) {
773 if (stream->stats.frame.scr_stc != scr_stc)
774 stream->stats.frame.nb_scr_diffs++;
775 }
776
777 if (has_scr) {
778 /* Expand the SOF counter to 32 bits and store its value. */
779 if (stream->stats.stream.nb_frames > 0 ||
780 stream->stats.frame.nb_scr > 0)
781 stream->stats.stream.scr_sof_count +=
782 (scr_sof - stream->stats.stream.scr_sof) % 2048;
783 stream->stats.stream.scr_sof = scr_sof;
784
785 stream->stats.frame.nb_scr++;
786 stream->stats.frame.scr_stc = scr_stc;
787 stream->stats.frame.scr_sof = scr_sof;
788
789 if (scr_sof < stream->stats.stream.min_sof)
790 stream->stats.stream.min_sof = scr_sof;
791 if (scr_sof > stream->stats.stream.max_sof)
792 stream->stats.stream.max_sof = scr_sof;
793 }
794
7bc5edb0
OR
795 /* Record the first non-empty packet number. */
796 if (stream->stats.frame.size == 0 && len > header_size)
797 stream->stats.frame.first_data = stream->stats.frame.nb_packets;
798
799 /* Update the frame size. */
800 stream->stats.frame.size += len - header_size;
801
802 /* Update the packets counters. */
803 stream->stats.frame.nb_packets++;
804 if (len > header_size)
805 stream->stats.frame.nb_empty++;
806
807 if (data[1] & UVC_STREAM_ERR)
808 stream->stats.frame.nb_errors++;
809}
810
811static void uvc_video_stats_update(struct uvc_streaming *stream)
812{
813 struct uvc_stats_frame *frame = &stream->stats.frame;
814
25738cbd
LP
815 uvc_trace(UVC_TRACE_STATS, "frame %u stats: %u/%u/%u packets, "
816 "%u/%u/%u pts (%searly %sinitial), %u/%u scr, "
817 "last pts/stc/sof %u/%u/%u\n",
7bc5edb0 818 stream->sequence, frame->first_data,
25738cbd
LP
819 frame->nb_packets - frame->nb_empty, frame->nb_packets,
820 frame->nb_pts_diffs, frame->last_pts_diff, frame->nb_pts,
821 frame->has_early_pts ? "" : "!",
822 frame->has_initial_pts ? "" : "!",
823 frame->nb_scr_diffs, frame->nb_scr,
824 frame->pts, frame->scr_stc, frame->scr_sof);
7bc5edb0
OR
825
826 stream->stats.stream.nb_frames++;
827 stream->stats.stream.nb_packets += stream->stats.frame.nb_packets;
828 stream->stats.stream.nb_empty += stream->stats.frame.nb_empty;
829 stream->stats.stream.nb_errors += stream->stats.frame.nb_errors;
830 stream->stats.stream.nb_invalid += stream->stats.frame.nb_invalid;
831
25738cbd
LP
832 if (frame->has_early_pts)
833 stream->stats.stream.nb_pts_early++;
834 if (frame->has_initial_pts)
835 stream->stats.stream.nb_pts_initial++;
836 if (frame->last_pts_diff <= frame->first_data)
837 stream->stats.stream.nb_pts_constant++;
838 if (frame->nb_scr >= frame->nb_packets - frame->nb_empty)
839 stream->stats.stream.nb_scr_count_ok++;
840 if (frame->nb_scr_diffs + 1 == frame->nb_scr)
841 stream->stats.stream.nb_scr_diffs_ok++;
842
7bc5edb0
OR
843 memset(&stream->stats.frame, 0, sizeof(stream->stats.frame));
844}
845
846size_t uvc_video_stats_dump(struct uvc_streaming *stream, char *buf,
847 size_t size)
848{
25738cbd
LP
849 unsigned int scr_sof_freq;
850 unsigned int duration;
851 struct timespec ts;
7bc5edb0
OR
852 size_t count = 0;
853
25738cbd
LP
854 ts.tv_sec = stream->stats.stream.stop_ts.tv_sec
855 - stream->stats.stream.start_ts.tv_sec;
856 ts.tv_nsec = stream->stats.stream.stop_ts.tv_nsec
857 - stream->stats.stream.start_ts.tv_nsec;
858 if (ts.tv_nsec < 0) {
859 ts.tv_sec--;
860 ts.tv_nsec += 1000000000;
861 }
862
863 /* Compute the SCR.SOF frequency estimate. At the nominal 1kHz SOF
864 * frequency this will not overflow before more than 1h.
865 */
866 duration = ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
867 if (duration != 0)
868 scr_sof_freq = stream->stats.stream.scr_sof_count * 1000
869 / duration;
870 else
871 scr_sof_freq = 0;
872
7bc5edb0
OR
873 count += scnprintf(buf + count, size - count,
874 "frames: %u\npackets: %u\nempty: %u\n"
875 "errors: %u\ninvalid: %u\n",
876 stream->stats.stream.nb_frames,
877 stream->stats.stream.nb_packets,
878 stream->stats.stream.nb_empty,
879 stream->stats.stream.nb_errors,
880 stream->stats.stream.nb_invalid);
25738cbd
LP
881 count += scnprintf(buf + count, size - count,
882 "pts: %u early, %u initial, %u ok\n",
883 stream->stats.stream.nb_pts_early,
884 stream->stats.stream.nb_pts_initial,
885 stream->stats.stream.nb_pts_constant);
886 count += scnprintf(buf + count, size - count,
887 "scr: %u count ok, %u diff ok\n",
888 stream->stats.stream.nb_scr_count_ok,
889 stream->stats.stream.nb_scr_diffs_ok);
890 count += scnprintf(buf + count, size - count,
891 "sof: %u <= sof <= %u, freq %u.%03u kHz\n",
892 stream->stats.stream.min_sof,
893 stream->stats.stream.max_sof,
894 scr_sof_freq / 1000, scr_sof_freq % 1000);
7bc5edb0
OR
895
896 return count;
897}
898
899static void uvc_video_stats_start(struct uvc_streaming *stream)
900{
901 memset(&stream->stats, 0, sizeof(stream->stats));
25738cbd 902 stream->stats.stream.min_sof = 2048;
7bc5edb0
OR
903}
904
905static void uvc_video_stats_stop(struct uvc_streaming *stream)
906{
907 ktime_get_ts(&stream->stats.stream.stop_ts);
908}
909
c0efd232
LP
910/* ------------------------------------------------------------------------
911 * Video codecs
912 */
913
c0efd232
LP
914/* Video payload decoding is handled by uvc_video_decode_start(),
915 * uvc_video_decode_data() and uvc_video_decode_end().
916 *
917 * uvc_video_decode_start is called with URB data at the start of a bulk or
918 * isochronous payload. It processes header data and returns the header size
919 * in bytes if successful. If an error occurs, it returns a negative error
920 * code. The following error codes have special meanings.
921 *
922 * - EAGAIN informs the caller that the current video buffer should be marked
923 * as done, and that the function should be called again with the same data
924 * and a new video buffer. This is used when end of frame conditions can be
925 * reliably detected at the beginning of the next frame only.
926 *
927 * If an error other than -EAGAIN is returned, the caller will drop the current
928 * payload. No call to uvc_video_decode_data and uvc_video_decode_end will be
929 * made until the next payload. -ENODATA can be used to drop the current
930 * payload if no other error code is appropriate.
931 *
932 * uvc_video_decode_data is called for every URB with URB data. It copies the
933 * data to the video buffer.
934 *
935 * uvc_video_decode_end is called with header data at the end of a bulk or
936 * isochronous payload. It performs any additional header data processing and
25985edc 937 * returns 0 or a negative error code if an error occurred. As header data have
c0efd232
LP
938 * already been processed by uvc_video_decode_start, this functions isn't
939 * required to perform sanity checks a second time.
940 *
25985edc 941 * For isochronous transfers where a payload is always transferred in a single
c0efd232
LP
942 * URB, the three functions will be called in a row.
943 *
944 * To let the decoder process header data and update its internal state even
945 * when no video buffer is available, uvc_video_decode_start must be prepared
946 * to be called with a NULL buf parameter. uvc_video_decode_data and
947 * uvc_video_decode_end will never be called with a NULL buffer.
948 */
35f02a68 949static int uvc_video_decode_start(struct uvc_streaming *stream,
c0efd232
LP
950 struct uvc_buffer *buf, const __u8 *data, int len)
951{
952 __u8 fid;
953
954 /* Sanity checks:
955 * - packet must be at least 2 bytes long
956 * - bHeaderLength value must be at least 2 bytes (see above)
957 * - bHeaderLength value can't be larger than the packet size.
958 */
7bc5edb0
OR
959 if (len < 2 || data[0] < 2 || data[0] > len) {
960 stream->stats.frame.nb_invalid++;
c0efd232 961 return -EINVAL;
7bc5edb0 962 }
c0efd232 963
c0efd232
LP
964 fid = data[1] & UVC_STREAM_FID;
965
650b95fe
LP
966 /* Increase the sequence number regardless of any buffer states, so
967 * that discontinuous sequence numbers always indicate lost frames.
968 */
7bc5edb0 969 if (stream->last_fid != fid) {
650b95fe 970 stream->sequence++;
7bc5edb0
OR
971 if (stream->sequence)
972 uvc_video_stats_update(stream);
973 }
974
66847ef0 975 uvc_video_clock_decode(stream, buf, data, len);
7bc5edb0 976 uvc_video_stats_decode(stream, data, len);
650b95fe 977
c0efd232
LP
978 /* Store the payload FID bit and return immediately when the buffer is
979 * NULL.
980 */
981 if (buf == NULL) {
35f02a68 982 stream->last_fid = fid;
c0efd232
LP
983 return -ENODATA;
984 }
985
3afedb95
LP
986 /* Mark the buffer as bad if the error bit is set. */
987 if (data[1] & UVC_STREAM_ERR) {
988 uvc_trace(UVC_TRACE_FRAME, "Marking buffer as bad (error bit "
989 "set).\n");
990 buf->error = 1;
991 }
992
c0efd232
LP
993 /* Synchronize to the input stream by waiting for the FID bit to be
994 * toggled when the the buffer state is not UVC_BUF_STATE_ACTIVE.
35f02a68 995 * stream->last_fid is initialized to -1, so the first isochronous
c0efd232
LP
996 * frame will always be in sync.
997 *
35f02a68 998 * If the device doesn't toggle the FID bit, invert stream->last_fid
c0efd232
LP
999 * when the EOF bit is set to force synchronisation on the next packet.
1000 */
1001 if (buf->state != UVC_BUF_STATE_ACTIVE) {
310fe524
LP
1002 struct timespec ts;
1003
35f02a68 1004 if (fid == stream->last_fid) {
c0efd232
LP
1005 uvc_trace(UVC_TRACE_FRAME, "Dropping payload (out of "
1006 "sync).\n");
35f02a68 1007 if ((stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID) &&
c0efd232 1008 (data[1] & UVC_STREAM_EOF))
35f02a68 1009 stream->last_fid ^= UVC_STREAM_FID;
c0efd232
LP
1010 return -ENODATA;
1011 }
1012
310fe524
LP
1013 if (uvc_clock_param == CLOCK_MONOTONIC)
1014 ktime_get_ts(&ts);
1015 else
1016 ktime_get_real_ts(&ts);
1017
6998b6fb
LP
1018 buf->buf.v4l2_buf.sequence = stream->sequence;
1019 buf->buf.v4l2_buf.timestamp.tv_sec = ts.tv_sec;
1020 buf->buf.v4l2_buf.timestamp.tv_usec =
1021 ts.tv_nsec / NSEC_PER_USEC;
310fe524 1022
c0efd232
LP
1023 /* TODO: Handle PTS and SCR. */
1024 buf->state = UVC_BUF_STATE_ACTIVE;
1025 }
1026
1027 /* Mark the buffer as done if we're at the beginning of a new frame.
1028 * End of frame detection is better implemented by checking the EOF
1029 * bit (FID bit toggling is delayed by one frame compared to the EOF
1030 * bit), but some devices don't set the bit at end of frame (and the
1031 * last payload can be lost anyway). We thus must check if the FID has
1032 * been toggled.
1033 *
35f02a68 1034 * stream->last_fid is initialized to -1, so the first isochronous
c0efd232
LP
1035 * frame will never trigger an end of frame detection.
1036 *
1037 * Empty buffers (bytesused == 0) don't trigger end of frame detection
1038 * as it doesn't make sense to return an empty buffer. This also
2c2d264b 1039 * avoids detecting end of frame conditions at FID toggling if the
c0efd232
LP
1040 * previous payload had the EOF bit set.
1041 */
3d95e932 1042 if (fid != stream->last_fid && buf->bytesused != 0) {
c0efd232
LP
1043 uvc_trace(UVC_TRACE_FRAME, "Frame complete (FID bit "
1044 "toggled).\n");
d7c0d439 1045 buf->state = UVC_BUF_STATE_READY;
c0efd232
LP
1046 return -EAGAIN;
1047 }
1048
35f02a68 1049 stream->last_fid = fid;
c0efd232
LP
1050
1051 return data[0];
1052}
1053
35f02a68 1054static void uvc_video_decode_data(struct uvc_streaming *stream,
c0efd232
LP
1055 struct uvc_buffer *buf, const __u8 *data, int len)
1056{
c0efd232
LP
1057 unsigned int maxlen, nbytes;
1058 void *mem;
1059
1060 if (len <= 0)
1061 return;
1062
1063 /* Copy the video data to the buffer. */
3d95e932
LP
1064 maxlen = buf->length - buf->bytesused;
1065 mem = buf->mem + buf->bytesused;
c0efd232
LP
1066 nbytes = min((unsigned int)len, maxlen);
1067 memcpy(mem, data, nbytes);
3d95e932 1068 buf->bytesused += nbytes;
c0efd232
LP
1069
1070 /* Complete the current frame if the buffer size was exceeded. */
1071 if (len > maxlen) {
1072 uvc_trace(UVC_TRACE_FRAME, "Frame complete (overflow).\n");
d7c0d439 1073 buf->state = UVC_BUF_STATE_READY;
c0efd232
LP
1074 }
1075}
1076
35f02a68 1077static void uvc_video_decode_end(struct uvc_streaming *stream,
c0efd232
LP
1078 struct uvc_buffer *buf, const __u8 *data, int len)
1079{
1080 /* Mark the buffer as done if the EOF marker is set. */
3d95e932 1081 if (data[1] & UVC_STREAM_EOF && buf->bytesused != 0) {
c0efd232
LP
1082 uvc_trace(UVC_TRACE_FRAME, "Frame complete (EOF found).\n");
1083 if (data[0] == len)
1084 uvc_trace(UVC_TRACE_FRAME, "EOF in empty payload.\n");
d7c0d439 1085 buf->state = UVC_BUF_STATE_READY;
35f02a68
LP
1086 if (stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID)
1087 stream->last_fid ^= UVC_STREAM_FID;
c0efd232
LP
1088 }
1089}
1090
2c2d264b
LP
1091/* Video payload encoding is handled by uvc_video_encode_header() and
1092 * uvc_video_encode_data(). Only bulk transfers are currently supported.
1093 *
1094 * uvc_video_encode_header is called at the start of a payload. It adds header
1095 * data to the transfer buffer and returns the header size. As the only known
1096 * UVC output device transfers a whole frame in a single payload, the EOF bit
1097 * is always set in the header.
1098 *
1099 * uvc_video_encode_data is called for every URB and copies the data from the
1100 * video buffer to the transfer buffer.
1101 */
35f02a68 1102static int uvc_video_encode_header(struct uvc_streaming *stream,
ff924203
LP
1103 struct uvc_buffer *buf, __u8 *data, int len)
1104{
1105 data[0] = 2; /* Header length */
1106 data[1] = UVC_STREAM_EOH | UVC_STREAM_EOF
35f02a68 1107 | (stream->last_fid & UVC_STREAM_FID);
ff924203
LP
1108 return 2;
1109}
1110
35f02a68 1111static int uvc_video_encode_data(struct uvc_streaming *stream,
ff924203
LP
1112 struct uvc_buffer *buf, __u8 *data, int len)
1113{
35f02a68 1114 struct uvc_video_queue *queue = &stream->queue;
ff924203
LP
1115 unsigned int nbytes;
1116 void *mem;
1117
1118 /* Copy video data to the URB buffer. */
3d95e932
LP
1119 mem = buf->mem + queue->buf_used;
1120 nbytes = min((unsigned int)len, buf->bytesused - queue->buf_used);
35f02a68 1121 nbytes = min(stream->bulk.max_payload_size - stream->bulk.payload_size,
ff924203
LP
1122 nbytes);
1123 memcpy(data, mem, nbytes);
1124
1125 queue->buf_used += nbytes;
1126
1127 return nbytes;
1128}
1129
c0efd232
LP
1130/* ------------------------------------------------------------------------
1131 * URB handling
1132 */
1133
1134/*
1135 * Completion handler for video URBs.
1136 */
35f02a68
LP
1137static void uvc_video_decode_isoc(struct urb *urb, struct uvc_streaming *stream,
1138 struct uvc_buffer *buf)
c0efd232
LP
1139{
1140 u8 *mem;
1141 int ret, i;
1142
1143 for (i = 0; i < urb->number_of_packets; ++i) {
1144 if (urb->iso_frame_desc[i].status < 0) {
1145 uvc_trace(UVC_TRACE_FRAME, "USB isochronous frame "
1146 "lost (%d).\n", urb->iso_frame_desc[i].status);
9bde9f26
LP
1147 /* Mark the buffer as faulty. */
1148 if (buf != NULL)
1149 buf->error = 1;
c0efd232
LP
1150 continue;
1151 }
1152
1153 /* Decode the payload header. */
1154 mem = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
1155 do {
35f02a68 1156 ret = uvc_video_decode_start(stream, buf, mem,
c0efd232
LP
1157 urb->iso_frame_desc[i].actual_length);
1158 if (ret == -EAGAIN)
35f02a68
LP
1159 buf = uvc_queue_next_buffer(&stream->queue,
1160 buf);
c0efd232
LP
1161 } while (ret == -EAGAIN);
1162
1163 if (ret < 0)
1164 continue;
1165
1166 /* Decode the payload data. */
35f02a68 1167 uvc_video_decode_data(stream, buf, mem + ret,
c0efd232
LP
1168 urb->iso_frame_desc[i].actual_length - ret);
1169
1170 /* Process the header again. */
35f02a68 1171 uvc_video_decode_end(stream, buf, mem,
08ebd003 1172 urb->iso_frame_desc[i].actual_length);
c0efd232 1173
9bde9f26 1174 if (buf->state == UVC_BUF_STATE_READY) {
3d95e932 1175 if (buf->length != buf->bytesused &&
9bde9f26
LP
1176 !(stream->cur_format->flags &
1177 UVC_FMT_FLAG_COMPRESSED))
1178 buf->error = 1;
1179
35f02a68 1180 buf = uvc_queue_next_buffer(&stream->queue, buf);
9bde9f26 1181 }
c0efd232
LP
1182 }
1183}
1184
35f02a68
LP
1185static void uvc_video_decode_bulk(struct urb *urb, struct uvc_streaming *stream,
1186 struct uvc_buffer *buf)
c0efd232
LP
1187{
1188 u8 *mem;
1189 int len, ret;
1190
c90e7779
LP
1191 if (urb->actual_length == 0)
1192 return;
1193
c0efd232
LP
1194 mem = urb->transfer_buffer;
1195 len = urb->actual_length;
35f02a68 1196 stream->bulk.payload_size += len;
c0efd232
LP
1197
1198 /* If the URB is the first of its payload, decode and save the
1199 * header.
1200 */
35f02a68 1201 if (stream->bulk.header_size == 0 && !stream->bulk.skip_payload) {
c0efd232 1202 do {
35f02a68 1203 ret = uvc_video_decode_start(stream, buf, mem, len);
c0efd232 1204 if (ret == -EAGAIN)
35f02a68
LP
1205 buf = uvc_queue_next_buffer(&stream->queue,
1206 buf);
c0efd232
LP
1207 } while (ret == -EAGAIN);
1208
25985edc 1209 /* If an error occurred skip the rest of the payload. */
c0efd232 1210 if (ret < 0 || buf == NULL) {
35f02a68 1211 stream->bulk.skip_payload = 1;
f8dd4af6 1212 } else {
35f02a68
LP
1213 memcpy(stream->bulk.header, mem, ret);
1214 stream->bulk.header_size = ret;
c0efd232 1215
f8dd4af6
LP
1216 mem += ret;
1217 len -= ret;
1218 }
c0efd232
LP
1219 }
1220
1221 /* The buffer queue might have been cancelled while a bulk transfer
1222 * was in progress, so we can reach here with buf equal to NULL. Make
1223 * sure buf is never dereferenced if NULL.
1224 */
1225
1226 /* Process video data. */
35f02a68
LP
1227 if (!stream->bulk.skip_payload && buf != NULL)
1228 uvc_video_decode_data(stream, buf, mem, len);
c0efd232
LP
1229
1230 /* Detect the payload end by a URB smaller than the maximum size (or
1231 * a payload size equal to the maximum) and process the header again.
1232 */
1233 if (urb->actual_length < urb->transfer_buffer_length ||
35f02a68
LP
1234 stream->bulk.payload_size >= stream->bulk.max_payload_size) {
1235 if (!stream->bulk.skip_payload && buf != NULL) {
1236 uvc_video_decode_end(stream, buf, stream->bulk.header,
1237 stream->bulk.payload_size);
d7c0d439 1238 if (buf->state == UVC_BUF_STATE_READY)
35f02a68
LP
1239 buf = uvc_queue_next_buffer(&stream->queue,
1240 buf);
c0efd232
LP
1241 }
1242
35f02a68
LP
1243 stream->bulk.header_size = 0;
1244 stream->bulk.skip_payload = 0;
1245 stream->bulk.payload_size = 0;
c0efd232
LP
1246 }
1247}
1248
35f02a68
LP
1249static void uvc_video_encode_bulk(struct urb *urb, struct uvc_streaming *stream,
1250 struct uvc_buffer *buf)
ff924203
LP
1251{
1252 u8 *mem = urb->transfer_buffer;
35f02a68 1253 int len = stream->urb_size, ret;
ff924203
LP
1254
1255 if (buf == NULL) {
1256 urb->transfer_buffer_length = 0;
1257 return;
1258 }
1259
1260 /* If the URB is the first of its payload, add the header. */
35f02a68
LP
1261 if (stream->bulk.header_size == 0) {
1262 ret = uvc_video_encode_header(stream, buf, mem, len);
1263 stream->bulk.header_size = ret;
1264 stream->bulk.payload_size += ret;
ff924203
LP
1265 mem += ret;
1266 len -= ret;
1267 }
1268
1269 /* Process video data. */
35f02a68 1270 ret = uvc_video_encode_data(stream, buf, mem, len);
ff924203 1271
35f02a68 1272 stream->bulk.payload_size += ret;
ff924203
LP
1273 len -= ret;
1274
3d95e932 1275 if (buf->bytesused == stream->queue.buf_used ||
35f02a68 1276 stream->bulk.payload_size == stream->bulk.max_payload_size) {
3d95e932 1277 if (buf->bytesused == stream->queue.buf_used) {
35f02a68 1278 stream->queue.buf_used = 0;
d7c0d439 1279 buf->state = UVC_BUF_STATE_READY;
6998b6fb 1280 buf->buf.v4l2_buf.sequence = ++stream->sequence;
35f02a68
LP
1281 uvc_queue_next_buffer(&stream->queue, buf);
1282 stream->last_fid ^= UVC_STREAM_FID;
ff924203
LP
1283 }
1284
35f02a68
LP
1285 stream->bulk.header_size = 0;
1286 stream->bulk.payload_size = 0;
ff924203
LP
1287 }
1288
35f02a68 1289 urb->transfer_buffer_length = stream->urb_size - len;
ff924203
LP
1290}
1291
c0efd232
LP
1292static void uvc_video_complete(struct urb *urb)
1293{
35f02a68
LP
1294 struct uvc_streaming *stream = urb->context;
1295 struct uvc_video_queue *queue = &stream->queue;
c0efd232
LP
1296 struct uvc_buffer *buf = NULL;
1297 unsigned long flags;
1298 int ret;
1299
1300 switch (urb->status) {
1301 case 0:
1302 break;
1303
1304 default:
1305 uvc_printk(KERN_WARNING, "Non-zero status (%d) in video "
1306 "completion handler.\n", urb->status);
1307
1308 case -ENOENT: /* usb_kill_urb() called. */
35f02a68 1309 if (stream->frozen)
c0efd232
LP
1310 return;
1311
1312 case -ECONNRESET: /* usb_unlink_urb() called. */
1313 case -ESHUTDOWN: /* The endpoint is being disabled. */
1314 uvc_queue_cancel(queue, urb->status == -ESHUTDOWN);
1315 return;
1316 }
1317
1318 spin_lock_irqsave(&queue->irqlock, flags);
1319 if (!list_empty(&queue->irqqueue))
1320 buf = list_first_entry(&queue->irqqueue, struct uvc_buffer,
1321 queue);
1322 spin_unlock_irqrestore(&queue->irqlock, flags);
1323
35f02a68 1324 stream->decode(urb, stream, buf);
c0efd232
LP
1325
1326 if ((ret = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
1327 uvc_printk(KERN_ERR, "Failed to resubmit video URB (%d).\n",
1328 ret);
1329 }
1330}
1331
e01117c8
LP
1332/*
1333 * Free transfer buffers.
1334 */
35f02a68 1335static void uvc_free_urb_buffers(struct uvc_streaming *stream)
e01117c8
LP
1336{
1337 unsigned int i;
1338
1339 for (i = 0; i < UVC_URBS; ++i) {
35f02a68 1340 if (stream->urb_buffer[i]) {
3e0ac671 1341#ifndef CONFIG_DMA_NONCOHERENT
997ea58e 1342 usb_free_coherent(stream->dev->udev, stream->urb_size,
35f02a68 1343 stream->urb_buffer[i], stream->urb_dma[i]);
3e0ac671
AC
1344#else
1345 kfree(stream->urb_buffer[i]);
1346#endif
35f02a68 1347 stream->urb_buffer[i] = NULL;
e01117c8
LP
1348 }
1349 }
1350
35f02a68 1351 stream->urb_size = 0;
e01117c8
LP
1352}
1353
1354/*
1355 * Allocate transfer buffers. This function can be called with buffers
1356 * already allocated when resuming from suspend, in which case it will
1357 * return without touching the buffers.
1358 *
efdc8a95
LP
1359 * Limit the buffer size to UVC_MAX_PACKETS bulk/isochronous packets. If the
1360 * system is too low on memory try successively smaller numbers of packets
1361 * until allocation succeeds.
1362 *
1363 * Return the number of allocated packets on success or 0 when out of memory.
e01117c8 1364 */
35f02a68 1365static int uvc_alloc_urb_buffers(struct uvc_streaming *stream,
efdc8a95 1366 unsigned int size, unsigned int psize, gfp_t gfp_flags)
e01117c8 1367{
efdc8a95 1368 unsigned int npackets;
e01117c8
LP
1369 unsigned int i;
1370
1371 /* Buffers are already allocated, bail out. */
35f02a68
LP
1372 if (stream->urb_size)
1373 return stream->urb_size / psize;
e01117c8 1374
efdc8a95 1375 /* Compute the number of packets. Bulk endpoints might transfer UVC
25985edc 1376 * payloads across multiple URBs.
efdc8a95
LP
1377 */
1378 npackets = DIV_ROUND_UP(size, psize);
1379 if (npackets > UVC_MAX_PACKETS)
1380 npackets = UVC_MAX_PACKETS;
1381
1382 /* Retry allocations until one succeed. */
1383 for (; npackets > 1; npackets /= 2) {
1384 for (i = 0; i < UVC_URBS; ++i) {
fd1b6bbb 1385 stream->urb_size = psize * npackets;
3e0ac671 1386#ifndef CONFIG_DMA_NONCOHERENT
997ea58e 1387 stream->urb_buffer[i] = usb_alloc_coherent(
fd1b6bbb 1388 stream->dev->udev, stream->urb_size,
35f02a68 1389 gfp_flags | __GFP_NOWARN, &stream->urb_dma[i]);
3e0ac671
AC
1390#else
1391 stream->urb_buffer[i] =
1392 kmalloc(stream->urb_size, gfp_flags | __GFP_NOWARN);
1393#endif
35f02a68
LP
1394 if (!stream->urb_buffer[i]) {
1395 uvc_free_urb_buffers(stream);
efdc8a95
LP
1396 break;
1397 }
1398 }
1399
1400 if (i == UVC_URBS) {
663a4192
LP
1401 uvc_trace(UVC_TRACE_VIDEO, "Allocated %u URB buffers "
1402 "of %ux%u bytes each.\n", UVC_URBS, npackets,
1403 psize);
efdc8a95 1404 return npackets;
e01117c8
LP
1405 }
1406 }
1407
663a4192
LP
1408 uvc_trace(UVC_TRACE_VIDEO, "Failed to allocate URB buffers (%u bytes "
1409 "per packet).\n", psize);
e01117c8
LP
1410 return 0;
1411}
1412
c0efd232
LP
1413/*
1414 * Uninitialize isochronous/bulk URBs and free transfer buffers.
1415 */
35f02a68 1416static void uvc_uninit_video(struct uvc_streaming *stream, int free_buffers)
c0efd232
LP
1417{
1418 struct urb *urb;
1419 unsigned int i;
1420
7bc5edb0
OR
1421 uvc_video_stats_stop(stream);
1422
c0efd232 1423 for (i = 0; i < UVC_URBS; ++i) {
35f02a68
LP
1424 urb = stream->urb[i];
1425 if (urb == NULL)
c0efd232
LP
1426 continue;
1427
1428 usb_kill_urb(urb);
c0efd232 1429 usb_free_urb(urb);
35f02a68 1430 stream->urb[i] = NULL;
c0efd232 1431 }
e01117c8
LP
1432
1433 if (free_buffers)
35f02a68 1434 uvc_free_urb_buffers(stream);
c0efd232
LP
1435}
1436
1437/*
1438 * Initialize isochronous URBs and allocate transfer buffers. The packet size
1439 * is given by the endpoint.
1440 */
35f02a68 1441static int uvc_init_video_isoc(struct uvc_streaming *stream,
29135878 1442 struct usb_host_endpoint *ep, gfp_t gfp_flags)
c0efd232
LP
1443{
1444 struct urb *urb;
1445 unsigned int npackets, i, j;
efdc8a95
LP
1446 u16 psize;
1447 u32 size;
c0efd232 1448
c0efd232
LP
1449 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
1450 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
35f02a68 1451 size = stream->ctrl.dwMaxVideoFrameSize;
c0efd232 1452
35f02a68 1453 npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags);
efdc8a95
LP
1454 if (npackets == 0)
1455 return -ENOMEM;
c0efd232
LP
1456
1457 size = npackets * psize;
1458
1459 for (i = 0; i < UVC_URBS; ++i) {
29135878 1460 urb = usb_alloc_urb(npackets, gfp_flags);
c0efd232 1461 if (urb == NULL) {
35f02a68 1462 uvc_uninit_video(stream, 1);
c0efd232
LP
1463 return -ENOMEM;
1464 }
1465
35f02a68
LP
1466 urb->dev = stream->dev->udev;
1467 urb->context = stream;
1468 urb->pipe = usb_rcvisocpipe(stream->dev->udev,
c0efd232 1469 ep->desc.bEndpointAddress);
3e0ac671 1470#ifndef CONFIG_DMA_NONCOHERENT
c0efd232 1471 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
3e0ac671
AC
1472 urb->transfer_dma = stream->urb_dma[i];
1473#else
1474 urb->transfer_flags = URB_ISO_ASAP;
1475#endif
c0efd232 1476 urb->interval = ep->desc.bInterval;
35f02a68 1477 urb->transfer_buffer = stream->urb_buffer[i];
c0efd232
LP
1478 urb->complete = uvc_video_complete;
1479 urb->number_of_packets = npackets;
1480 urb->transfer_buffer_length = size;
1481
1482 for (j = 0; j < npackets; ++j) {
1483 urb->iso_frame_desc[j].offset = j * psize;
1484 urb->iso_frame_desc[j].length = psize;
1485 }
1486
35f02a68 1487 stream->urb[i] = urb;
c0efd232
LP
1488 }
1489
1490 return 0;
1491}
1492
1493/*
1494 * Initialize bulk URBs and allocate transfer buffers. The packet size is
1495 * given by the endpoint.
1496 */
35f02a68 1497static int uvc_init_video_bulk(struct uvc_streaming *stream,
29135878 1498 struct usb_host_endpoint *ep, gfp_t gfp_flags)
c0efd232
LP
1499{
1500 struct urb *urb;
efdc8a95
LP
1501 unsigned int npackets, pipe, i;
1502 u16 psize;
1503 u32 size;
1504
c0efd232 1505 psize = le16_to_cpu(ep->desc.wMaxPacketSize) & 0x07ff;
35f02a68
LP
1506 size = stream->ctrl.dwMaxPayloadTransferSize;
1507 stream->bulk.max_payload_size = size;
c0efd232 1508
35f02a68 1509 npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags);
efdc8a95 1510 if (npackets == 0)
e01117c8
LP
1511 return -ENOMEM;
1512
efdc8a95
LP
1513 size = npackets * psize;
1514
ff924203 1515 if (usb_endpoint_dir_in(&ep->desc))
35f02a68 1516 pipe = usb_rcvbulkpipe(stream->dev->udev,
ff924203
LP
1517 ep->desc.bEndpointAddress);
1518 else
35f02a68 1519 pipe = usb_sndbulkpipe(stream->dev->udev,
ff924203
LP
1520 ep->desc.bEndpointAddress);
1521
35f02a68 1522 if (stream->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
ff924203 1523 size = 0;
c0efd232
LP
1524
1525 for (i = 0; i < UVC_URBS; ++i) {
29135878 1526 urb = usb_alloc_urb(0, gfp_flags);
c0efd232 1527 if (urb == NULL) {
35f02a68 1528 uvc_uninit_video(stream, 1);
c0efd232
LP
1529 return -ENOMEM;
1530 }
1531
35f02a68
LP
1532 usb_fill_bulk_urb(urb, stream->dev->udev, pipe,
1533 stream->urb_buffer[i], size, uvc_video_complete,
1534 stream);
3e0ac671 1535#ifndef CONFIG_DMA_NONCOHERENT
c0efd232 1536 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
35f02a68 1537 urb->transfer_dma = stream->urb_dma[i];
3e0ac671 1538#endif
c0efd232 1539
35f02a68 1540 stream->urb[i] = urb;
c0efd232
LP
1541 }
1542
1543 return 0;
1544}
1545
1546/*
1547 * Initialize isochronous/bulk URBs and allocate transfer buffers.
1548 */
35f02a68 1549static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags)
c0efd232 1550{
35f02a68 1551 struct usb_interface *intf = stream->intf;
2c4d9de8
LP
1552 struct usb_host_endpoint *ep;
1553 unsigned int i;
c0efd232
LP
1554 int ret;
1555
650b95fe 1556 stream->sequence = -1;
35f02a68
LP
1557 stream->last_fid = -1;
1558 stream->bulk.header_size = 0;
1559 stream->bulk.skip_payload = 0;
1560 stream->bulk.payload_size = 0;
c0efd232 1561
7bc5edb0
OR
1562 uvc_video_stats_start(stream);
1563
c0efd232 1564 if (intf->num_altsetting > 1) {
2c4d9de8
LP
1565 struct usb_host_endpoint *best_ep = NULL;
1566 unsigned int best_psize = 3 * 1024;
1567 unsigned int bandwidth;
1568 unsigned int uninitialized_var(altsetting);
1569 int intfnum = stream->intfnum;
1570
c0efd232 1571 /* Isochronous endpoint, select the alternate setting. */
35f02a68 1572 bandwidth = stream->ctrl.dwMaxPayloadTransferSize;
c0efd232
LP
1573
1574 if (bandwidth == 0) {
663a4192
LP
1575 uvc_trace(UVC_TRACE_VIDEO, "Device requested null "
1576 "bandwidth, defaulting to lowest.\n");
c0efd232 1577 bandwidth = 1;
663a4192
LP
1578 } else {
1579 uvc_trace(UVC_TRACE_VIDEO, "Device requested %u "
1580 "B/frame bandwidth.\n", bandwidth);
c0efd232
LP
1581 }
1582
1583 for (i = 0; i < intf->num_altsetting; ++i) {
2c4d9de8
LP
1584 struct usb_host_interface *alts;
1585 unsigned int psize;
1586
c0efd232
LP
1587 alts = &intf->altsetting[i];
1588 ep = uvc_find_endpoint(alts,
35f02a68 1589 stream->header.bEndpointAddress);
c0efd232
LP
1590 if (ep == NULL)
1591 continue;
1592
1593 /* Check if the bandwidth is high enough. */
1594 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
1595 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
2c4d9de8
LP
1596 if (psize >= bandwidth && psize <= best_psize) {
1597 altsetting = i;
1598 best_psize = psize;
1599 best_ep = ep;
1600 }
c0efd232
LP
1601 }
1602
2c4d9de8 1603 if (best_ep == NULL) {
663a4192
LP
1604 uvc_trace(UVC_TRACE_VIDEO, "No fast enough alt setting "
1605 "for requested bandwidth.\n");
c0efd232 1606 return -EIO;
663a4192 1607 }
c0efd232 1608
2c4d9de8
LP
1609 uvc_trace(UVC_TRACE_VIDEO, "Selecting alternate setting %u "
1610 "(%u B/frame bandwidth).\n", altsetting, best_psize);
1611
1612 ret = usb_set_interface(stream->dev->udev, intfnum, altsetting);
35f02a68 1613 if (ret < 0)
c0efd232
LP
1614 return ret;
1615
2c4d9de8 1616 ret = uvc_init_video_isoc(stream, best_ep, gfp_flags);
c0efd232
LP
1617 } else {
1618 /* Bulk endpoint, proceed to URB initialization. */
1619 ep = uvc_find_endpoint(&intf->altsetting[0],
35f02a68 1620 stream->header.bEndpointAddress);
c0efd232
LP
1621 if (ep == NULL)
1622 return -EIO;
1623
35f02a68 1624 ret = uvc_init_video_bulk(stream, ep, gfp_flags);
c0efd232
LP
1625 }
1626
1627 if (ret < 0)
1628 return ret;
1629
1630 /* Submit the URBs. */
1631 for (i = 0; i < UVC_URBS; ++i) {
35f02a68
LP
1632 ret = usb_submit_urb(stream->urb[i], gfp_flags);
1633 if (ret < 0) {
c0efd232
LP
1634 uvc_printk(KERN_ERR, "Failed to submit URB %u "
1635 "(%d).\n", i, ret);
35f02a68 1636 uvc_uninit_video(stream, 1);
c0efd232
LP
1637 return ret;
1638 }
1639 }
1640
1641 return 0;
1642}
1643
1644/* --------------------------------------------------------------------------
1645 * Suspend/resume
1646 */
1647
1648/*
1649 * Stop streaming without disabling the video queue.
1650 *
1651 * To let userspace applications resume without trouble, we must not touch the
1652 * video buffers in any way. We mark the device as frozen to make sure the URB
1653 * completion handler won't try to cancel the queue when we kill the URBs.
1654 */
35f02a68 1655int uvc_video_suspend(struct uvc_streaming *stream)
c0efd232 1656{
35f02a68 1657 if (!uvc_queue_streaming(&stream->queue))
c0efd232
LP
1658 return 0;
1659
35f02a68
LP
1660 stream->frozen = 1;
1661 uvc_uninit_video(stream, 0);
1662 usb_set_interface(stream->dev->udev, stream->intfnum, 0);
c0efd232
LP
1663 return 0;
1664}
1665
1666/*
2c2d264b 1667 * Reconfigure the video interface and restart streaming if it was enabled
c0efd232
LP
1668 * before suspend.
1669 *
1670 * If an error occurs, disable the video queue. This will wake all pending
1671 * buffers, making sure userspace applications are notified of the problem
1672 * instead of waiting forever.
1673 */
d59a7b1d 1674int uvc_video_resume(struct uvc_streaming *stream, int reset)
c0efd232
LP
1675{
1676 int ret;
1677
d59a7b1d
ML
1678 /* If the bus has been reset on resume, set the alternate setting to 0.
1679 * This should be the default value, but some devices crash or otherwise
1680 * misbehave if they don't receive a SET_INTERFACE request before any
1681 * other video control request.
1682 */
1683 if (reset)
1684 usb_set_interface(stream->dev->udev, stream->intfnum, 0);
1685
35f02a68 1686 stream->frozen = 0;
c0efd232 1687
ed0ee0ce
LP
1688 uvc_video_clock_reset(stream);
1689
35f02a68
LP
1690 ret = uvc_commit_video(stream, &stream->ctrl);
1691 if (ret < 0) {
1692 uvc_queue_enable(&stream->queue, 0);
c0efd232
LP
1693 return ret;
1694 }
1695
35f02a68 1696 if (!uvc_queue_streaming(&stream->queue))
c0efd232
LP
1697 return 0;
1698
35f02a68
LP
1699 ret = uvc_init_video(stream, GFP_NOIO);
1700 if (ret < 0)
1701 uvc_queue_enable(&stream->queue, 0);
c0efd232
LP
1702
1703 return ret;
1704}
1705
1706/* ------------------------------------------------------------------------
1707 * Video device
1708 */
1709
1710/*
2c2d264b
LP
1711 * Initialize the UVC video device by switching to alternate setting 0 and
1712 * retrieve the default format.
c0efd232
LP
1713 *
1714 * Some cameras (namely the Fuji Finepix) set the format and frame
1715 * indexes to zero. The UVC standard doesn't clearly make this a spec
1716 * violation, so try to silently fix the values if possible.
1717 *
1718 * This function is called before registering the device with V4L.
1719 */
35f02a68 1720int uvc_video_init(struct uvc_streaming *stream)
c0efd232 1721{
35f02a68 1722 struct uvc_streaming_control *probe = &stream->ctrl;
c0efd232
LP
1723 struct uvc_format *format = NULL;
1724 struct uvc_frame *frame = NULL;
1725 unsigned int i;
1726 int ret;
1727
35f02a68 1728 if (stream->nformats == 0) {
c0efd232
LP
1729 uvc_printk(KERN_INFO, "No supported video formats found.\n");
1730 return -EINVAL;
1731 }
1732
35f02a68
LP
1733 atomic_set(&stream->active, 0);
1734
1735 /* Initialize the video buffers queue. */
9bde9f26 1736 uvc_queue_init(&stream->queue, stream->type, !uvc_no_drop_param);
35f02a68 1737
c0efd232
LP
1738 /* Alternate setting 0 should be the default, yet the XBox Live Vision
1739 * Cam (and possibly other devices) crash or otherwise misbehave if
1740 * they don't receive a SET_INTERFACE request before any other video
1741 * control request.
1742 */
35f02a68 1743 usb_set_interface(stream->dev->udev, stream->intfnum, 0);
c0efd232 1744
72362422
LP
1745 /* Set the streaming probe control with default streaming parameters
1746 * retrieved from the device. Webcams that don't suport GET_DEF
1747 * requests on the probe control will just keep their current streaming
1748 * parameters.
c0efd232 1749 */
35f02a68
LP
1750 if (uvc_get_video_ctrl(stream, probe, 1, UVC_GET_DEF) == 0)
1751 uvc_set_video_ctrl(stream, probe, 1);
72362422
LP
1752
1753 /* Initialize the streaming parameters with the probe control current
1754 * value. This makes sure SET_CUR requests on the streaming commit
1755 * control will always use values retrieved from a successful GET_CUR
1756 * request on the probe control, as required by the UVC specification.
1757 */
35f02a68 1758 ret = uvc_get_video_ctrl(stream, probe, 1, UVC_GET_CUR);
b482d923 1759 if (ret < 0)
c0efd232
LP
1760 return ret;
1761
1762 /* Check if the default format descriptor exists. Use the first
1763 * available format otherwise.
1764 */
35f02a68
LP
1765 for (i = stream->nformats; i > 0; --i) {
1766 format = &stream->format[i-1];
c0efd232
LP
1767 if (format->index == probe->bFormatIndex)
1768 break;
1769 }
1770
1771 if (format->nframes == 0) {
1772 uvc_printk(KERN_INFO, "No frame descriptor found for the "
1773 "default format.\n");
1774 return -EINVAL;
1775 }
1776
1777 /* Zero bFrameIndex might be correct. Stream-based formats (including
1778 * MPEG-2 TS and DV) do not support frames but have a dummy frame
1779 * descriptor with bFrameIndex set to zero. If the default frame
078f8947 1780 * descriptor is not found, use the first available frame.
c0efd232
LP
1781 */
1782 for (i = format->nframes; i > 0; --i) {
1783 frame = &format->frame[i-1];
1784 if (frame->bFrameIndex == probe->bFrameIndex)
1785 break;
1786 }
1787
c0efd232
LP
1788 probe->bFormatIndex = format->index;
1789 probe->bFrameIndex = frame->bFrameIndex;
c0efd232 1790
35f02a68
LP
1791 stream->cur_format = format;
1792 stream->cur_frame = frame;
c0efd232
LP
1793
1794 /* Select the video decoding function */
35f02a68
LP
1795 if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1796 if (stream->dev->quirks & UVC_QUIRK_BUILTIN_ISIGHT)
1797 stream->decode = uvc_video_decode_isight;
1798 else if (stream->intf->num_altsetting > 1)
1799 stream->decode = uvc_video_decode_isoc;
ff924203 1800 else
35f02a68 1801 stream->decode = uvc_video_decode_bulk;
ff924203 1802 } else {
35f02a68
LP
1803 if (stream->intf->num_altsetting == 1)
1804 stream->decode = uvc_video_encode_bulk;
ff924203
LP
1805 else {
1806 uvc_printk(KERN_INFO, "Isochronous endpoints are not "
1807 "supported for video output devices.\n");
1808 return -EINVAL;
1809 }
1810 }
c0efd232
LP
1811
1812 return 0;
1813}
1814
1815/*
1816 * Enable or disable the video stream.
1817 */
35f02a68 1818int uvc_video_enable(struct uvc_streaming *stream, int enable)
c0efd232
LP
1819{
1820 int ret;
1821
1822 if (!enable) {
35f02a68
LP
1823 uvc_uninit_video(stream, 1);
1824 usb_set_interface(stream->dev->udev, stream->intfnum, 0);
1825 uvc_queue_enable(&stream->queue, 0);
ed0ee0ce 1826 uvc_video_clock_cleanup(stream);
c0efd232
LP
1827 return 0;
1828 }
1829
ed0ee0ce 1830 ret = uvc_video_clock_init(stream);
35f02a68 1831 if (ret < 0)
c0efd232
LP
1832 return ret;
1833
ed0ee0ce
LP
1834 ret = uvc_queue_enable(&stream->queue, 1);
1835 if (ret < 0)
1836 goto error_queue;
1837
23867b25 1838 /* Commit the streaming parameters. */
35f02a68 1839 ret = uvc_commit_video(stream, &stream->ctrl);
ed0ee0ce
LP
1840 if (ret < 0)
1841 goto error_commit;
23867b25 1842
24c3aae0 1843 ret = uvc_init_video(stream, GFP_KERNEL);
ed0ee0ce
LP
1844 if (ret < 0)
1845 goto error_video;
1846
1847 return 0;
1848
1849error_video:
1850 usb_set_interface(stream->dev->udev, stream->intfnum, 0);
1851error_commit:
1852 uvc_queue_enable(&stream->queue, 0);
1853error_queue:
1854 uvc_video_clock_cleanup(stream);
f87086e3 1855
24c3aae0
LP
1856 return ret;
1857}