uvc_video.c 54.9 KB
Newer Older
1 2 3
/*
 *      uvc_video.c  --  USB Video Class driver - Video handling
 *
4 5
 *      Copyright (C) 2005-2010
 *          Laurent Pinchart (laurent.pinchart@ideasonboard.com)
6 7 8 9 10 11 12 13 14 15 16
 *
 *      This program is free software; you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation; either version 2 of the License, or
 *      (at your option) any later version.
 *
 */

#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/module.h>
17
#include <linux/slab.h>
18 19 20 21
#include <linux/usb.h>
#include <linux/videodev2.h>
#include <linux/vmalloc.h>
#include <linux/wait.h>
A
Arun Sharma 已提交
22
#include <linux/atomic.h>
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include <asm/unaligned.h>

#include <media/v4l2-common.h>

#include "uvcvideo.h"

/* ------------------------------------------------------------------------
 * UVC Controls
 */

static int __uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
			__u8 intfnum, __u8 cs, void *data, __u16 size,
			int timeout)
{
	__u8 type = USB_TYPE_CLASS | USB_RECIP_INTERFACE;
	unsigned int pipe;

	pipe = (query & 0x80) ? usb_rcvctrlpipe(dev->udev, 0)
			      : usb_sndctrlpipe(dev->udev, 0);
	type |= (query & 0x80) ? USB_DIR_IN : USB_DIR_OUT;

44
	return usb_control_msg(dev->udev, pipe, query, type, cs << 8,
45
			unit << 8 | intfnum, data, size, timeout);
46 47
}

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
static const char *uvc_query_name(__u8 query)
{
	switch (query) {
	case UVC_SET_CUR:
		return "SET_CUR";
	case UVC_GET_CUR:
		return "GET_CUR";
	case UVC_GET_MIN:
		return "GET_MIN";
	case UVC_GET_MAX:
		return "GET_MAX";
	case UVC_GET_RES:
		return "GET_RES";
	case UVC_GET_LEN:
		return "GET_LEN";
	case UVC_GET_INFO:
		return "GET_INFO";
	case UVC_GET_DEF:
		return "GET_DEF";
	default:
		return "<invalid>";
	}
}

72 73 74 75
int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
			__u8 intfnum, __u8 cs, void *data, __u16 size)
{
	int ret;
76

77 78
	ret = __uvc_query_ctrl(dev, query, unit, intfnum, cs, data, size,
				UVC_CTRL_CONTROL_TIMEOUT);
79
	if (ret != size) {
80 81 82
		uvc_printk(KERN_ERR, "Failed to query (%s) UVC control %u on "
			"unit %u: %d (exp. %u).\n", uvc_query_name(query), cs,
			unit, ret, size);
83 84 85 86 87 88
		return -EIO;
	}

	return 0;
}

89
static void uvc_fixup_video_ctrl(struct uvc_streaming *stream,
90 91
	struct uvc_streaming_control *ctrl)
{
92
	struct uvc_format *format = NULL;
93 94
	struct uvc_frame *frame = NULL;
	unsigned int i;
95

96 97 98 99 100 101
	for (i = 0; i < stream->nformats; ++i) {
		if (stream->format[i].index == ctrl->bFormatIndex) {
			format = &stream->format[i];
			break;
		}
	}
102

103 104
	if (format == NULL)
		return;
105

106 107 108 109 110 111
	for (i = 0; i < format->nframes; ++i) {
		if (format->frame[i].bFrameIndex == ctrl->bFrameIndex) {
			frame = &format->frame[i];
			break;
		}
	}
112

113 114
	if (frame == NULL)
		return;
115 116 117

	if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) ||
	     (ctrl->dwMaxVideoFrameSize == 0 &&
118
	      stream->dev->uvc_version < 0x0110))
119 120
		ctrl->dwMaxVideoFrameSize =
			frame->dwMaxVideoFrameBufferSize;
121

122 123
	if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) &&
	    stream->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH &&
124
	    stream->intf->num_altsetting > 1) {
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
		u32 interval;
		u32 bandwidth;

		interval = (ctrl->dwFrameInterval > 100000)
			 ? ctrl->dwFrameInterval
			 : frame->dwFrameInterval[0];

		/* Compute a bandwidth estimation by multiplying the frame
		 * size by the number of video frames per second, divide the
		 * result by the number of USB frames (or micro-frames for
		 * high-speed devices) per second and add the UVC header size
		 * (assumed to be 12 bytes long).
		 */
		bandwidth = frame->wWidth * frame->wHeight / 8 * format->bpp;
		bandwidth *= 10000000 / interval + 1;
		bandwidth /= 1000;
141
		if (stream->dev->udev->speed == USB_SPEED_HIGH)
142 143 144
			bandwidth /= 8;
		bandwidth += 12;

145 146 147 148 149 150 151 152 153
		/* The bandwidth estimate is too low for many cameras. Don't use
		 * maximum packet sizes lower than 1024 bytes to try and work
		 * around the problem. According to measurements done on two
		 * different camera models, the value is high enough to get most
		 * resolutions working while not preventing two simultaneous
		 * VGA streams at 15 fps.
		 */
		bandwidth = max_t(u32, bandwidth, 1024);

154 155
		ctrl->dwMaxPayloadTransferSize = bandwidth;
	}
156 157
}

158
static int uvc_get_video_ctrl(struct uvc_streaming *stream,
159 160
	struct uvc_streaming_control *ctrl, int probe, __u8 query)
{
161 162
	__u8 *data;
	__u16 size;
163 164
	int ret;

165
	size = stream->dev->uvc_version >= 0x0110 ? 34 : 26;
166 167 168 169
	if ((stream->dev->quirks & UVC_QUIRK_PROBE_DEF) &&
			query == UVC_GET_DEF)
		return -EIO;

170 171 172 173
	data = kmalloc(size, GFP_KERNEL);
	if (data == NULL)
		return -ENOMEM;

174
	ret = __uvc_query_ctrl(stream->dev, query, 0, stream->intfnum,
175
		probe ? UVC_VS_PROBE_CONTROL : UVC_VS_COMMIT_CONTROL, data,
176
		size, uvc_timeout_param);
177

178
	if ((query == UVC_GET_MIN || query == UVC_GET_MAX) && ret == 2) {
179 180 181 182
		/* Some cameras, mostly based on Bison Electronics chipsets,
		 * answer a GET_MIN or GET_MAX request with the wCompQuality
		 * field only.
		 */
183
		uvc_warn_once(stream->dev, UVC_WARN_MINMAX, "UVC non "
184 185
			"compliance - GET_MIN/MAX(PROBE) incorrectly "
			"supported. Enabling workaround.\n");
186
		memset(ctrl, 0, sizeof *ctrl);
187 188
		ctrl->wCompQuality = le16_to_cpup((__le16 *)data);
		ret = 0;
189
		goto out;
190
	} else if (query == UVC_GET_DEF && probe == 1 && ret != size) {
191 192 193 194
		/* Many cameras don't support the GET_DEF request on their
		 * video probe control. Warn once and return, the caller will
		 * fall back to GET_CUR.
		 */
195
		uvc_warn_once(stream->dev, UVC_WARN_PROBE_DEF, "UVC non "
196 197 198 199 200 201 202 203 204 205 206
			"compliance - GET_DEF(PROBE) not supported. "
			"Enabling workaround.\n");
		ret = -EIO;
		goto out;
	} else if (ret != size) {
		uvc_printk(KERN_ERR, "Failed to query (%u) UVC %s control : "
			"%d (exp. %u).\n", query, probe ? "probe" : "commit",
			ret, size);
		ret = -EIO;
		goto out;
	}
207 208 209 210 211 212 213 214 215 216

	ctrl->bmHint = le16_to_cpup((__le16 *)&data[0]);
	ctrl->bFormatIndex = data[2];
	ctrl->bFrameIndex = data[3];
	ctrl->dwFrameInterval = le32_to_cpup((__le32 *)&data[4]);
	ctrl->wKeyFrameRate = le16_to_cpup((__le16 *)&data[8]);
	ctrl->wPFrameRate = le16_to_cpup((__le16 *)&data[10]);
	ctrl->wCompQuality = le16_to_cpup((__le16 *)&data[12]);
	ctrl->wCompWindowSize = le16_to_cpup((__le16 *)&data[14]);
	ctrl->wDelay = le16_to_cpup((__le16 *)&data[16]);
217 218
	ctrl->dwMaxVideoFrameSize = get_unaligned_le32(&data[18]);
	ctrl->dwMaxPayloadTransferSize = get_unaligned_le32(&data[22]);
219 220

	if (size == 34) {
221
		ctrl->dwClockFrequency = get_unaligned_le32(&data[26]);
222 223 224 225 226
		ctrl->bmFramingInfo = data[30];
		ctrl->bPreferedVersion = data[31];
		ctrl->bMinVersion = data[32];
		ctrl->bMaxVersion = data[33];
	} else {
227
		ctrl->dwClockFrequency = stream->dev->clock_frequency;
228 229 230 231 232 233
		ctrl->bmFramingInfo = 0;
		ctrl->bPreferedVersion = 0;
		ctrl->bMinVersion = 0;
		ctrl->bMaxVersion = 0;
	}

234 235 236
	/* Some broken devices return null or wrong dwMaxVideoFrameSize and
	 * dwMaxPayloadTransferSize fields. Try to get the value from the
	 * format and frame descriptors.
237
	 */
238
	uvc_fixup_video_ctrl(stream, ctrl);
239
	ret = 0;
240

241 242 243
out:
	kfree(data);
	return ret;
244 245
}

246
static int uvc_set_video_ctrl(struct uvc_streaming *stream,
247 248
	struct uvc_streaming_control *ctrl, int probe)
{
249 250 251
	__u8 *data;
	__u16 size;
	int ret;
252

253
	size = stream->dev->uvc_version >= 0x0110 ? 34 : 26;
254 255 256
	data = kzalloc(size, GFP_KERNEL);
	if (data == NULL)
		return -ENOMEM;
257 258 259 260 261 262 263 264 265 266

	*(__le16 *)&data[0] = cpu_to_le16(ctrl->bmHint);
	data[2] = ctrl->bFormatIndex;
	data[3] = ctrl->bFrameIndex;
	*(__le32 *)&data[4] = cpu_to_le32(ctrl->dwFrameInterval);
	*(__le16 *)&data[8] = cpu_to_le16(ctrl->wKeyFrameRate);
	*(__le16 *)&data[10] = cpu_to_le16(ctrl->wPFrameRate);
	*(__le16 *)&data[12] = cpu_to_le16(ctrl->wCompQuality);
	*(__le16 *)&data[14] = cpu_to_le16(ctrl->wCompWindowSize);
	*(__le16 *)&data[16] = cpu_to_le16(ctrl->wDelay);
267 268
	put_unaligned_le32(ctrl->dwMaxVideoFrameSize, &data[18]);
	put_unaligned_le32(ctrl->dwMaxPayloadTransferSize, &data[22]);
269 270

	if (size == 34) {
271
		put_unaligned_le32(ctrl->dwClockFrequency, &data[26]);
272 273 274 275 276 277
		data[30] = ctrl->bmFramingInfo;
		data[31] = ctrl->bPreferedVersion;
		data[32] = ctrl->bMinVersion;
		data[33] = ctrl->bMaxVersion;
	}

278
	ret = __uvc_query_ctrl(stream->dev, UVC_SET_CUR, 0, stream->intfnum,
279
		probe ? UVC_VS_PROBE_CONTROL : UVC_VS_COMMIT_CONTROL, data,
280
		size, uvc_timeout_param);
281 282 283 284 285 286
	if (ret != size) {
		uvc_printk(KERN_ERR, "Failed to set UVC %s control : "
			"%d (exp. %u).\n", probe ? "probe" : "commit",
			ret, size);
		ret = -EIO;
	}
287 288 289

	kfree(data);
	return ret;
290 291
}

292
int uvc_probe_video(struct uvc_streaming *stream,
293 294 295 296 297 298 299 300 301 302 303 304 305 306
	struct uvc_streaming_control *probe)
{
	struct uvc_streaming_control probe_min, probe_max;
	__u16 bandwidth;
	unsigned int i;
	int ret;

	/* Perform probing. The device should adjust the requested values
	 * according to its capabilities. However, some devices, namely the
	 * first generation UVC Logitech webcams, don't implement the Video
	 * Probe control properly, and just return the needed bandwidth. For
	 * that reason, if the needed bandwidth exceeds the maximum available
	 * bandwidth, try to lower the quality.
	 */
307 308
	ret = uvc_set_video_ctrl(stream, probe, 1);
	if (ret < 0)
309 310 311
		goto done;

	/* Get the minimum and maximum values for compression settings. */
312 313
	if (!(stream->dev->quirks & UVC_QUIRK_PROBE_MINMAX)) {
		ret = uvc_get_video_ctrl(stream, &probe_min, 1, UVC_GET_MIN);
314 315
		if (ret < 0)
			goto done;
316
		ret = uvc_get_video_ctrl(stream, &probe_max, 1, UVC_GET_MAX);
317 318 319 320 321 322 323
		if (ret < 0)
			goto done;

		probe->wCompQuality = probe_max.wCompQuality;
	}

	for (i = 0; i < 2; ++i) {
324
		ret = uvc_set_video_ctrl(stream, probe, 1);
325 326
		if (ret < 0)
			goto done;
327
		ret = uvc_get_video_ctrl(stream, probe, 1, UVC_GET_CUR);
328
		if (ret < 0)
329 330
			goto done;

331
		if (stream->intf->num_altsetting == 1)
332 333 334
			break;

		bandwidth = probe->dwMaxPayloadTransferSize;
335
		if (bandwidth <= stream->maxpsize)
336 337
			break;

338
		if (stream->dev->quirks & UVC_QUIRK_PROBE_MINMAX) {
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
			ret = -ENOSPC;
			goto done;
		}

		/* TODO: negotiate compression parameters */
		probe->wKeyFrameRate = probe_min.wKeyFrameRate;
		probe->wPFrameRate = probe_min.wPFrameRate;
		probe->wCompQuality = probe_max.wCompQuality;
		probe->wCompWindowSize = probe_min.wCompWindowSize;
	}

done:
	return ret;
}

354 355
static int uvc_commit_video(struct uvc_streaming *stream,
			    struct uvc_streaming_control *probe)
356
{
357
	return uvc_set_video_ctrl(stream, probe, 0);
358 359
}

360 361 362 363
/* -----------------------------------------------------------------------------
 * Clocks and timestamps
 */

364 365 366 367 368 369 370 371
static inline void uvc_video_get_ts(struct timespec *ts)
{
	if (uvc_clock_param == CLOCK_MONOTONIC)
		ktime_get_ts(ts);
	else
		ktime_get_real_ts(ts);
}

372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
static void
uvc_video_clock_decode(struct uvc_streaming *stream, struct uvc_buffer *buf,
		       const __u8 *data, int len)
{
	struct uvc_clock_sample *sample;
	unsigned int header_size;
	bool has_pts = false;
	bool has_scr = false;
	unsigned long flags;
	struct timespec ts;
	u16 host_sof;
	u16 dev_sof;

	switch (data[1] & (UVC_STREAM_PTS | UVC_STREAM_SCR)) {
	case UVC_STREAM_PTS | UVC_STREAM_SCR:
		header_size = 12;
		has_pts = true;
		has_scr = true;
		break;
	case UVC_STREAM_PTS:
		header_size = 6;
		has_pts = true;
		break;
	case UVC_STREAM_SCR:
		header_size = 8;
		has_scr = true;
		break;
	default:
		header_size = 2;
		break;
	}

	/* Check for invalid headers. */
	if (len < header_size)
		return;

	/* Extract the timestamps:
	 *
	 * - store the frame PTS in the buffer structure
	 * - if the SCR field is present, retrieve the host SOF counter and
	 *   kernel timestamps and store them with the SCR STC and SOF fields
	 *   in the ring buffer
	 */
	if (has_pts && buf != NULL)
		buf->pts = get_unaligned_le32(&data[2]);

	if (!has_scr)
		return;

	/* To limit the amount of data, drop SCRs with an SOF identical to the
	 * previous one.
	 */
	dev_sof = get_unaligned_le16(&data[header_size - 2]);
	if (dev_sof == stream->clock.last_sof)
		return;

	stream->clock.last_sof = dev_sof;

	host_sof = usb_get_current_frame_number(stream->dev->udev);
431
	uvc_video_get_ts(&ts);
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478

	/* The UVC specification allows device implementations that can't obtain
	 * the USB frame number to keep their own frame counters as long as they
	 * match the size and frequency of the frame number associated with USB
	 * SOF tokens. The SOF values sent by such devices differ from the USB
	 * SOF tokens by a fixed offset that needs to be estimated and accounted
	 * for to make timestamp recovery as accurate as possible.
	 *
	 * The offset is estimated the first time a device SOF value is received
	 * as the difference between the host and device SOF values. As the two
	 * SOF values can differ slightly due to transmission delays, consider
	 * that the offset is null if the difference is not higher than 10 ms
	 * (negative differences can not happen and are thus considered as an
	 * offset). The video commit control wDelay field should be used to
	 * compute a dynamic threshold instead of using a fixed 10 ms value, but
	 * devices don't report reliable wDelay values.
	 *
	 * See uvc_video_clock_host_sof() for an explanation regarding why only
	 * the 8 LSBs of the delta are kept.
	 */
	if (stream->clock.sof_offset == (u16)-1) {
		u16 delta_sof = (host_sof - dev_sof) & 255;
		if (delta_sof >= 10)
			stream->clock.sof_offset = delta_sof;
		else
			stream->clock.sof_offset = 0;
	}

	dev_sof = (dev_sof + stream->clock.sof_offset) & 2047;

	spin_lock_irqsave(&stream->clock.lock, flags);

	sample = &stream->clock.samples[stream->clock.head];
	sample->dev_stc = get_unaligned_le32(&data[header_size - 6]);
	sample->dev_sof = dev_sof;
	sample->host_sof = host_sof;
	sample->host_ts = ts;

	/* Update the sliding window head and count. */
	stream->clock.head = (stream->clock.head + 1) % stream->clock.size;

	if (stream->clock.count < stream->clock.size)
		stream->clock.count++;

	spin_unlock_irqrestore(&stream->clock.lock, flags);
}

479
static void uvc_video_clock_reset(struct uvc_streaming *stream)
480 481 482 483 484 485 486
{
	struct uvc_clock *clock = &stream->clock;

	clock->head = 0;
	clock->count = 0;
	clock->last_sof = -1;
	clock->sof_offset = -1;
487 488 489 490 491 492 493 494
}

static int uvc_video_clock_init(struct uvc_streaming *stream)
{
	struct uvc_clock *clock = &stream->clock;

	spin_lock_init(&clock->lock);
	clock->size = 32;
495 496 497 498 499 500

	clock->samples = kmalloc(clock->size * sizeof(*clock->samples),
				 GFP_KERNEL);
	if (clock->samples == NULL)
		return -ENOMEM;

501 502
	uvc_video_clock_reset(stream);

503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
	return 0;
}

static void uvc_video_clock_cleanup(struct uvc_streaming *stream)
{
	kfree(stream->clock.samples);
	stream->clock.samples = NULL;
}

/*
 * uvc_video_clock_host_sof - Return the host SOF value for a clock sample
 *
 * Host SOF counters reported by usb_get_current_frame_number() usually don't
 * cover the whole 11-bits SOF range (0-2047) but are limited to the HCI frame
 * schedule window. They can be limited to 8, 9 or 10 bits depending on the host
 * controller and its configuration.
 *
 * We thus need to recover the SOF value corresponding to the host frame number.
 * As the device and host frame numbers are sampled in a short interval, the
 * difference between their values should be equal to a small delta plus an
 * integer multiple of 256 caused by the host frame number limited precision.
 *
 * To obtain the recovered host SOF value, compute the small delta by masking
 * the high bits of the host frame counter and device SOF difference and add it
 * to the device SOF value.
 */
static u16 uvc_video_clock_host_sof(const struct uvc_clock_sample *sample)
{
	/* The delta value can be negative. */
	s8 delta_sof;

	delta_sof = (sample->host_sof - sample->dev_sof) & 255;

	return (sample->dev_sof + delta_sof) & 2047;
}

/*
 * uvc_video_clock_update - Update the buffer timestamp
 *
 * This function converts the buffer PTS timestamp to the host clock domain by
 * going through the USB SOF clock domain and stores the result in the V4L2
 * buffer timestamp field.
 *
 * The relationship between the device clock and the host clock isn't known.
 * However, the device and the host share the common USB SOF clock which can be
 * used to recover that relationship.
 *
 * The relationship between the device clock and the USB SOF clock is considered
 * to be linear over the clock samples sliding window and is given by
 *
 * SOF = m * PTS + p
 *
 * Several methods to compute the slope (m) and intercept (p) can be used. As
 * the clock drift should be small compared to the sliding window size, we
 * assume that the line that goes through the points at both ends of the window
 * is a good approximation. Naming those points P1 and P2, we get
 *
 * SOF = (SOF2 - SOF1) / (STC2 - STC1) * PTS
 *     + (SOF1 * STC2 - SOF2 * STC1) / (STC2 - STC1)
 *
 * or
 *
 * SOF = ((SOF2 - SOF1) * PTS + SOF1 * STC2 - SOF2 * STC1) / (STC2 - STC1)   (1)
 *
567
 * to avoid losing precision in the division. Similarly, the host timestamp is
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
 * computed with
 *
 * TS = ((TS2 - TS1) * PTS + TS1 * SOF2 - TS2 * SOF1) / (SOF2 - SOF1)	     (2)
 *
 * SOF values are coded on 11 bits by USB. We extend their precision with 16
 * decimal bits, leading to a 11.16 coding.
 *
 * TODO: To avoid surprises with device clock values, PTS/STC timestamps should
 * be normalized using the nominal device clock frequency reported through the
 * UVC descriptors.
 *
 * Both the PTS/STC and SOF counters roll over, after a fixed but device
 * specific amount of time for PTS/STC and after 2048ms for SOF. As long as the
 * sliding window size is smaller than the rollover period, differences computed
 * on unsigned integers will produce the correct result. However, the p term in
 * the linear relations will be miscomputed.
 *
 * To fix the issue, we subtract a constant from the PTS and STC values to bring
 * PTS to half the 32 bit STC range. The sliding window STC values then fit into
 * the 32 bit range without any rollover.
 *
 * Similarly, we add 2048 to the device SOF values to make sure that the SOF
 * computed by (1) will never be smaller than 0. This offset is then compensated
 * by adding 2048 to the SOF values used in (2). However, this doesn't prevent
 * rollovers between (1) and (2): the SOF value computed by (1) can be slightly
 * lower than 4096, and the host SOF counters can have rolled over to 2048. This
 * case is handled by subtracting 2048 from the SOF value if it exceeds the host
 * SOF value at the end of the sliding window.
 *
 * Finally we subtract a constant from the host timestamps to bring the first
 * timestamp of the sliding window to 1s.
 */
void uvc_video_clock_update(struct uvc_streaming *stream,
			    struct v4l2_buffer *v4l2_buf,
			    struct uvc_buffer *buf)
{
	struct uvc_clock *clock = &stream->clock;
	struct uvc_clock_sample *first;
	struct uvc_clock_sample *last;
	unsigned long flags;
	struct timespec ts;
	u32 delta_stc;
	u32 y1, y2;
	u32 x1, x2;
	u32 mean;
	u32 sof;
	u32 div;
	u32 rem;
	u64 y;

	spin_lock_irqsave(&clock->lock, flags);

	if (clock->count < clock->size)
		goto done;

	first = &clock->samples[clock->head];
	last = &clock->samples[(clock->head - 1) % clock->size];

	/* First step, PTS to SOF conversion. */
	delta_stc = buf->pts - (1UL << 31);
	x1 = first->dev_stc - delta_stc;
	x2 = last->dev_stc - delta_stc;
630 631 632
	if (x1 == x2)
		goto done;

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
	y1 = (first->dev_sof + 2048) << 16;
	y2 = (last->dev_sof + 2048) << 16;
	if (y2 < y1)
		y2 += 2048 << 16;

	y = (u64)(y2 - y1) * (1ULL << 31) + (u64)y1 * (u64)x2
	  - (u64)y2 * (u64)x1;
	y = div_u64(y, x2 - x1);

	sof = y;

	uvc_trace(UVC_TRACE_CLOCK, "%s: PTS %u y %llu.%06llu SOF %u.%06llu "
		  "(x1 %u x2 %u y1 %u y2 %u SOF offset %u)\n",
		  stream->dev->name, buf->pts,
		  y >> 16, div_u64((y & 0xffff) * 1000000, 65536),
		  sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536),
		  x1, x2, y1, y2, clock->sof_offset);

	/* Second step, SOF to host clock conversion. */
	x1 = (uvc_video_clock_host_sof(first) + 2048) << 16;
	x2 = (uvc_video_clock_host_sof(last) + 2048) << 16;
	if (x2 < x1)
		x2 += 2048 << 16;
656 657 658 659 660 661
	if (x1 == x2)
		goto done;

	ts = timespec_sub(last->host_ts, first->host_ts);
	y1 = NSEC_PER_SEC;
	y2 = (ts.tv_sec + 1) * NSEC_PER_SEC + ts.tv_nsec;
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690

	/* Interpolated and host SOF timestamps can wrap around at slightly
	 * different times. Handle this by adding or removing 2048 to or from
	 * the computed SOF value to keep it close to the SOF samples mean
	 * value.
	 */
	mean = (x1 + x2) / 2;
	if (mean - (1024 << 16) > sof)
		sof += 2048 << 16;
	else if (sof > mean + (1024 << 16))
		sof -= 2048 << 16;

	y = (u64)(y2 - y1) * (u64)sof + (u64)y1 * (u64)x2
	  - (u64)y2 * (u64)x1;
	y = div_u64(y, x2 - x1);

	div = div_u64_rem(y, NSEC_PER_SEC, &rem);
	ts.tv_sec = first->host_ts.tv_sec - 1 + div;
	ts.tv_nsec = first->host_ts.tv_nsec + rem;
	if (ts.tv_nsec >= NSEC_PER_SEC) {
		ts.tv_sec++;
		ts.tv_nsec -= NSEC_PER_SEC;
	}

	uvc_trace(UVC_TRACE_CLOCK, "%s: SOF %u.%06llu y %llu ts %lu.%06lu "
		  "buf ts %lu.%06lu (x1 %u/%u/%u x2 %u/%u/%u y1 %u y2 %u)\n",
		  stream->dev->name,
		  sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536),
		  y, ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC,
691 692
		  v4l2_buf->timestamp.tv_sec,
		  (unsigned long)v4l2_buf->timestamp.tv_usec,
693 694 695 696 697 698 699 700 701 702 703
		  x1, first->host_sof, first->dev_sof,
		  x2, last->host_sof, last->dev_sof, y1, y2);

	/* Update the V4L2 buffer. */
	v4l2_buf->timestamp.tv_sec = ts.tv_sec;
	v4l2_buf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC;

done:
	spin_unlock_irqrestore(&stream->clock.lock, flags);
}

704 705 706 707 708 709 710 711
/* ------------------------------------------------------------------------
 * Stream statistics
 */

static void uvc_video_stats_decode(struct uvc_streaming *stream,
		const __u8 *data, int len)
{
	unsigned int header_size;
712 713 714 715 716
	bool has_pts = false;
	bool has_scr = false;
	u16 uninitialized_var(scr_sof);
	u32 uninitialized_var(scr_stc);
	u32 uninitialized_var(pts);
717 718 719 720 721 722 723 724

	if (stream->stats.stream.nb_frames == 0 &&
	    stream->stats.frame.nb_packets == 0)
		ktime_get_ts(&stream->stats.stream.start_ts);

	switch (data[1] & (UVC_STREAM_PTS | UVC_STREAM_SCR)) {
	case UVC_STREAM_PTS | UVC_STREAM_SCR:
		header_size = 12;
725 726
		has_pts = true;
		has_scr = true;
727 728 729
		break;
	case UVC_STREAM_PTS:
		header_size = 6;
730
		has_pts = true;
731 732 733
		break;
	case UVC_STREAM_SCR:
		header_size = 8;
734
		has_scr = true;
735 736 737 738 739 740 741 742 743 744 745 746
		break;
	default:
		header_size = 2;
		break;
	}

	/* Check for invalid headers. */
	if (len < header_size || data[0] < header_size) {
		stream->stats.frame.nb_invalid++;
		return;
	}

747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
	/* Extract the timestamps. */
	if (has_pts)
		pts = get_unaligned_le32(&data[2]);

	if (has_scr) {
		scr_stc = get_unaligned_le32(&data[header_size - 6]);
		scr_sof = get_unaligned_le16(&data[header_size - 2]);
	}

	/* Is PTS constant through the whole frame ? */
	if (has_pts && stream->stats.frame.nb_pts) {
		if (stream->stats.frame.pts != pts) {
			stream->stats.frame.nb_pts_diffs++;
			stream->stats.frame.last_pts_diff =
				stream->stats.frame.nb_packets;
		}
	}

	if (has_pts) {
		stream->stats.frame.nb_pts++;
		stream->stats.frame.pts = pts;
	}

	/* Do all frames have a PTS in their first non-empty packet, or before
	 * their first empty packet ?
	 */
	if (stream->stats.frame.size == 0) {
		if (len > header_size)
			stream->stats.frame.has_initial_pts = has_pts;
		if (len == header_size && has_pts)
			stream->stats.frame.has_early_pts = true;
	}

	/* Do the SCR.STC and SCR.SOF fields vary through the frame ? */
	if (has_scr && stream->stats.frame.nb_scr) {
		if (stream->stats.frame.scr_stc != scr_stc)
			stream->stats.frame.nb_scr_diffs++;
	}

	if (has_scr) {
		/* Expand the SOF counter to 32 bits and store its value. */
		if (stream->stats.stream.nb_frames > 0 ||
		    stream->stats.frame.nb_scr > 0)
			stream->stats.stream.scr_sof_count +=
				(scr_sof - stream->stats.stream.scr_sof) % 2048;
		stream->stats.stream.scr_sof = scr_sof;

		stream->stats.frame.nb_scr++;
		stream->stats.frame.scr_stc = scr_stc;
		stream->stats.frame.scr_sof = scr_sof;

		if (scr_sof < stream->stats.stream.min_sof)
			stream->stats.stream.min_sof = scr_sof;
		if (scr_sof > stream->stats.stream.max_sof)
			stream->stats.stream.max_sof = scr_sof;
	}

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
	/* Record the first non-empty packet number. */
	if (stream->stats.frame.size == 0 && len > header_size)
		stream->stats.frame.first_data = stream->stats.frame.nb_packets;

	/* Update the frame size. */
	stream->stats.frame.size += len - header_size;

	/* Update the packets counters. */
	stream->stats.frame.nb_packets++;
	if (len > header_size)
		stream->stats.frame.nb_empty++;

	if (data[1] & UVC_STREAM_ERR)
		stream->stats.frame.nb_errors++;
}

static void uvc_video_stats_update(struct uvc_streaming *stream)
{
	struct uvc_stats_frame *frame = &stream->stats.frame;

824 825 826
	uvc_trace(UVC_TRACE_STATS, "frame %u stats: %u/%u/%u packets, "
		  "%u/%u/%u pts (%searly %sinitial), %u/%u scr, "
		  "last pts/stc/sof %u/%u/%u\n",
827
		  stream->sequence, frame->first_data,
828 829 830 831 832 833
		  frame->nb_packets - frame->nb_empty, frame->nb_packets,
		  frame->nb_pts_diffs, frame->last_pts_diff, frame->nb_pts,
		  frame->has_early_pts ? "" : "!",
		  frame->has_initial_pts ? "" : "!",
		  frame->nb_scr_diffs, frame->nb_scr,
		  frame->pts, frame->scr_stc, frame->scr_sof);
834 835 836 837 838 839 840

	stream->stats.stream.nb_frames++;
	stream->stats.stream.nb_packets += stream->stats.frame.nb_packets;
	stream->stats.stream.nb_empty += stream->stats.frame.nb_empty;
	stream->stats.stream.nb_errors += stream->stats.frame.nb_errors;
	stream->stats.stream.nb_invalid += stream->stats.frame.nb_invalid;

841 842 843 844 845 846 847 848 849 850 851
	if (frame->has_early_pts)
		stream->stats.stream.nb_pts_early++;
	if (frame->has_initial_pts)
		stream->stats.stream.nb_pts_initial++;
	if (frame->last_pts_diff <= frame->first_data)
		stream->stats.stream.nb_pts_constant++;
	if (frame->nb_scr >= frame->nb_packets - frame->nb_empty)
		stream->stats.stream.nb_scr_count_ok++;
	if (frame->nb_scr_diffs + 1 == frame->nb_scr)
		stream->stats.stream.nb_scr_diffs_ok++;

852 853 854 855 856 857
	memset(&stream->stats.frame, 0, sizeof(stream->stats.frame));
}

size_t uvc_video_stats_dump(struct uvc_streaming *stream, char *buf,
			    size_t size)
{
858 859 860
	unsigned int scr_sof_freq;
	unsigned int duration;
	struct timespec ts;
861 862
	size_t count = 0;

863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
	ts.tv_sec = stream->stats.stream.stop_ts.tv_sec
		  - stream->stats.stream.start_ts.tv_sec;
	ts.tv_nsec = stream->stats.stream.stop_ts.tv_nsec
		   - stream->stats.stream.start_ts.tv_nsec;
	if (ts.tv_nsec < 0) {
		ts.tv_sec--;
		ts.tv_nsec += 1000000000;
	}

	/* Compute the SCR.SOF frequency estimate. At the nominal 1kHz SOF
	 * frequency this will not overflow before more than 1h.
	 */
	duration = ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
	if (duration != 0)
		scr_sof_freq = stream->stats.stream.scr_sof_count * 1000
			     / duration;
	else
		scr_sof_freq = 0;

882 883 884 885 886 887 888 889
	count += scnprintf(buf + count, size - count,
			   "frames:  %u\npackets: %u\nempty:   %u\n"
			   "errors:  %u\ninvalid: %u\n",
			   stream->stats.stream.nb_frames,
			   stream->stats.stream.nb_packets,
			   stream->stats.stream.nb_empty,
			   stream->stats.stream.nb_errors,
			   stream->stats.stream.nb_invalid);
890 891 892 893 894 895 896 897 898 899 900 901 902 903
	count += scnprintf(buf + count, size - count,
			   "pts: %u early, %u initial, %u ok\n",
			   stream->stats.stream.nb_pts_early,
			   stream->stats.stream.nb_pts_initial,
			   stream->stats.stream.nb_pts_constant);
	count += scnprintf(buf + count, size - count,
			   "scr: %u count ok, %u diff ok\n",
			   stream->stats.stream.nb_scr_count_ok,
			   stream->stats.stream.nb_scr_diffs_ok);
	count += scnprintf(buf + count, size - count,
			   "sof: %u <= sof <= %u, freq %u.%03u kHz\n",
			   stream->stats.stream.min_sof,
			   stream->stats.stream.max_sof,
			   scr_sof_freq / 1000, scr_sof_freq % 1000);
904 905 906 907 908 909 910

	return count;
}

static void uvc_video_stats_start(struct uvc_streaming *stream)
{
	memset(&stream->stats, 0, sizeof(stream->stats));
911
	stream->stats.stream.min_sof = 2048;
912 913 914 915 916 917 918
}

static void uvc_video_stats_stop(struct uvc_streaming *stream)
{
	ktime_get_ts(&stream->stats.stream.stop_ts);
}

919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
/* ------------------------------------------------------------------------
 * Video codecs
 */

/* Video payload decoding is handled by uvc_video_decode_start(),
 * uvc_video_decode_data() and uvc_video_decode_end().
 *
 * uvc_video_decode_start is called with URB data at the start of a bulk or
 * isochronous payload. It processes header data and returns the header size
 * in bytes if successful. If an error occurs, it returns a negative error
 * code. The following error codes have special meanings.
 *
 * - EAGAIN informs the caller that the current video buffer should be marked
 *   as done, and that the function should be called again with the same data
 *   and a new video buffer. This is used when end of frame conditions can be
 *   reliably detected at the beginning of the next frame only.
 *
 * If an error other than -EAGAIN is returned, the caller will drop the current
 * payload. No call to uvc_video_decode_data and uvc_video_decode_end will be
 * made until the next payload. -ENODATA can be used to drop the current
 * payload if no other error code is appropriate.
 *
 * uvc_video_decode_data is called for every URB with URB data. It copies the
 * data to the video buffer.
 *
 * uvc_video_decode_end is called with header data at the end of a bulk or
 * isochronous payload. It performs any additional header data processing and
L
Lucas De Marchi 已提交
946
 * returns 0 or a negative error code if an error occurred. As header data have
947 948 949
 * already been processed by uvc_video_decode_start, this functions isn't
 * required to perform sanity checks a second time.
 *
L
Lucas De Marchi 已提交
950
 * For isochronous transfers where a payload is always transferred in a single
951 952 953 954 955 956 957
 * URB, the three functions will be called in a row.
 *
 * To let the decoder process header data and update its internal state even
 * when no video buffer is available, uvc_video_decode_start must be prepared
 * to be called with a NULL buf parameter. uvc_video_decode_data and
 * uvc_video_decode_end will never be called with a NULL buffer.
 */
958
static int uvc_video_decode_start(struct uvc_streaming *stream,
959 960 961 962 963 964 965 966 967
		struct uvc_buffer *buf, const __u8 *data, int len)
{
	__u8 fid;

	/* Sanity checks:
	 * - packet must be at least 2 bytes long
	 * - bHeaderLength value must be at least 2 bytes (see above)
	 * - bHeaderLength value can't be larger than the packet size.
	 */
968 969
	if (len < 2 || data[0] < 2 || data[0] > len) {
		stream->stats.frame.nb_invalid++;
970
		return -EINVAL;
971
	}
972 973 974

	fid = data[1] & UVC_STREAM_FID;

975 976 977
	/* Increase the sequence number regardless of any buffer states, so
	 * that discontinuous sequence numbers always indicate lost frames.
	 */
978
	if (stream->last_fid != fid) {
979
		stream->sequence++;
980 981 982 983
		if (stream->sequence)
			uvc_video_stats_update(stream);
	}

984
	uvc_video_clock_decode(stream, buf, data, len);
985
	uvc_video_stats_decode(stream, data, len);
986

987 988 989 990
	/* Store the payload FID bit and return immediately when the buffer is
	 * NULL.
	 */
	if (buf == NULL) {
991
		stream->last_fid = fid;
992 993 994
		return -ENODATA;
	}

995 996 997 998 999 1000 1001
	/* Mark the buffer as bad if the error bit is set. */
	if (data[1] & UVC_STREAM_ERR) {
		uvc_trace(UVC_TRACE_FRAME, "Marking buffer as bad (error bit "
			  "set).\n");
		buf->error = 1;
	}

1002 1003
	/* Synchronize to the input stream by waiting for the FID bit to be
	 * toggled when the the buffer state is not UVC_BUF_STATE_ACTIVE.
1004
	 * stream->last_fid is initialized to -1, so the first isochronous
1005 1006
	 * frame will always be in sync.
	 *
1007
	 * If the device doesn't toggle the FID bit, invert stream->last_fid
1008 1009 1010
	 * when the EOF bit is set to force synchronisation on the next packet.
	 */
	if (buf->state != UVC_BUF_STATE_ACTIVE) {
1011 1012
		struct timespec ts;

1013
		if (fid == stream->last_fid) {
1014 1015
			uvc_trace(UVC_TRACE_FRAME, "Dropping payload (out of "
				"sync).\n");
1016
			if ((stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID) &&
1017
			    (data[1] & UVC_STREAM_EOF))
1018
				stream->last_fid ^= UVC_STREAM_FID;
1019 1020 1021
			return -ENODATA;
		}

1022
		uvc_video_get_ts(&ts);
1023

1024
		buf->buf.v4l2_buf.field = V4L2_FIELD_NONE;
1025 1026 1027 1028
		buf->buf.v4l2_buf.sequence = stream->sequence;
		buf->buf.v4l2_buf.timestamp.tv_sec = ts.tv_sec;
		buf->buf.v4l2_buf.timestamp.tv_usec =
			ts.tv_nsec / NSEC_PER_USEC;
1029

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
		/* TODO: Handle PTS and SCR. */
		buf->state = UVC_BUF_STATE_ACTIVE;
	}

	/* Mark the buffer as done if we're at the beginning of a new frame.
	 * End of frame detection is better implemented by checking the EOF
	 * bit (FID bit toggling is delayed by one frame compared to the EOF
	 * bit), but some devices don't set the bit at end of frame (and the
	 * last payload can be lost anyway). We thus must check if the FID has
	 * been toggled.
	 *
1041
	 * stream->last_fid is initialized to -1, so the first isochronous
1042 1043 1044 1045
	 * frame will never trigger an end of frame detection.
	 *
	 * Empty buffers (bytesused == 0) don't trigger end of frame detection
	 * as it doesn't make sense to return an empty buffer. This also
1046
	 * avoids detecting end of frame conditions at FID toggling if the
1047 1048
	 * previous payload had the EOF bit set.
	 */
1049
	if (fid != stream->last_fid && buf->bytesused != 0) {
1050 1051
		uvc_trace(UVC_TRACE_FRAME, "Frame complete (FID bit "
				"toggled).\n");
1052
		buf->state = UVC_BUF_STATE_READY;
1053 1054 1055
		return -EAGAIN;
	}

1056
	stream->last_fid = fid;
1057 1058 1059 1060

	return data[0];
}

1061
static void uvc_video_decode_data(struct uvc_streaming *stream,
1062 1063 1064 1065 1066 1067 1068 1069 1070
		struct uvc_buffer *buf, const __u8 *data, int len)
{
	unsigned int maxlen, nbytes;
	void *mem;

	if (len <= 0)
		return;

	/* Copy the video data to the buffer. */
1071 1072
	maxlen = buf->length - buf->bytesused;
	mem = buf->mem + buf->bytesused;
1073 1074
	nbytes = min((unsigned int)len, maxlen);
	memcpy(mem, data, nbytes);
1075
	buf->bytesused += nbytes;
1076 1077 1078 1079

	/* Complete the current frame if the buffer size was exceeded. */
	if (len > maxlen) {
		uvc_trace(UVC_TRACE_FRAME, "Frame complete (overflow).\n");
1080
		buf->state = UVC_BUF_STATE_READY;
1081 1082 1083
	}
}

1084
static void uvc_video_decode_end(struct uvc_streaming *stream,
1085 1086 1087
		struct uvc_buffer *buf, const __u8 *data, int len)
{
	/* Mark the buffer as done if the EOF marker is set. */
1088
	if (data[1] & UVC_STREAM_EOF && buf->bytesused != 0) {
1089 1090 1091
		uvc_trace(UVC_TRACE_FRAME, "Frame complete (EOF found).\n");
		if (data[0] == len)
			uvc_trace(UVC_TRACE_FRAME, "EOF in empty payload.\n");
1092
		buf->state = UVC_BUF_STATE_READY;
1093 1094
		if (stream->dev->quirks & UVC_QUIRK_STREAM_NO_FID)
			stream->last_fid ^= UVC_STREAM_FID;
1095 1096 1097
	}
}

1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
/* Video payload encoding is handled by uvc_video_encode_header() and
 * uvc_video_encode_data(). Only bulk transfers are currently supported.
 *
 * uvc_video_encode_header is called at the start of a payload. It adds header
 * data to the transfer buffer and returns the header size. As the only known
 * UVC output device transfers a whole frame in a single payload, the EOF bit
 * is always set in the header.
 *
 * uvc_video_encode_data is called for every URB and copies the data from the
 * video buffer to the transfer buffer.
 */
1109
static int uvc_video_encode_header(struct uvc_streaming *stream,
1110 1111 1112 1113
		struct uvc_buffer *buf, __u8 *data, int len)
{
	data[0] = 2;	/* Header length */
	data[1] = UVC_STREAM_EOH | UVC_STREAM_EOF
1114
		| (stream->last_fid & UVC_STREAM_FID);
1115 1116 1117
	return 2;
}

1118
static int uvc_video_encode_data(struct uvc_streaming *stream,
1119 1120
		struct uvc_buffer *buf, __u8 *data, int len)
{
1121
	struct uvc_video_queue *queue = &stream->queue;
1122 1123 1124 1125
	unsigned int nbytes;
	void *mem;

	/* Copy video data to the URB buffer. */
1126 1127
	mem = buf->mem + queue->buf_used;
	nbytes = min((unsigned int)len, buf->bytesused - queue->buf_used);
1128
	nbytes = min(stream->bulk.max_payload_size - stream->bulk.payload_size,
1129 1130 1131 1132 1133 1134 1135 1136
			nbytes);
	memcpy(data, mem, nbytes);

	queue->buf_used += nbytes;

	return nbytes;
}

1137 1138 1139 1140
/* ------------------------------------------------------------------------
 * URB handling
 */

1141 1142 1143 1144 1145 1146
/*
 * Set error flag for incomplete buffer.
 */
static void uvc_video_validate_buffer(const struct uvc_streaming *stream,
				      struct uvc_buffer *buf)
{
1147
	if (stream->ctrl.dwMaxVideoFrameSize != buf->bytesused &&
1148 1149 1150 1151
	    !(stream->cur_format->flags & UVC_FMT_FLAG_COMPRESSED))
		buf->error = 1;
}

1152 1153 1154
/*
 * Completion handler for video URBs.
 */
1155 1156
static void uvc_video_decode_isoc(struct urb *urb, struct uvc_streaming *stream,
	struct uvc_buffer *buf)
1157 1158 1159 1160 1161 1162 1163 1164
{
	u8 *mem;
	int ret, i;

	for (i = 0; i < urb->number_of_packets; ++i) {
		if (urb->iso_frame_desc[i].status < 0) {
			uvc_trace(UVC_TRACE_FRAME, "USB isochronous frame "
				"lost (%d).\n", urb->iso_frame_desc[i].status);
1165 1166 1167
			/* Mark the buffer as faulty. */
			if (buf != NULL)
				buf->error = 1;
1168 1169 1170 1171 1172 1173
			continue;
		}

		/* Decode the payload header. */
		mem = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
		do {
1174
			ret = uvc_video_decode_start(stream, buf, mem,
1175
				urb->iso_frame_desc[i].actual_length);
1176 1177
			if (ret == -EAGAIN) {
				uvc_video_validate_buffer(stream, buf);
1178 1179
				buf = uvc_queue_next_buffer(&stream->queue,
							    buf);
1180
			}
1181 1182 1183 1184 1185 1186
		} while (ret == -EAGAIN);

		if (ret < 0)
			continue;

		/* Decode the payload data. */
1187
		uvc_video_decode_data(stream, buf, mem + ret,
1188 1189 1190
			urb->iso_frame_desc[i].actual_length - ret);

		/* Process the header again. */
1191
		uvc_video_decode_end(stream, buf, mem,
1192
			urb->iso_frame_desc[i].actual_length);
1193

1194
		if (buf->state == UVC_BUF_STATE_READY) {
1195
			uvc_video_validate_buffer(stream, buf);
1196
			buf = uvc_queue_next_buffer(&stream->queue, buf);
1197
		}
1198 1199 1200
	}
}

1201 1202
static void uvc_video_decode_bulk(struct urb *urb, struct uvc_streaming *stream,
	struct uvc_buffer *buf)
1203 1204 1205 1206
{
	u8 *mem;
	int len, ret;

1207 1208 1209 1210 1211
	/*
	 * Ignore ZLPs if they're not part of a frame, otherwise process them
	 * to trigger the end of payload detection.
	 */
	if (urb->actual_length == 0 && stream->bulk.header_size == 0)
1212 1213
		return;

1214 1215
	mem = urb->transfer_buffer;
	len = urb->actual_length;
1216
	stream->bulk.payload_size += len;
1217 1218 1219 1220

	/* If the URB is the first of its payload, decode and save the
	 * header.
	 */
1221
	if (stream->bulk.header_size == 0 && !stream->bulk.skip_payload) {
1222
		do {
1223
			ret = uvc_video_decode_start(stream, buf, mem, len);
1224
			if (ret == -EAGAIN)
1225 1226
				buf = uvc_queue_next_buffer(&stream->queue,
							    buf);
1227 1228
		} while (ret == -EAGAIN);

L
Lucas De Marchi 已提交
1229
		/* If an error occurred skip the rest of the payload. */
1230
		if (ret < 0 || buf == NULL) {
1231
			stream->bulk.skip_payload = 1;
1232
		} else {
1233 1234
			memcpy(stream->bulk.header, mem, ret);
			stream->bulk.header_size = ret;
1235

1236 1237 1238
			mem += ret;
			len -= ret;
		}
1239 1240 1241 1242 1243 1244 1245 1246
	}

	/* The buffer queue might have been cancelled while a bulk transfer
	 * was in progress, so we can reach here with buf equal to NULL. Make
	 * sure buf is never dereferenced if NULL.
	 */

	/* Process video data. */
1247 1248
	if (!stream->bulk.skip_payload && buf != NULL)
		uvc_video_decode_data(stream, buf, mem, len);
1249 1250 1251 1252 1253

	/* Detect the payload end by a URB smaller than the maximum size (or
	 * a payload size equal to the maximum) and process the header again.
	 */
	if (urb->actual_length < urb->transfer_buffer_length ||
1254 1255 1256 1257
	    stream->bulk.payload_size >= stream->bulk.max_payload_size) {
		if (!stream->bulk.skip_payload && buf != NULL) {
			uvc_video_decode_end(stream, buf, stream->bulk.header,
				stream->bulk.payload_size);
1258
			if (buf->state == UVC_BUF_STATE_READY)
1259 1260
				buf = uvc_queue_next_buffer(&stream->queue,
							    buf);
1261 1262
		}

1263 1264 1265
		stream->bulk.header_size = 0;
		stream->bulk.skip_payload = 0;
		stream->bulk.payload_size = 0;
1266 1267 1268
	}
}

1269 1270
static void uvc_video_encode_bulk(struct urb *urb, struct uvc_streaming *stream,
	struct uvc_buffer *buf)
1271 1272
{
	u8 *mem = urb->transfer_buffer;
1273
	int len = stream->urb_size, ret;
1274 1275 1276 1277 1278 1279 1280

	if (buf == NULL) {
		urb->transfer_buffer_length = 0;
		return;
	}

	/* If the URB is the first of its payload, add the header. */
1281 1282 1283 1284
	if (stream->bulk.header_size == 0) {
		ret = uvc_video_encode_header(stream, buf, mem, len);
		stream->bulk.header_size = ret;
		stream->bulk.payload_size += ret;
1285 1286 1287 1288 1289
		mem += ret;
		len -= ret;
	}

	/* Process video data. */
1290
	ret = uvc_video_encode_data(stream, buf, mem, len);
1291

1292
	stream->bulk.payload_size += ret;
1293 1294
	len -= ret;

1295
	if (buf->bytesused == stream->queue.buf_used ||
1296
	    stream->bulk.payload_size == stream->bulk.max_payload_size) {
1297
		if (buf->bytesused == stream->queue.buf_used) {
1298
			stream->queue.buf_used = 0;
1299
			buf->state = UVC_BUF_STATE_READY;
1300
			buf->buf.v4l2_buf.sequence = ++stream->sequence;
1301 1302
			uvc_queue_next_buffer(&stream->queue, buf);
			stream->last_fid ^= UVC_STREAM_FID;
1303 1304
		}

1305 1306
		stream->bulk.header_size = 0;
		stream->bulk.payload_size = 0;
1307 1308
	}

1309
	urb->transfer_buffer_length = stream->urb_size - len;
1310 1311
}

1312 1313
static void uvc_video_complete(struct urb *urb)
{
1314 1315
	struct uvc_streaming *stream = urb->context;
	struct uvc_video_queue *queue = &stream->queue;
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
	struct uvc_buffer *buf = NULL;
	unsigned long flags;
	int ret;

	switch (urb->status) {
	case 0:
		break;

	default:
		uvc_printk(KERN_WARNING, "Non-zero status (%d) in video "
			"completion handler.\n", urb->status);

	case -ENOENT:		/* usb_kill_urb() called. */
1329
		if (stream->frozen)
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
			return;

	case -ECONNRESET:	/* usb_unlink_urb() called. */
	case -ESHUTDOWN:	/* The endpoint is being disabled. */
		uvc_queue_cancel(queue, urb->status == -ESHUTDOWN);
		return;
	}

	spin_lock_irqsave(&queue->irqlock, flags);
	if (!list_empty(&queue->irqqueue))
		buf = list_first_entry(&queue->irqqueue, struct uvc_buffer,
				       queue);
	spin_unlock_irqrestore(&queue->irqlock, flags);

1344
	stream->decode(urb, stream, buf);
1345 1346 1347 1348 1349 1350 1351

	if ((ret = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
		uvc_printk(KERN_ERR, "Failed to resubmit video URB (%d).\n",
			ret);
	}
}

1352 1353 1354
/*
 * Free transfer buffers.
 */
1355
static void uvc_free_urb_buffers(struct uvc_streaming *stream)
1356 1357 1358 1359
{
	unsigned int i;

	for (i = 0; i < UVC_URBS; ++i) {
1360
		if (stream->urb_buffer[i]) {
1361
#ifndef CONFIG_DMA_NONCOHERENT
1362
			usb_free_coherent(stream->dev->udev, stream->urb_size,
1363
				stream->urb_buffer[i], stream->urb_dma[i]);
1364 1365 1366
#else
			kfree(stream->urb_buffer[i]);
#endif
1367
			stream->urb_buffer[i] = NULL;
1368 1369 1370
		}
	}

1371
	stream->urb_size = 0;
1372 1373 1374 1375 1376 1377 1378
}

/*
 * Allocate transfer buffers. This function can be called with buffers
 * already allocated when resuming from suspend, in which case it will
 * return without touching the buffers.
 *
1379 1380 1381 1382 1383
 * Limit the buffer size to UVC_MAX_PACKETS bulk/isochronous packets. If the
 * system is too low on memory try successively smaller numbers of packets
 * until allocation succeeds.
 *
 * Return the number of allocated packets on success or 0 when out of memory.
1384
 */
1385
static int uvc_alloc_urb_buffers(struct uvc_streaming *stream,
1386
	unsigned int size, unsigned int psize, gfp_t gfp_flags)
1387
{
1388
	unsigned int npackets;
1389 1390 1391
	unsigned int i;

	/* Buffers are already allocated, bail out. */
1392 1393
	if (stream->urb_size)
		return stream->urb_size / psize;
1394

1395
	/* Compute the number of packets. Bulk endpoints might transfer UVC
L
Lucas De Marchi 已提交
1396
	 * payloads across multiple URBs.
1397 1398 1399 1400 1401 1402 1403 1404
	 */
	npackets = DIV_ROUND_UP(size, psize);
	if (npackets > UVC_MAX_PACKETS)
		npackets = UVC_MAX_PACKETS;

	/* Retry allocations until one succeed. */
	for (; npackets > 1; npackets /= 2) {
		for (i = 0; i < UVC_URBS; ++i) {
1405
			stream->urb_size = psize * npackets;
1406
#ifndef CONFIG_DMA_NONCOHERENT
1407
			stream->urb_buffer[i] = usb_alloc_coherent(
1408
				stream->dev->udev, stream->urb_size,
1409
				gfp_flags | __GFP_NOWARN, &stream->urb_dma[i]);
1410 1411 1412 1413
#else
			stream->urb_buffer[i] =
			    kmalloc(stream->urb_size, gfp_flags | __GFP_NOWARN);
#endif
1414 1415
			if (!stream->urb_buffer[i]) {
				uvc_free_urb_buffers(stream);
1416 1417 1418 1419 1420
				break;
			}
		}

		if (i == UVC_URBS) {
1421 1422 1423
			uvc_trace(UVC_TRACE_VIDEO, "Allocated %u URB buffers "
				"of %ux%u bytes each.\n", UVC_URBS, npackets,
				psize);
1424
			return npackets;
1425 1426 1427
		}
	}

1428 1429
	uvc_trace(UVC_TRACE_VIDEO, "Failed to allocate URB buffers (%u bytes "
		"per packet).\n", psize);
1430 1431 1432
	return 0;
}

1433 1434 1435
/*
 * Uninitialize isochronous/bulk URBs and free transfer buffers.
 */
1436
static void uvc_uninit_video(struct uvc_streaming *stream, int free_buffers)
1437 1438 1439 1440
{
	struct urb *urb;
	unsigned int i;

1441 1442
	uvc_video_stats_stop(stream);

1443
	for (i = 0; i < UVC_URBS; ++i) {
1444 1445
		urb = stream->urb[i];
		if (urb == NULL)
1446 1447 1448 1449
			continue;

		usb_kill_urb(urb);
		usb_free_urb(urb);
1450
		stream->urb[i] = NULL;
1451
	}
1452 1453

	if (free_buffers)
1454
		uvc_free_urb_buffers(stream);
1455 1456
}

1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
/*
 * Compute the maximum number of bytes per interval for an endpoint.
 */
static unsigned int uvc_endpoint_max_bpi(struct usb_device *dev,
					 struct usb_host_endpoint *ep)
{
	u16 psize;

	switch (dev->speed) {
	case USB_SPEED_SUPER:
H
Hans Verkuil 已提交
1467
		return le16_to_cpu(ep->ss_ep_comp.wBytesPerInterval);
1468 1469 1470
	case USB_SPEED_HIGH:
		psize = usb_endpoint_maxp(&ep->desc);
		return (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
1471 1472 1473
	case USB_SPEED_WIRELESS:
		psize = usb_endpoint_maxp(&ep->desc);
		return psize;
1474 1475 1476 1477 1478 1479
	default:
		psize = usb_endpoint_maxp(&ep->desc);
		return psize & 0x07ff;
	}
}

1480 1481 1482 1483
/*
 * Initialize isochronous URBs and allocate transfer buffers. The packet size
 * is given by the endpoint.
 */
1484
static int uvc_init_video_isoc(struct uvc_streaming *stream,
1485
	struct usb_host_endpoint *ep, gfp_t gfp_flags)
1486 1487 1488
{
	struct urb *urb;
	unsigned int npackets, i, j;
1489 1490
	u16 psize;
	u32 size;
1491

1492
	psize = uvc_endpoint_max_bpi(stream->dev->udev, ep);
1493
	size = stream->ctrl.dwMaxVideoFrameSize;
1494

1495
	npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags);
1496 1497
	if (npackets == 0)
		return -ENOMEM;
1498 1499 1500 1501

	size = npackets * psize;

	for (i = 0; i < UVC_URBS; ++i) {
1502
		urb = usb_alloc_urb(npackets, gfp_flags);
1503
		if (urb == NULL) {
1504
			uvc_uninit_video(stream, 1);
1505 1506 1507
			return -ENOMEM;
		}

1508 1509 1510
		urb->dev = stream->dev->udev;
		urb->context = stream;
		urb->pipe = usb_rcvisocpipe(stream->dev->udev,
1511
				ep->desc.bEndpointAddress);
1512
#ifndef CONFIG_DMA_NONCOHERENT
1513
		urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1514 1515 1516 1517
		urb->transfer_dma = stream->urb_dma[i];
#else
		urb->transfer_flags = URB_ISO_ASAP;
#endif
1518
		urb->interval = ep->desc.bInterval;
1519
		urb->transfer_buffer = stream->urb_buffer[i];
1520 1521 1522 1523 1524 1525 1526 1527 1528
		urb->complete = uvc_video_complete;
		urb->number_of_packets = npackets;
		urb->transfer_buffer_length = size;

		for (j = 0; j < npackets; ++j) {
			urb->iso_frame_desc[j].offset = j * psize;
			urb->iso_frame_desc[j].length = psize;
		}

1529
		stream->urb[i] = urb;
1530 1531 1532 1533 1534 1535 1536 1537 1538
	}

	return 0;
}

/*
 * Initialize bulk URBs and allocate transfer buffers. The packet size is
 * given by the endpoint.
 */
1539
static int uvc_init_video_bulk(struct uvc_streaming *stream,
1540
	struct usb_host_endpoint *ep, gfp_t gfp_flags)
1541 1542
{
	struct urb *urb;
1543 1544 1545 1546
	unsigned int npackets, pipe, i;
	u16 psize;
	u32 size;

1547
	psize = usb_endpoint_maxp(&ep->desc) & 0x7ff;
1548 1549
	size = stream->ctrl.dwMaxPayloadTransferSize;
	stream->bulk.max_payload_size = size;
1550

1551
	npackets = uvc_alloc_urb_buffers(stream, size, psize, gfp_flags);
1552
	if (npackets == 0)
1553 1554
		return -ENOMEM;

1555 1556
	size = npackets * psize;

1557
	if (usb_endpoint_dir_in(&ep->desc))
1558
		pipe = usb_rcvbulkpipe(stream->dev->udev,
1559 1560
				       ep->desc.bEndpointAddress);
	else
1561
		pipe = usb_sndbulkpipe(stream->dev->udev,
1562 1563
				       ep->desc.bEndpointAddress);

1564
	if (stream->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
1565
		size = 0;
1566 1567

	for (i = 0; i < UVC_URBS; ++i) {
1568
		urb = usb_alloc_urb(0, gfp_flags);
1569
		if (urb == NULL) {
1570
			uvc_uninit_video(stream, 1);
1571 1572 1573
			return -ENOMEM;
		}

1574 1575 1576
		usb_fill_bulk_urb(urb, stream->dev->udev, pipe,
			stream->urb_buffer[i], size, uvc_video_complete,
			stream);
1577
#ifndef CONFIG_DMA_NONCOHERENT
1578
		urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
1579
		urb->transfer_dma = stream->urb_dma[i];
1580
#endif
1581

1582
		stream->urb[i] = urb;
1583 1584 1585 1586 1587 1588 1589 1590
	}

	return 0;
}

/*
 * Initialize isochronous/bulk URBs and allocate transfer buffers.
 */
1591
static int uvc_init_video(struct uvc_streaming *stream, gfp_t gfp_flags)
1592
{
1593
	struct usb_interface *intf = stream->intf;
1594 1595
	struct usb_host_endpoint *ep;
	unsigned int i;
1596 1597
	int ret;

1598
	stream->sequence = -1;
1599 1600 1601 1602
	stream->last_fid = -1;
	stream->bulk.header_size = 0;
	stream->bulk.skip_payload = 0;
	stream->bulk.payload_size = 0;
1603

1604 1605
	uvc_video_stats_start(stream);

1606
	if (intf->num_altsetting > 1) {
1607
		struct usb_host_endpoint *best_ep = NULL;
1608
		unsigned int best_psize = UINT_MAX;
1609 1610 1611 1612
		unsigned int bandwidth;
		unsigned int uninitialized_var(altsetting);
		int intfnum = stream->intfnum;

1613
		/* Isochronous endpoint, select the alternate setting. */
1614
		bandwidth = stream->ctrl.dwMaxPayloadTransferSize;
1615 1616

		if (bandwidth == 0) {
1617 1618
			uvc_trace(UVC_TRACE_VIDEO, "Device requested null "
				"bandwidth, defaulting to lowest.\n");
1619
			bandwidth = 1;
1620 1621 1622
		} else {
			uvc_trace(UVC_TRACE_VIDEO, "Device requested %u "
				"B/frame bandwidth.\n", bandwidth);
1623 1624 1625
		}

		for (i = 0; i < intf->num_altsetting; ++i) {
1626 1627 1628
			struct usb_host_interface *alts;
			unsigned int psize;

1629 1630
			alts = &intf->altsetting[i];
			ep = uvc_find_endpoint(alts,
1631
				stream->header.bEndpointAddress);
1632 1633 1634 1635
			if (ep == NULL)
				continue;

			/* Check if the bandwidth is high enough. */
1636
			psize = uvc_endpoint_max_bpi(stream->dev->udev, ep);
1637
			if (psize >= bandwidth && psize <= best_psize) {
1638
				altsetting = alts->desc.bAlternateSetting;
1639 1640 1641
				best_psize = psize;
				best_ep = ep;
			}
1642 1643
		}

1644
		if (best_ep == NULL) {
1645 1646
			uvc_trace(UVC_TRACE_VIDEO, "No fast enough alt setting "
				"for requested bandwidth.\n");
1647
			return -EIO;
1648
		}
1649

1650 1651 1652 1653
		uvc_trace(UVC_TRACE_VIDEO, "Selecting alternate setting %u "
			"(%u B/frame bandwidth).\n", altsetting, best_psize);

		ret = usb_set_interface(stream->dev->udev, intfnum, altsetting);
1654
		if (ret < 0)
1655 1656
			return ret;

1657
		ret = uvc_init_video_isoc(stream, best_ep, gfp_flags);
1658 1659 1660
	} else {
		/* Bulk endpoint, proceed to URB initialization. */
		ep = uvc_find_endpoint(&intf->altsetting[0],
1661
				stream->header.bEndpointAddress);
1662 1663 1664
		if (ep == NULL)
			return -EIO;

1665
		ret = uvc_init_video_bulk(stream, ep, gfp_flags);
1666 1667 1668 1669 1670 1671 1672
	}

	if (ret < 0)
		return ret;

	/* Submit the URBs. */
	for (i = 0; i < UVC_URBS; ++i) {
1673 1674
		ret = usb_submit_urb(stream->urb[i], gfp_flags);
		if (ret < 0) {
1675 1676
			uvc_printk(KERN_ERR, "Failed to submit URB %u "
					"(%d).\n", i, ret);
1677
			uvc_uninit_video(stream, 1);
1678 1679 1680 1681
			return ret;
		}
	}

1682 1683 1684 1685 1686 1687
	/* The Logitech C920 temporarily forgets that it should not be adjusting
	 * Exposure Absolute during init so restore controls to stored values.
	 */
	if (stream->dev->quirks & UVC_QUIRK_RESTORE_CTRLS_ON_INIT)
		uvc_ctrl_restore_values(stream->dev);

1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
	return 0;
}

/* --------------------------------------------------------------------------
 * Suspend/resume
 */

/*
 * Stop streaming without disabling the video queue.
 *
 * To let userspace applications resume without trouble, we must not touch the
 * video buffers in any way. We mark the device as frozen to make sure the URB
 * completion handler won't try to cancel the queue when we kill the URBs.
 */
1702
int uvc_video_suspend(struct uvc_streaming *stream)
1703
{
1704
	if (!uvc_queue_streaming(&stream->queue))
1705 1706
		return 0;

1707 1708 1709
	stream->frozen = 1;
	uvc_uninit_video(stream, 0);
	usb_set_interface(stream->dev->udev, stream->intfnum, 0);
1710 1711 1712 1713
	return 0;
}

/*
1714
 * Reconfigure the video interface and restart streaming if it was enabled
1715 1716 1717 1718 1719 1720
 * before suspend.
 *
 * If an error occurs, disable the video queue. This will wake all pending
 * buffers, making sure userspace applications are notified of the problem
 * instead of waiting forever.
 */
1721
int uvc_video_resume(struct uvc_streaming *stream, int reset)
1722 1723 1724
{
	int ret;

1725 1726 1727 1728 1729 1730 1731 1732
	/* If the bus has been reset on resume, set the alternate setting to 0.
	 * This should be the default value, but some devices crash or otherwise
	 * misbehave if they don't receive a SET_INTERFACE request before any
	 * other video control request.
	 */
	if (reset)
		usb_set_interface(stream->dev->udev, stream->intfnum, 0);

1733
	stream->frozen = 0;
1734

1735 1736
	uvc_video_clock_reset(stream);

1737 1738 1739
	ret = uvc_commit_video(stream, &stream->ctrl);
	if (ret < 0) {
		uvc_queue_enable(&stream->queue, 0);
1740 1741 1742
		return ret;
	}

1743
	if (!uvc_queue_streaming(&stream->queue))
1744 1745
		return 0;

1746 1747 1748
	ret = uvc_init_video(stream, GFP_NOIO);
	if (ret < 0)
		uvc_queue_enable(&stream->queue, 0);
1749 1750 1751 1752 1753 1754 1755 1756 1757

	return ret;
}

/* ------------------------------------------------------------------------
 * Video device
 */

/*
1758 1759
 * Initialize the UVC video device by switching to alternate setting 0 and
 * retrieve the default format.
1760 1761 1762 1763 1764 1765 1766
 *
 * Some cameras (namely the Fuji Finepix) set the format and frame
 * indexes to zero. The UVC standard doesn't clearly make this a spec
 * violation, so try to silently fix the values if possible.
 *
 * This function is called before registering the device with V4L.
 */
1767
int uvc_video_init(struct uvc_streaming *stream)
1768
{
1769
	struct uvc_streaming_control *probe = &stream->ctrl;
1770 1771 1772 1773 1774
	struct uvc_format *format = NULL;
	struct uvc_frame *frame = NULL;
	unsigned int i;
	int ret;

1775
	if (stream->nformats == 0) {
1776 1777 1778 1779
		uvc_printk(KERN_INFO, "No supported video formats found.\n");
		return -EINVAL;
	}

1780 1781 1782
	atomic_set(&stream->active, 0);

	/* Initialize the video buffers queue. */
1783 1784 1785
	ret = uvc_queue_init(&stream->queue, stream->type, !uvc_no_drop_param);
	if (ret)
		return ret;
1786

1787 1788 1789 1790 1791
	/* Alternate setting 0 should be the default, yet the XBox Live Vision
	 * Cam (and possibly other devices) crash or otherwise misbehave if
	 * they don't receive a SET_INTERFACE request before any other video
	 * control request.
	 */
1792
	usb_set_interface(stream->dev->udev, stream->intfnum, 0);
1793

1794 1795 1796 1797
	/* Set the streaming probe control with default streaming parameters
	 * retrieved from the device. Webcams that don't suport GET_DEF
	 * requests on the probe control will just keep their current streaming
	 * parameters.
1798
	 */
1799 1800
	if (uvc_get_video_ctrl(stream, probe, 1, UVC_GET_DEF) == 0)
		uvc_set_video_ctrl(stream, probe, 1);
1801 1802 1803 1804 1805 1806

	/* Initialize the streaming parameters with the probe control current
	 * value. This makes sure SET_CUR requests on the streaming commit
	 * control will always use values retrieved from a successful GET_CUR
	 * request on the probe control, as required by the UVC specification.
	 */
1807
	ret = uvc_get_video_ctrl(stream, probe, 1, UVC_GET_CUR);
1808
	if (ret < 0)
1809 1810 1811 1812 1813
		return ret;

	/* Check if the default format descriptor exists. Use the first
	 * available format otherwise.
	 */
1814 1815
	for (i = stream->nformats; i > 0; --i) {
		format = &stream->format[i-1];
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
		if (format->index == probe->bFormatIndex)
			break;
	}

	if (format->nframes == 0) {
		uvc_printk(KERN_INFO, "No frame descriptor found for the "
			"default format.\n");
		return -EINVAL;
	}

	/* Zero bFrameIndex might be correct. Stream-based formats (including
	 * MPEG-2 TS and DV) do not support frames but have a dummy frame
	 * descriptor with bFrameIndex set to zero. If the default frame
1829
	 * descriptor is not found, use the first available frame.
1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
	 */
	for (i = format->nframes; i > 0; --i) {
		frame = &format->frame[i-1];
		if (frame->bFrameIndex == probe->bFrameIndex)
			break;
	}

	probe->bFormatIndex = format->index;
	probe->bFrameIndex = frame->bFrameIndex;

1840
	stream->def_format = format;
1841 1842
	stream->cur_format = format;
	stream->cur_frame = frame;
1843 1844

	/* Select the video decoding function */
1845 1846 1847 1848 1849
	if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
		if (stream->dev->quirks & UVC_QUIRK_BUILTIN_ISIGHT)
			stream->decode = uvc_video_decode_isight;
		else if (stream->intf->num_altsetting > 1)
			stream->decode = uvc_video_decode_isoc;
1850
		else
1851
			stream->decode = uvc_video_decode_bulk;
1852
	} else {
1853 1854
		if (stream->intf->num_altsetting == 1)
			stream->decode = uvc_video_encode_bulk;
1855 1856 1857 1858 1859 1860
		else {
			uvc_printk(KERN_INFO, "Isochronous endpoints are not "
				"supported for video output devices.\n");
			return -EINVAL;
		}
	}
1861 1862 1863 1864 1865 1866 1867

	return 0;
}

/*
 * Enable or disable the video stream.
 */
1868
int uvc_video_enable(struct uvc_streaming *stream, int enable)
1869 1870 1871 1872
{
	int ret;

	if (!enable) {
1873
		uvc_uninit_video(stream, 1);
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
		if (stream->intf->num_altsetting > 1) {
			usb_set_interface(stream->dev->udev,
					  stream->intfnum, 0);
		} else {
			/* UVC doesn't specify how to inform a bulk-based device
			 * when the video stream is stopped. Windows sends a
			 * CLEAR_FEATURE(HALT) request to the video streaming
			 * bulk endpoint, mimic the same behaviour.
			 */
			unsigned int epnum = stream->header.bEndpointAddress
					   & USB_ENDPOINT_NUMBER_MASK;
			unsigned int dir = stream->header.bEndpointAddress
					 & USB_ENDPOINT_DIR_MASK;
			unsigned int pipe;

			pipe = usb_sndbulkpipe(stream->dev->udev, epnum) | dir;
			usb_clear_halt(stream->dev->udev, pipe);
		}

1893
		uvc_queue_enable(&stream->queue, 0);
1894
		uvc_video_clock_cleanup(stream);
1895 1896 1897
		return 0;
	}

1898
	ret = uvc_video_clock_init(stream);
1899
	if (ret < 0)
1900 1901
		return ret;

1902 1903 1904 1905
	ret = uvc_queue_enable(&stream->queue, 1);
	if (ret < 0)
		goto error_queue;

1906
	/* Commit the streaming parameters. */
1907
	ret = uvc_commit_video(stream, &stream->ctrl);
1908 1909
	if (ret < 0)
		goto error_commit;
1910

1911
	ret = uvc_init_video(stream, GFP_KERNEL);
1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
	if (ret < 0)
		goto error_video;

	return 0;

error_video:
	usb_set_interface(stream->dev->udev, stream->intfnum, 0);
error_commit:
	uvc_queue_enable(&stream->queue, 0);
error_queue:
	uvc_video_clock_cleanup(stream);
1923

1924 1925
	return ret;
}