2 * uvc_v4l2.c -- USB Video Class driver - V4L2 API
4 * Copyright (C) 2005-2010
5 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
14 #include <linux/compat.h>
15 #include <linux/kernel.h>
16 #include <linux/list.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/usb.h>
20 #include <linux/videodev2.h>
21 #include <linux/vmalloc.h>
23 #include <linux/wait.h>
24 #include <linux/atomic.h>
26 #include <media/v4l2-common.h>
27 #include <media/v4l2-ctrls.h>
28 #include <media/v4l2-event.h>
29 #include <media/v4l2-ioctl.h>
33 /* ------------------------------------------------------------------------
36 static int uvc_ioctl_ctrl_map(struct uvc_video_chain
*chain
,
37 struct uvc_xu_control_mapping
*xmap
)
39 struct uvc_control_mapping
*map
;
43 map
= kzalloc(sizeof *map
, GFP_KERNEL
);
48 memcpy(map
->name
, xmap
->name
, sizeof map
->name
);
49 memcpy(map
->entity
, xmap
->entity
, sizeof map
->entity
);
50 map
->selector
= xmap
->selector
;
51 map
->size
= xmap
->size
;
52 map
->offset
= xmap
->offset
;
53 map
->v4l2_type
= xmap
->v4l2_type
;
54 map
->data_type
= xmap
->data_type
;
56 switch (xmap
->v4l2_type
) {
57 case V4L2_CTRL_TYPE_INTEGER
:
58 case V4L2_CTRL_TYPE_BOOLEAN
:
59 case V4L2_CTRL_TYPE_BUTTON
:
62 case V4L2_CTRL_TYPE_MENU
:
63 /* Prevent excessive memory consumption, as well as integer
66 if (xmap
->menu_count
== 0 ||
67 xmap
->menu_count
> UVC_MAX_CONTROL_MENU_ENTRIES
) {
72 size
= xmap
->menu_count
* sizeof(*map
->menu_info
);
73 map
->menu_info
= kmalloc(size
, GFP_KERNEL
);
74 if (map
->menu_info
== NULL
) {
79 if (copy_from_user(map
->menu_info
, xmap
->menu_info
, size
)) {
84 map
->menu_count
= xmap
->menu_count
;
88 uvc_trace(UVC_TRACE_CONTROL
, "Unsupported V4L2 control type "
89 "%u.\n", xmap
->v4l2_type
);
94 ret
= uvc_ctrl_add_mapping(chain
, map
);
97 kfree(map
->menu_info
);
103 /* ------------------------------------------------------------------------
108 * Find the frame interval closest to the requested frame interval for the
109 * given frame format and size. This should be done by the device as part of
110 * the Video Probe and Commit negotiation, but some hardware don't implement
113 static __u32
uvc_try_frame_interval(struct uvc_frame
*frame
, __u32 interval
)
117 if (frame
->bFrameIntervalType
) {
118 __u32 best
= -1, dist
;
120 for (i
= 0; i
< frame
->bFrameIntervalType
; ++i
) {
121 dist
= interval
> frame
->dwFrameInterval
[i
]
122 ? interval
- frame
->dwFrameInterval
[i
]
123 : frame
->dwFrameInterval
[i
] - interval
;
131 interval
= frame
->dwFrameInterval
[i
-1];
133 const __u32 min
= frame
->dwFrameInterval
[0];
134 const __u32 max
= frame
->dwFrameInterval
[1];
135 const __u32 step
= frame
->dwFrameInterval
[2];
137 interval
= min
+ (interval
- min
+ step
/2) / step
* step
;
145 static int uvc_v4l2_try_format(struct uvc_streaming
*stream
,
146 struct v4l2_format
*fmt
, struct uvc_streaming_control
*probe
,
147 struct uvc_format
**uvc_format
, struct uvc_frame
**uvc_frame
)
149 struct uvc_format
*format
= NULL
;
150 struct uvc_frame
*frame
= NULL
;
152 unsigned int d
, maxd
;
158 if (fmt
->type
!= stream
->type
)
161 fcc
= (__u8
*)&fmt
->fmt
.pix
.pixelformat
;
162 uvc_trace(UVC_TRACE_FORMAT
, "Trying format 0x%08x (%c%c%c%c): %ux%u.\n",
163 fmt
->fmt
.pix
.pixelformat
,
164 fcc
[0], fcc
[1], fcc
[2], fcc
[3],
165 fmt
->fmt
.pix
.width
, fmt
->fmt
.pix
.height
);
167 /* Check if the hardware supports the requested format, use the default
170 for (i
= 0; i
< stream
->nformats
; ++i
) {
171 format
= &stream
->format
[i
];
172 if (format
->fcc
== fmt
->fmt
.pix
.pixelformat
)
176 if (i
== stream
->nformats
) {
177 format
= stream
->def_format
;
178 fmt
->fmt
.pix
.pixelformat
= format
->fcc
;
181 /* Find the closest image size. The distance between image sizes is
182 * the size in pixels of the non-overlapping regions between the
183 * requested size and the frame-specified size.
185 rw
= fmt
->fmt
.pix
.width
;
186 rh
= fmt
->fmt
.pix
.height
;
187 maxd
= (unsigned int)-1;
189 for (i
= 0; i
< format
->nframes
; ++i
) {
190 __u16 w
= format
->frame
[i
].wWidth
;
191 __u16 h
= format
->frame
[i
].wHeight
;
193 d
= min(w
, rw
) * min(h
, rh
);
194 d
= w
*h
+ rw
*rh
- 2*d
;
197 frame
= &format
->frame
[i
];
205 uvc_trace(UVC_TRACE_FORMAT
, "Unsupported size %ux%u.\n",
206 fmt
->fmt
.pix
.width
, fmt
->fmt
.pix
.height
);
210 /* Use the default frame interval. */
211 interval
= frame
->dwDefaultFrameInterval
;
212 uvc_trace(UVC_TRACE_FORMAT
, "Using default frame interval %u.%u us "
213 "(%u.%u fps).\n", interval
/10, interval
%10, 10000000/interval
,
214 (100000000/interval
)%10);
216 /* Set the format index, frame index and frame interval. */
217 memset(probe
, 0, sizeof *probe
);
218 probe
->bmHint
= 1; /* dwFrameInterval */
219 probe
->bFormatIndex
= format
->index
;
220 probe
->bFrameIndex
= frame
->bFrameIndex
;
221 probe
->dwFrameInterval
= uvc_try_frame_interval(frame
, interval
);
222 /* Some webcams stall the probe control set request when the
223 * dwMaxVideoFrameSize field is set to zero. The UVC specification
224 * clearly states that the field is read-only from the host, so this
225 * is a webcam bug. Set dwMaxVideoFrameSize to the value reported by
226 * the webcam to work around the problem.
228 * The workaround could probably be enabled for all webcams, so the
229 * quirk can be removed if needed. It's currently useful to detect
230 * webcam bugs and fix them before they hit the market (providing
231 * developers test their webcams with the Linux driver as well as with
232 * the Windows driver).
234 mutex_lock(&stream
->mutex
);
235 if (stream
->dev
->quirks
& UVC_QUIRK_PROBE_EXTRAFIELDS
)
236 probe
->dwMaxVideoFrameSize
=
237 stream
->ctrl
.dwMaxVideoFrameSize
;
239 /* Probe the device. */
240 ret
= uvc_probe_video(stream
, probe
);
241 mutex_unlock(&stream
->mutex
);
245 fmt
->fmt
.pix
.width
= frame
->wWidth
;
246 fmt
->fmt
.pix
.height
= frame
->wHeight
;
247 fmt
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
248 fmt
->fmt
.pix
.bytesperline
= format
->bpp
* frame
->wWidth
/ 8;
249 fmt
->fmt
.pix
.sizeimage
= probe
->dwMaxVideoFrameSize
;
250 fmt
->fmt
.pix
.colorspace
= format
->colorspace
;
251 fmt
->fmt
.pix
.priv
= 0;
253 if (uvc_format
!= NULL
)
254 *uvc_format
= format
;
255 if (uvc_frame
!= NULL
)
262 static int uvc_v4l2_get_format(struct uvc_streaming
*stream
,
263 struct v4l2_format
*fmt
)
265 struct uvc_format
*format
;
266 struct uvc_frame
*frame
;
269 if (fmt
->type
!= stream
->type
)
272 mutex_lock(&stream
->mutex
);
273 format
= stream
->cur_format
;
274 frame
= stream
->cur_frame
;
276 if (format
== NULL
|| frame
== NULL
) {
281 fmt
->fmt
.pix
.pixelformat
= format
->fcc
;
282 fmt
->fmt
.pix
.width
= frame
->wWidth
;
283 fmt
->fmt
.pix
.height
= frame
->wHeight
;
284 fmt
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
285 fmt
->fmt
.pix
.bytesperline
= format
->bpp
* frame
->wWidth
/ 8;
286 fmt
->fmt
.pix
.sizeimage
= stream
->ctrl
.dwMaxVideoFrameSize
;
287 fmt
->fmt
.pix
.colorspace
= format
->colorspace
;
288 fmt
->fmt
.pix
.priv
= 0;
291 mutex_unlock(&stream
->mutex
);
295 static int uvc_v4l2_set_format(struct uvc_streaming
*stream
,
296 struct v4l2_format
*fmt
)
298 struct uvc_streaming_control probe
;
299 struct uvc_format
*format
;
300 struct uvc_frame
*frame
;
303 if (fmt
->type
!= stream
->type
)
306 ret
= uvc_v4l2_try_format(stream
, fmt
, &probe
, &format
, &frame
);
310 mutex_lock(&stream
->mutex
);
312 if (uvc_queue_allocated(&stream
->queue
)) {
317 stream
->ctrl
= probe
;
318 stream
->cur_format
= format
;
319 stream
->cur_frame
= frame
;
322 mutex_unlock(&stream
->mutex
);
326 static int uvc_v4l2_get_streamparm(struct uvc_streaming
*stream
,
327 struct v4l2_streamparm
*parm
)
329 uint32_t numerator
, denominator
;
331 if (parm
->type
!= stream
->type
)
334 mutex_lock(&stream
->mutex
);
335 numerator
= stream
->ctrl
.dwFrameInterval
;
336 mutex_unlock(&stream
->mutex
);
338 denominator
= 10000000;
339 uvc_simplify_fraction(&numerator
, &denominator
, 8, 333);
341 memset(parm
, 0, sizeof *parm
);
342 parm
->type
= stream
->type
;
344 if (stream
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
345 parm
->parm
.capture
.capability
= V4L2_CAP_TIMEPERFRAME
;
346 parm
->parm
.capture
.capturemode
= 0;
347 parm
->parm
.capture
.timeperframe
.numerator
= numerator
;
348 parm
->parm
.capture
.timeperframe
.denominator
= denominator
;
349 parm
->parm
.capture
.extendedmode
= 0;
350 parm
->parm
.capture
.readbuffers
= 0;
352 parm
->parm
.output
.capability
= V4L2_CAP_TIMEPERFRAME
;
353 parm
->parm
.output
.outputmode
= 0;
354 parm
->parm
.output
.timeperframe
.numerator
= numerator
;
355 parm
->parm
.output
.timeperframe
.denominator
= denominator
;
361 static int uvc_v4l2_set_streamparm(struct uvc_streaming
*stream
,
362 struct v4l2_streamparm
*parm
)
364 struct uvc_streaming_control probe
;
365 struct v4l2_fract timeperframe
;
369 if (parm
->type
!= stream
->type
)
372 if (parm
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
373 timeperframe
= parm
->parm
.capture
.timeperframe
;
375 timeperframe
= parm
->parm
.output
.timeperframe
;
377 interval
= uvc_fraction_to_interval(timeperframe
.numerator
,
378 timeperframe
.denominator
);
379 uvc_trace(UVC_TRACE_FORMAT
, "Setting frame interval to %u/%u (%u).\n",
380 timeperframe
.numerator
, timeperframe
.denominator
, interval
);
382 mutex_lock(&stream
->mutex
);
384 if (uvc_queue_streaming(&stream
->queue
)) {
385 mutex_unlock(&stream
->mutex
);
389 probe
= stream
->ctrl
;
390 probe
.dwFrameInterval
=
391 uvc_try_frame_interval(stream
->cur_frame
, interval
);
393 /* Probe the device with the new settings. */
394 ret
= uvc_probe_video(stream
, &probe
);
396 mutex_unlock(&stream
->mutex
);
400 stream
->ctrl
= probe
;
401 mutex_unlock(&stream
->mutex
);
403 /* Return the actual frame period. */
404 timeperframe
.numerator
= probe
.dwFrameInterval
;
405 timeperframe
.denominator
= 10000000;
406 uvc_simplify_fraction(&timeperframe
.numerator
,
407 &timeperframe
.denominator
, 8, 333);
409 if (parm
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
410 parm
->parm
.capture
.timeperframe
= timeperframe
;
412 parm
->parm
.output
.timeperframe
= timeperframe
;
417 /* ------------------------------------------------------------------------
418 * Privilege management
422 * Privilege management is the multiple-open implementation basis. The current
423 * implementation is completely transparent for the end-user and doesn't
424 * require explicit use of the VIDIOC_G_PRIORITY and VIDIOC_S_PRIORITY ioctls.
425 * Those ioctls enable finer control on the device (by making possible for a
426 * user to request exclusive access to a device), but are not mature yet.
427 * Switching to the V4L2 priority mechanism might be considered in the future
428 * if this situation changes.
430 * Each open instance of a UVC device can either be in a privileged or
431 * unprivileged state. Only a single instance can be in a privileged state at
432 * a given time. Trying to perform an operation that requires privileges will
433 * automatically acquire the required privileges if possible, or return -EBUSY
434 * otherwise. Privileges are dismissed when closing the instance or when
435 * freeing the video buffers using VIDIOC_REQBUFS.
437 * Operations that require privileges are:
444 static int uvc_acquire_privileges(struct uvc_fh
*handle
)
446 /* Always succeed if the handle is already privileged. */
447 if (handle
->state
== UVC_HANDLE_ACTIVE
)
450 /* Check if the device already has a privileged handle. */
451 if (atomic_inc_return(&handle
->stream
->active
) != 1) {
452 atomic_dec(&handle
->stream
->active
);
456 handle
->state
= UVC_HANDLE_ACTIVE
;
460 static void uvc_dismiss_privileges(struct uvc_fh
*handle
)
462 if (handle
->state
== UVC_HANDLE_ACTIVE
)
463 atomic_dec(&handle
->stream
->active
);
465 handle
->state
= UVC_HANDLE_PASSIVE
;
468 static int uvc_has_privileges(struct uvc_fh
*handle
)
470 return handle
->state
== UVC_HANDLE_ACTIVE
;
473 /* ------------------------------------------------------------------------
474 * V4L2 file operations
477 static int uvc_v4l2_open(struct file
*file
)
479 struct uvc_streaming
*stream
;
480 struct uvc_fh
*handle
;
483 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_open\n");
484 stream
= video_drvdata(file
);
486 ret
= usb_autopm_get_interface(stream
->dev
->intf
);
490 /* Create the device handle. */
491 handle
= kzalloc(sizeof *handle
, GFP_KERNEL
);
492 if (handle
== NULL
) {
493 usb_autopm_put_interface(stream
->dev
->intf
);
497 mutex_lock(&stream
->dev
->lock
);
498 if (stream
->dev
->users
== 0) {
499 ret
= uvc_status_start(stream
->dev
, GFP_KERNEL
);
501 mutex_unlock(&stream
->dev
->lock
);
502 usb_autopm_put_interface(stream
->dev
->intf
);
508 stream
->dev
->users
++;
509 mutex_unlock(&stream
->dev
->lock
);
511 v4l2_fh_init(&handle
->vfh
, &stream
->vdev
);
512 v4l2_fh_add(&handle
->vfh
);
513 handle
->chain
= stream
->chain
;
514 handle
->stream
= stream
;
515 handle
->state
= UVC_HANDLE_PASSIVE
;
516 file
->private_data
= handle
;
521 static int uvc_v4l2_release(struct file
*file
)
523 struct uvc_fh
*handle
= file
->private_data
;
524 struct uvc_streaming
*stream
= handle
->stream
;
526 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_release\n");
528 /* Only free resources if this is a privileged handle. */
529 if (uvc_has_privileges(handle
))
530 uvc_queue_release(&stream
->queue
);
532 /* Release the file handle. */
533 uvc_dismiss_privileges(handle
);
534 v4l2_fh_del(&handle
->vfh
);
535 v4l2_fh_exit(&handle
->vfh
);
537 file
->private_data
= NULL
;
539 mutex_lock(&stream
->dev
->lock
);
540 if (--stream
->dev
->users
== 0)
541 uvc_status_stop(stream
->dev
);
542 mutex_unlock(&stream
->dev
->lock
);
544 usb_autopm_put_interface(stream
->dev
->intf
);
548 static int uvc_ioctl_querycap(struct file
*file
, void *fh
,
549 struct v4l2_capability
*cap
)
551 struct video_device
*vdev
= video_devdata(file
);
552 struct uvc_fh
*handle
= file
->private_data
;
553 struct uvc_video_chain
*chain
= handle
->chain
;
554 struct uvc_streaming
*stream
= handle
->stream
;
556 strlcpy(cap
->driver
, "uvcvideo", sizeof(cap
->driver
));
557 strlcpy(cap
->card
, vdev
->name
, sizeof(cap
->card
));
558 usb_make_path(stream
->dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
559 cap
->capabilities
= V4L2_CAP_DEVICE_CAPS
| V4L2_CAP_STREAMING
561 if (stream
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
562 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
564 cap
->device_caps
= V4L2_CAP_VIDEO_OUTPUT
| V4L2_CAP_STREAMING
;
569 static int uvc_ioctl_enum_fmt(struct uvc_streaming
*stream
,
570 struct v4l2_fmtdesc
*fmt
)
572 struct uvc_format
*format
;
573 enum v4l2_buf_type type
= fmt
->type
;
574 __u32 index
= fmt
->index
;
576 if (fmt
->type
!= stream
->type
|| fmt
->index
>= stream
->nformats
)
579 memset(fmt
, 0, sizeof(*fmt
));
583 format
= &stream
->format
[fmt
->index
];
585 if (format
->flags
& UVC_FMT_FLAG_COMPRESSED
)
586 fmt
->flags
|= V4L2_FMT_FLAG_COMPRESSED
;
587 strlcpy(fmt
->description
, format
->name
, sizeof(fmt
->description
));
588 fmt
->description
[sizeof(fmt
->description
) - 1] = 0;
589 fmt
->pixelformat
= format
->fcc
;
593 static int uvc_ioctl_enum_fmt_vid_cap(struct file
*file
, void *fh
,
594 struct v4l2_fmtdesc
*fmt
)
596 struct uvc_fh
*handle
= fh
;
597 struct uvc_streaming
*stream
= handle
->stream
;
599 return uvc_ioctl_enum_fmt(stream
, fmt
);
602 static int uvc_ioctl_enum_fmt_vid_out(struct file
*file
, void *fh
,
603 struct v4l2_fmtdesc
*fmt
)
605 struct uvc_fh
*handle
= fh
;
606 struct uvc_streaming
*stream
= handle
->stream
;
608 return uvc_ioctl_enum_fmt(stream
, fmt
);
611 static int uvc_ioctl_g_fmt_vid_cap(struct file
*file
, void *fh
,
612 struct v4l2_format
*fmt
)
614 struct uvc_fh
*handle
= fh
;
615 struct uvc_streaming
*stream
= handle
->stream
;
617 return uvc_v4l2_get_format(stream
, fmt
);
620 static int uvc_ioctl_g_fmt_vid_out(struct file
*file
, void *fh
,
621 struct v4l2_format
*fmt
)
623 struct uvc_fh
*handle
= fh
;
624 struct uvc_streaming
*stream
= handle
->stream
;
626 return uvc_v4l2_get_format(stream
, fmt
);
629 static int uvc_ioctl_s_fmt_vid_cap(struct file
*file
, void *fh
,
630 struct v4l2_format
*fmt
)
632 struct uvc_fh
*handle
= fh
;
633 struct uvc_streaming
*stream
= handle
->stream
;
636 ret
= uvc_acquire_privileges(handle
);
640 return uvc_v4l2_set_format(stream
, fmt
);
643 static int uvc_ioctl_s_fmt_vid_out(struct file
*file
, void *fh
,
644 struct v4l2_format
*fmt
)
646 struct uvc_fh
*handle
= fh
;
647 struct uvc_streaming
*stream
= handle
->stream
;
650 ret
= uvc_acquire_privileges(handle
);
654 return uvc_v4l2_set_format(stream
, fmt
);
657 static int uvc_ioctl_try_fmt_vid_cap(struct file
*file
, void *fh
,
658 struct v4l2_format
*fmt
)
660 struct uvc_fh
*handle
= fh
;
661 struct uvc_streaming
*stream
= handle
->stream
;
662 struct uvc_streaming_control probe
;
664 return uvc_v4l2_try_format(stream
, fmt
, &probe
, NULL
, NULL
);
667 static int uvc_ioctl_try_fmt_vid_out(struct file
*file
, void *fh
,
668 struct v4l2_format
*fmt
)
670 struct uvc_fh
*handle
= fh
;
671 struct uvc_streaming
*stream
= handle
->stream
;
672 struct uvc_streaming_control probe
;
674 return uvc_v4l2_try_format(stream
, fmt
, &probe
, NULL
, NULL
);
677 static int uvc_ioctl_reqbufs(struct file
*file
, void *fh
,
678 struct v4l2_requestbuffers
*rb
)
680 struct uvc_fh
*handle
= fh
;
681 struct uvc_streaming
*stream
= handle
->stream
;
684 ret
= uvc_acquire_privileges(handle
);
688 mutex_lock(&stream
->mutex
);
689 ret
= uvc_request_buffers(&stream
->queue
, rb
);
690 mutex_unlock(&stream
->mutex
);
695 uvc_dismiss_privileges(handle
);
700 static int uvc_ioctl_querybuf(struct file
*file
, void *fh
,
701 struct v4l2_buffer
*buf
)
703 struct uvc_fh
*handle
= fh
;
704 struct uvc_streaming
*stream
= handle
->stream
;
706 if (!uvc_has_privileges(handle
))
709 return uvc_query_buffer(&stream
->queue
, buf
);
712 static int uvc_ioctl_qbuf(struct file
*file
, void *fh
, struct v4l2_buffer
*buf
)
714 struct uvc_fh
*handle
= fh
;
715 struct uvc_streaming
*stream
= handle
->stream
;
717 if (!uvc_has_privileges(handle
))
720 return uvc_queue_buffer(&stream
->queue
, buf
);
723 static int uvc_ioctl_expbuf(struct file
*file
, void *fh
,
724 struct v4l2_exportbuffer
*exp
)
726 struct uvc_fh
*handle
= fh
;
727 struct uvc_streaming
*stream
= handle
->stream
;
729 if (!uvc_has_privileges(handle
))
732 return uvc_export_buffer(&stream
->queue
, exp
);
735 static int uvc_ioctl_dqbuf(struct file
*file
, void *fh
, struct v4l2_buffer
*buf
)
737 struct uvc_fh
*handle
= fh
;
738 struct uvc_streaming
*stream
= handle
->stream
;
740 if (!uvc_has_privileges(handle
))
743 return uvc_dequeue_buffer(&stream
->queue
, buf
,
744 file
->f_flags
& O_NONBLOCK
);
747 static int uvc_ioctl_create_bufs(struct file
*file
, void *fh
,
748 struct v4l2_create_buffers
*cb
)
750 struct uvc_fh
*handle
= fh
;
751 struct uvc_streaming
*stream
= handle
->stream
;
754 ret
= uvc_acquire_privileges(handle
);
758 return uvc_create_buffers(&stream
->queue
, cb
);
761 static int uvc_ioctl_streamon(struct file
*file
, void *fh
,
762 enum v4l2_buf_type type
)
764 struct uvc_fh
*handle
= fh
;
765 struct uvc_streaming
*stream
= handle
->stream
;
768 if (!uvc_has_privileges(handle
))
771 mutex_lock(&stream
->mutex
);
772 ret
= uvc_queue_streamon(&stream
->queue
, type
);
773 mutex_unlock(&stream
->mutex
);
778 static int uvc_ioctl_streamoff(struct file
*file
, void *fh
,
779 enum v4l2_buf_type type
)
781 struct uvc_fh
*handle
= fh
;
782 struct uvc_streaming
*stream
= handle
->stream
;
784 if (!uvc_has_privileges(handle
))
787 mutex_lock(&stream
->mutex
);
788 uvc_queue_streamoff(&stream
->queue
, type
);
789 mutex_unlock(&stream
->mutex
);
794 static int uvc_ioctl_enum_input(struct file
*file
, void *fh
,
795 struct v4l2_input
*input
)
797 struct uvc_fh
*handle
= fh
;
798 struct uvc_video_chain
*chain
= handle
->chain
;
799 const struct uvc_entity
*selector
= chain
->selector
;
800 struct uvc_entity
*iterm
= NULL
;
801 u32 index
= input
->index
;
804 if (selector
== NULL
||
805 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
808 list_for_each_entry(iterm
, &chain
->entities
, chain
) {
809 if (UVC_ENTITY_IS_ITERM(iterm
))
813 } else if (index
< selector
->bNrInPins
) {
814 pin
= selector
->baSourceID
[index
];
815 list_for_each_entry(iterm
, &chain
->entities
, chain
) {
816 if (!UVC_ENTITY_IS_ITERM(iterm
))
818 if (iterm
->id
== pin
)
823 if (iterm
== NULL
|| iterm
->id
!= pin
)
826 memset(input
, 0, sizeof(*input
));
827 input
->index
= index
;
828 strlcpy(input
->name
, iterm
->name
, sizeof(input
->name
));
829 if (UVC_ENTITY_TYPE(iterm
) == UVC_ITT_CAMERA
)
830 input
->type
= V4L2_INPUT_TYPE_CAMERA
;
835 static int uvc_ioctl_g_input(struct file
*file
, void *fh
, unsigned int *input
)
837 struct uvc_fh
*handle
= fh
;
838 struct uvc_video_chain
*chain
= handle
->chain
;
842 if (chain
->selector
== NULL
||
843 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
848 ret
= uvc_query_ctrl(chain
->dev
, UVC_GET_CUR
, chain
->selector
->id
,
849 chain
->dev
->intfnum
, UVC_SU_INPUT_SELECT_CONTROL
,
858 static int uvc_ioctl_s_input(struct file
*file
, void *fh
, unsigned int input
)
860 struct uvc_fh
*handle
= fh
;
861 struct uvc_video_chain
*chain
= handle
->chain
;
865 ret
= uvc_acquire_privileges(handle
);
869 if (chain
->selector
== NULL
||
870 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
876 if (input
>= chain
->selector
->bNrInPins
)
880 return uvc_query_ctrl(chain
->dev
, UVC_SET_CUR
, chain
->selector
->id
,
881 chain
->dev
->intfnum
, UVC_SU_INPUT_SELECT_CONTROL
,
885 static int uvc_ioctl_queryctrl(struct file
*file
, void *fh
,
886 struct v4l2_queryctrl
*qc
)
888 struct uvc_fh
*handle
= fh
;
889 struct uvc_video_chain
*chain
= handle
->chain
;
891 return uvc_query_v4l2_ctrl(chain
, qc
);
894 static int uvc_ioctl_query_ext_ctrl(struct file
*file
, void *fh
,
895 struct v4l2_query_ext_ctrl
*qec
)
897 struct uvc_fh
*handle
= fh
;
898 struct uvc_video_chain
*chain
= handle
->chain
;
899 struct v4l2_queryctrl qc
= { qec
->id
};
902 ret
= uvc_query_v4l2_ctrl(chain
, &qc
);
908 strlcpy(qec
->name
, qc
.name
, sizeof(qec
->name
));
909 qec
->minimum
= qc
.minimum
;
910 qec
->maximum
= qc
.maximum
;
912 qec
->default_value
= qc
.default_value
;
913 qec
->flags
= qc
.flags
;
917 memset(qec
->dims
, 0, sizeof(qec
->dims
));
918 memset(qec
->reserved
, 0, sizeof(qec
->reserved
));
923 static int uvc_ioctl_g_ctrl(struct file
*file
, void *fh
,
924 struct v4l2_control
*ctrl
)
926 struct uvc_fh
*handle
= fh
;
927 struct uvc_video_chain
*chain
= handle
->chain
;
928 struct v4l2_ext_control xctrl
;
931 memset(&xctrl
, 0, sizeof(xctrl
));
934 ret
= uvc_ctrl_begin(chain
);
938 ret
= uvc_ctrl_get(chain
, &xctrl
);
939 uvc_ctrl_rollback(handle
);
943 ctrl
->value
= xctrl
.value
;
947 static int uvc_ioctl_s_ctrl(struct file
*file
, void *fh
,
948 struct v4l2_control
*ctrl
)
950 struct uvc_fh
*handle
= fh
;
951 struct uvc_video_chain
*chain
= handle
->chain
;
952 struct v4l2_ext_control xctrl
;
955 memset(&xctrl
, 0, sizeof(xctrl
));
957 xctrl
.value
= ctrl
->value
;
959 ret
= uvc_ctrl_begin(chain
);
963 ret
= uvc_ctrl_set(chain
, &xctrl
);
965 uvc_ctrl_rollback(handle
);
969 ret
= uvc_ctrl_commit(handle
, &xctrl
, 1);
973 ctrl
->value
= xctrl
.value
;
977 static int uvc_ioctl_g_ext_ctrls(struct file
*file
, void *fh
,
978 struct v4l2_ext_controls
*ctrls
)
980 struct uvc_fh
*handle
= fh
;
981 struct uvc_video_chain
*chain
= handle
->chain
;
982 struct v4l2_ext_control
*ctrl
= ctrls
->controls
;
986 ret
= uvc_ctrl_begin(chain
);
990 for (i
= 0; i
< ctrls
->count
; ++ctrl
, ++i
) {
991 ret
= uvc_ctrl_get(chain
, ctrl
);
993 uvc_ctrl_rollback(handle
);
994 ctrls
->error_idx
= i
;
999 ctrls
->error_idx
= 0;
1001 return uvc_ctrl_rollback(handle
);
1004 static int uvc_ioctl_s_try_ext_ctrls(struct uvc_fh
*handle
,
1005 struct v4l2_ext_controls
*ctrls
,
1008 struct v4l2_ext_control
*ctrl
= ctrls
->controls
;
1009 struct uvc_video_chain
*chain
= handle
->chain
;
1013 ret
= uvc_ctrl_begin(chain
);
1017 for (i
= 0; i
< ctrls
->count
; ++ctrl
, ++i
) {
1018 ret
= uvc_ctrl_set(chain
, ctrl
);
1020 uvc_ctrl_rollback(handle
);
1021 ctrls
->error_idx
= commit
? ctrls
->count
: i
;
1026 ctrls
->error_idx
= 0;
1029 return uvc_ctrl_commit(handle
, ctrls
->controls
, ctrls
->count
);
1031 return uvc_ctrl_rollback(handle
);
1034 static int uvc_ioctl_s_ext_ctrls(struct file
*file
, void *fh
,
1035 struct v4l2_ext_controls
*ctrls
)
1037 struct uvc_fh
*handle
= fh
;
1039 return uvc_ioctl_s_try_ext_ctrls(handle
, ctrls
, true);
1042 static int uvc_ioctl_try_ext_ctrls(struct file
*file
, void *fh
,
1043 struct v4l2_ext_controls
*ctrls
)
1045 struct uvc_fh
*handle
= fh
;
1047 return uvc_ioctl_s_try_ext_ctrls(handle
, ctrls
, false);
1050 static int uvc_ioctl_querymenu(struct file
*file
, void *fh
,
1051 struct v4l2_querymenu
*qm
)
1053 struct uvc_fh
*handle
= fh
;
1054 struct uvc_video_chain
*chain
= handle
->chain
;
1056 return uvc_query_v4l2_menu(chain
, qm
);
1059 static int uvc_ioctl_g_selection(struct file
*file
, void *fh
,
1060 struct v4l2_selection
*sel
)
1062 struct uvc_fh
*handle
= fh
;
1063 struct uvc_streaming
*stream
= handle
->stream
;
1065 if (sel
->type
!= stream
->type
)
1068 switch (sel
->target
) {
1069 case V4L2_SEL_TGT_CROP_DEFAULT
:
1070 case V4L2_SEL_TGT_CROP_BOUNDS
:
1071 if (stream
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1074 case V4L2_SEL_TGT_COMPOSE_DEFAULT
:
1075 case V4L2_SEL_TGT_COMPOSE_BOUNDS
:
1076 if (stream
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1085 mutex_lock(&stream
->mutex
);
1086 sel
->r
.width
= stream
->cur_frame
->wWidth
;
1087 sel
->r
.height
= stream
->cur_frame
->wHeight
;
1088 mutex_unlock(&stream
->mutex
);
1093 static int uvc_ioctl_g_parm(struct file
*file
, void *fh
,
1094 struct v4l2_streamparm
*parm
)
1096 struct uvc_fh
*handle
= fh
;
1097 struct uvc_streaming
*stream
= handle
->stream
;
1099 return uvc_v4l2_get_streamparm(stream
, parm
);
1102 static int uvc_ioctl_s_parm(struct file
*file
, void *fh
,
1103 struct v4l2_streamparm
*parm
)
1105 struct uvc_fh
*handle
= fh
;
1106 struct uvc_streaming
*stream
= handle
->stream
;
1109 ret
= uvc_acquire_privileges(handle
);
1113 return uvc_v4l2_set_streamparm(stream
, parm
);
1116 static int uvc_ioctl_enum_framesizes(struct file
*file
, void *fh
,
1117 struct v4l2_frmsizeenum
*fsize
)
1119 struct uvc_fh
*handle
= fh
;
1120 struct uvc_streaming
*stream
= handle
->stream
;
1121 struct uvc_format
*format
= NULL
;
1122 struct uvc_frame
*frame
;
1125 /* Look for the given pixel format */
1126 for (i
= 0; i
< stream
->nformats
; i
++) {
1127 if (stream
->format
[i
].fcc
== fsize
->pixel_format
) {
1128 format
= &stream
->format
[i
];
1135 if (fsize
->index
>= format
->nframes
)
1138 frame
= &format
->frame
[fsize
->index
];
1139 fsize
->type
= V4L2_FRMSIZE_TYPE_DISCRETE
;
1140 fsize
->discrete
.width
= frame
->wWidth
;
1141 fsize
->discrete
.height
= frame
->wHeight
;
1145 static int uvc_ioctl_enum_frameintervals(struct file
*file
, void *fh
,
1146 struct v4l2_frmivalenum
*fival
)
1148 struct uvc_fh
*handle
= fh
;
1149 struct uvc_streaming
*stream
= handle
->stream
;
1150 struct uvc_format
*format
= NULL
;
1151 struct uvc_frame
*frame
= NULL
;
1154 /* Look for the given pixel format and frame size */
1155 for (i
= 0; i
< stream
->nformats
; i
++) {
1156 if (stream
->format
[i
].fcc
== fival
->pixel_format
) {
1157 format
= &stream
->format
[i
];
1164 for (i
= 0; i
< format
->nframes
; i
++) {
1165 if (format
->frame
[i
].wWidth
== fival
->width
&&
1166 format
->frame
[i
].wHeight
== fival
->height
) {
1167 frame
= &format
->frame
[i
];
1174 if (frame
->bFrameIntervalType
) {
1175 if (fival
->index
>= frame
->bFrameIntervalType
)
1178 fival
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
1179 fival
->discrete
.numerator
=
1180 frame
->dwFrameInterval
[fival
->index
];
1181 fival
->discrete
.denominator
= 10000000;
1182 uvc_simplify_fraction(&fival
->discrete
.numerator
,
1183 &fival
->discrete
.denominator
, 8, 333);
1188 fival
->type
= V4L2_FRMIVAL_TYPE_STEPWISE
;
1189 fival
->stepwise
.min
.numerator
= frame
->dwFrameInterval
[0];
1190 fival
->stepwise
.min
.denominator
= 10000000;
1191 fival
->stepwise
.max
.numerator
= frame
->dwFrameInterval
[1];
1192 fival
->stepwise
.max
.denominator
= 10000000;
1193 fival
->stepwise
.step
.numerator
= frame
->dwFrameInterval
[2];
1194 fival
->stepwise
.step
.denominator
= 10000000;
1195 uvc_simplify_fraction(&fival
->stepwise
.min
.numerator
,
1196 &fival
->stepwise
.min
.denominator
, 8, 333);
1197 uvc_simplify_fraction(&fival
->stepwise
.max
.numerator
,
1198 &fival
->stepwise
.max
.denominator
, 8, 333);
1199 uvc_simplify_fraction(&fival
->stepwise
.step
.numerator
,
1200 &fival
->stepwise
.step
.denominator
, 8, 333);
1206 static int uvc_ioctl_subscribe_event(struct v4l2_fh
*fh
,
1207 const struct v4l2_event_subscription
*sub
)
1209 switch (sub
->type
) {
1210 case V4L2_EVENT_CTRL
:
1211 return v4l2_event_subscribe(fh
, sub
, 0, &uvc_ctrl_sub_ev_ops
);
1217 static long uvc_ioctl_default(struct file
*file
, void *fh
, bool valid_prio
,
1218 unsigned int cmd
, void *arg
)
1220 struct uvc_fh
*handle
= fh
;
1221 struct uvc_video_chain
*chain
= handle
->chain
;
1224 /* Dynamic controls. */
1225 case UVCIOC_CTRL_MAP
:
1226 return uvc_ioctl_ctrl_map(chain
, arg
);
1228 case UVCIOC_CTRL_QUERY
:
1229 return uvc_xu_ctrl_query(chain
, arg
);
1236 #ifdef CONFIG_COMPAT
1237 struct uvc_xu_control_mapping32
{
1248 compat_caddr_t menu_info
;
1254 static int uvc_v4l2_get_xu_mapping(struct uvc_xu_control_mapping
*kp
,
1255 const struct uvc_xu_control_mapping32 __user
*up
)
1257 struct uvc_menu_info __user
*umenus
;
1258 struct uvc_menu_info __user
*kmenus
;
1261 if (!access_ok(VERIFY_READ
, up
, sizeof(*up
)) ||
1262 __copy_from_user(kp
, up
, offsetof(typeof(*up
), menu_info
)) ||
1263 __get_user(kp
->menu_count
, &up
->menu_count
))
1266 memset(kp
->reserved
, 0, sizeof(kp
->reserved
));
1268 if (kp
->menu_count
== 0) {
1269 kp
->menu_info
= NULL
;
1273 if (__get_user(p
, &up
->menu_info
))
1275 umenus
= compat_ptr(p
);
1276 if (!access_ok(VERIFY_READ
, umenus
, kp
->menu_count
* sizeof(*umenus
)))
1279 kmenus
= compat_alloc_user_space(kp
->menu_count
* sizeof(*kmenus
));
1282 kp
->menu_info
= kmenus
;
1284 if (copy_in_user(kmenus
, umenus
, kp
->menu_count
* sizeof(*umenus
)))
1290 static int uvc_v4l2_put_xu_mapping(const struct uvc_xu_control_mapping
*kp
,
1291 struct uvc_xu_control_mapping32 __user
*up
)
1293 struct uvc_menu_info __user
*umenus
;
1294 struct uvc_menu_info __user
*kmenus
= kp
->menu_info
;
1297 if (!access_ok(VERIFY_WRITE
, up
, sizeof(*up
)) ||
1298 __copy_to_user(up
, kp
, offsetof(typeof(*up
), menu_info
)) ||
1299 __put_user(kp
->menu_count
, &up
->menu_count
))
1302 if (__clear_user(up
->reserved
, sizeof(up
->reserved
)))
1305 if (kp
->menu_count
== 0)
1308 if (get_user(p
, &up
->menu_info
))
1310 umenus
= compat_ptr(p
);
1312 if (copy_in_user(umenus
, kmenus
, kp
->menu_count
* sizeof(*umenus
)))
1318 struct uvc_xu_control_query32
{
1323 compat_caddr_t data
;
1326 static int uvc_v4l2_get_xu_query(struct uvc_xu_control_query
*kp
,
1327 const struct uvc_xu_control_query32 __user
*up
)
1333 if (!access_ok(VERIFY_READ
, up
, sizeof(*up
)) ||
1334 __copy_from_user(kp
, up
, offsetof(typeof(*up
), data
)))
1337 if (kp
->size
== 0) {
1342 if (__get_user(p
, &up
->data
))
1344 udata
= compat_ptr(p
);
1345 if (!access_ok(VERIFY_READ
, udata
, kp
->size
))
1348 kdata
= compat_alloc_user_space(kp
->size
);
1353 if (copy_in_user(kdata
, udata
, kp
->size
))
1359 static int uvc_v4l2_put_xu_query(const struct uvc_xu_control_query
*kp
,
1360 struct uvc_xu_control_query32 __user
*up
)
1363 u8 __user
*kdata
= kp
->data
;
1366 if (!access_ok(VERIFY_WRITE
, up
, sizeof(*up
)) ||
1367 __copy_to_user(up
, kp
, offsetof(typeof(*up
), data
)))
1373 if (get_user(p
, &up
->data
))
1375 udata
= compat_ptr(p
);
1376 if (!access_ok(VERIFY_READ
, udata
, kp
->size
))
1379 if (copy_in_user(udata
, kdata
, kp
->size
))
1385 #define UVCIOC_CTRL_MAP32 _IOWR('u', 0x20, struct uvc_xu_control_mapping32)
1386 #define UVCIOC_CTRL_QUERY32 _IOWR('u', 0x21, struct uvc_xu_control_query32)
1388 static long uvc_v4l2_compat_ioctl32(struct file
*file
,
1389 unsigned int cmd
, unsigned long arg
)
1392 struct uvc_xu_control_mapping xmap
;
1393 struct uvc_xu_control_query xqry
;
1395 void __user
*up
= compat_ptr(arg
);
1396 mm_segment_t old_fs
;
1400 case UVCIOC_CTRL_MAP32
:
1401 cmd
= UVCIOC_CTRL_MAP
;
1402 ret
= uvc_v4l2_get_xu_mapping(&karg
.xmap
, up
);
1405 case UVCIOC_CTRL_QUERY32
:
1406 cmd
= UVCIOC_CTRL_QUERY
;
1407 ret
= uvc_v4l2_get_xu_query(&karg
.xqry
, up
);
1411 return -ENOIOCTLCMD
;
1416 ret
= video_ioctl2(file
, cmd
, (unsigned long)&karg
);
1423 case UVCIOC_CTRL_MAP
:
1424 ret
= uvc_v4l2_put_xu_mapping(&karg
.xmap
, up
);
1427 case UVCIOC_CTRL_QUERY
:
1428 ret
= uvc_v4l2_put_xu_query(&karg
.xqry
, up
);
1436 static ssize_t
uvc_v4l2_read(struct file
*file
, char __user
*data
,
1437 size_t count
, loff_t
*ppos
)
1439 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_read: not implemented.\n");
1443 static int uvc_v4l2_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1445 struct uvc_fh
*handle
= file
->private_data
;
1446 struct uvc_streaming
*stream
= handle
->stream
;
1448 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_mmap\n");
1450 return uvc_queue_mmap(&stream
->queue
, vma
);
1453 static unsigned int uvc_v4l2_poll(struct file
*file
, poll_table
*wait
)
1455 struct uvc_fh
*handle
= file
->private_data
;
1456 struct uvc_streaming
*stream
= handle
->stream
;
1458 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_poll\n");
1460 return uvc_queue_poll(&stream
->queue
, file
, wait
);
1464 static unsigned long uvc_v4l2_get_unmapped_area(struct file
*file
,
1465 unsigned long addr
, unsigned long len
, unsigned long pgoff
,
1466 unsigned long flags
)
1468 struct uvc_fh
*handle
= file
->private_data
;
1469 struct uvc_streaming
*stream
= handle
->stream
;
1471 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_get_unmapped_area\n");
1473 return uvc_queue_get_unmapped_area(&stream
->queue
, pgoff
);
1477 const struct v4l2_ioctl_ops uvc_ioctl_ops
= {
1478 .vidioc_querycap
= uvc_ioctl_querycap
,
1479 .vidioc_enum_fmt_vid_cap
= uvc_ioctl_enum_fmt_vid_cap
,
1480 .vidioc_enum_fmt_vid_out
= uvc_ioctl_enum_fmt_vid_out
,
1481 .vidioc_g_fmt_vid_cap
= uvc_ioctl_g_fmt_vid_cap
,
1482 .vidioc_g_fmt_vid_out
= uvc_ioctl_g_fmt_vid_out
,
1483 .vidioc_s_fmt_vid_cap
= uvc_ioctl_s_fmt_vid_cap
,
1484 .vidioc_s_fmt_vid_out
= uvc_ioctl_s_fmt_vid_out
,
1485 .vidioc_try_fmt_vid_cap
= uvc_ioctl_try_fmt_vid_cap
,
1486 .vidioc_try_fmt_vid_out
= uvc_ioctl_try_fmt_vid_out
,
1487 .vidioc_reqbufs
= uvc_ioctl_reqbufs
,
1488 .vidioc_querybuf
= uvc_ioctl_querybuf
,
1489 .vidioc_qbuf
= uvc_ioctl_qbuf
,
1490 .vidioc_expbuf
= uvc_ioctl_expbuf
,
1491 .vidioc_dqbuf
= uvc_ioctl_dqbuf
,
1492 .vidioc_create_bufs
= uvc_ioctl_create_bufs
,
1493 .vidioc_streamon
= uvc_ioctl_streamon
,
1494 .vidioc_streamoff
= uvc_ioctl_streamoff
,
1495 .vidioc_enum_input
= uvc_ioctl_enum_input
,
1496 .vidioc_g_input
= uvc_ioctl_g_input
,
1497 .vidioc_s_input
= uvc_ioctl_s_input
,
1498 .vidioc_queryctrl
= uvc_ioctl_queryctrl
,
1499 .vidioc_query_ext_ctrl
= uvc_ioctl_query_ext_ctrl
,
1500 .vidioc_g_ctrl
= uvc_ioctl_g_ctrl
,
1501 .vidioc_s_ctrl
= uvc_ioctl_s_ctrl
,
1502 .vidioc_g_ext_ctrls
= uvc_ioctl_g_ext_ctrls
,
1503 .vidioc_s_ext_ctrls
= uvc_ioctl_s_ext_ctrls
,
1504 .vidioc_try_ext_ctrls
= uvc_ioctl_try_ext_ctrls
,
1505 .vidioc_querymenu
= uvc_ioctl_querymenu
,
1506 .vidioc_g_selection
= uvc_ioctl_g_selection
,
1507 .vidioc_g_parm
= uvc_ioctl_g_parm
,
1508 .vidioc_s_parm
= uvc_ioctl_s_parm
,
1509 .vidioc_enum_framesizes
= uvc_ioctl_enum_framesizes
,
1510 .vidioc_enum_frameintervals
= uvc_ioctl_enum_frameintervals
,
1511 .vidioc_subscribe_event
= uvc_ioctl_subscribe_event
,
1512 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1513 .vidioc_default
= uvc_ioctl_default
,
1516 const struct v4l2_file_operations uvc_fops
= {
1517 .owner
= THIS_MODULE
,
1518 .open
= uvc_v4l2_open
,
1519 .release
= uvc_v4l2_release
,
1520 .unlocked_ioctl
= video_ioctl2
,
1521 #ifdef CONFIG_COMPAT
1522 .compat_ioctl32
= uvc_v4l2_compat_ioctl32
,
1524 .read
= uvc_v4l2_read
,
1525 .mmap
= uvc_v4l2_mmap
,
1526 .poll
= uvc_v4l2_poll
,
1528 .get_unmapped_area
= uvc_v4l2_get_unmapped_area
,