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/version.h>
17 #include <linux/list.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/usb.h>
21 #include <linux/videodev2.h>
22 #include <linux/vmalloc.h>
24 #include <linux/wait.h>
25 #include <linux/atomic.h>
27 #include <media/v4l2-common.h>
28 #include <media/v4l2-ctrls.h>
29 #include <media/v4l2-event.h>
30 #include <media/v4l2-ioctl.h>
34 /* ------------------------------------------------------------------------
37 static int uvc_ioctl_ctrl_map(struct uvc_video_chain
*chain
,
38 struct uvc_xu_control_mapping
*xmap
)
40 struct uvc_control_mapping
*map
;
44 map
= kzalloc(sizeof *map
, GFP_KERNEL
);
49 memcpy(map
->name
, xmap
->name
, sizeof map
->name
);
50 memcpy(map
->entity
, xmap
->entity
, sizeof map
->entity
);
51 map
->selector
= xmap
->selector
;
52 map
->size
= xmap
->size
;
53 map
->offset
= xmap
->offset
;
54 map
->v4l2_type
= xmap
->v4l2_type
;
55 map
->data_type
= xmap
->data_type
;
57 switch (xmap
->v4l2_type
) {
58 case V4L2_CTRL_TYPE_INTEGER
:
59 case V4L2_CTRL_TYPE_BOOLEAN
:
60 case V4L2_CTRL_TYPE_BUTTON
:
63 case V4L2_CTRL_TYPE_MENU
:
64 /* Prevent excessive memory consumption, as well as integer
67 if (xmap
->menu_count
== 0 ||
68 xmap
->menu_count
> UVC_MAX_CONTROL_MENU_ENTRIES
) {
73 size
= xmap
->menu_count
* sizeof(*map
->menu_info
);
74 map
->menu_info
= kmalloc(size
, GFP_KERNEL
);
75 if (map
->menu_info
== NULL
) {
80 if (copy_from_user(map
->menu_info
, xmap
->menu_info
, size
)) {
85 map
->menu_count
= xmap
->menu_count
;
89 uvc_trace(UVC_TRACE_CONTROL
, "Unsupported V4L2 control type "
90 "%u.\n", xmap
->v4l2_type
);
95 ret
= uvc_ctrl_add_mapping(chain
, map
);
98 kfree(map
->menu_info
);
104 /* ------------------------------------------------------------------------
109 * Find the frame interval closest to the requested frame interval for the
110 * given frame format and size. This should be done by the device as part of
111 * the Video Probe and Commit negotiation, but some hardware don't implement
114 static __u32
uvc_try_frame_interval(struct uvc_frame
*frame
, __u32 interval
)
118 if (frame
->bFrameIntervalType
) {
119 __u32 best
= -1, dist
;
121 for (i
= 0; i
< frame
->bFrameIntervalType
; ++i
) {
122 dist
= interval
> frame
->dwFrameInterval
[i
]
123 ? interval
- frame
->dwFrameInterval
[i
]
124 : frame
->dwFrameInterval
[i
] - interval
;
132 interval
= frame
->dwFrameInterval
[i
-1];
134 const __u32 min
= frame
->dwFrameInterval
[0];
135 const __u32 max
= frame
->dwFrameInterval
[1];
136 const __u32 step
= frame
->dwFrameInterval
[2];
138 interval
= min
+ (interval
- min
+ step
/2) / step
* step
;
146 static int uvc_v4l2_try_format(struct uvc_streaming
*stream
,
147 struct v4l2_format
*fmt
, struct uvc_streaming_control
*probe
,
148 struct uvc_format
**uvc_format
, struct uvc_frame
**uvc_frame
)
150 struct uvc_format
*format
= NULL
;
151 struct uvc_frame
*frame
= NULL
;
153 unsigned int d
, maxd
;
159 if (fmt
->type
!= stream
->type
)
162 fcc
= (__u8
*)&fmt
->fmt
.pix
.pixelformat
;
163 uvc_trace(UVC_TRACE_FORMAT
, "Trying format 0x%08x (%c%c%c%c): %ux%u.\n",
164 fmt
->fmt
.pix
.pixelformat
,
165 fcc
[0], fcc
[1], fcc
[2], fcc
[3],
166 fmt
->fmt
.pix
.width
, fmt
->fmt
.pix
.height
);
168 /* Check if the hardware supports the requested format, use the default
171 for (i
= 0; i
< stream
->nformats
; ++i
) {
172 format
= &stream
->format
[i
];
173 if (format
->fcc
== fmt
->fmt
.pix
.pixelformat
)
177 if (i
== stream
->nformats
) {
178 format
= stream
->def_format
;
179 fmt
->fmt
.pix
.pixelformat
= format
->fcc
;
182 /* Find the closest image size. The distance between image sizes is
183 * the size in pixels of the non-overlapping regions between the
184 * requested size and the frame-specified size.
186 rw
= fmt
->fmt
.pix
.width
;
187 rh
= fmt
->fmt
.pix
.height
;
188 maxd
= (unsigned int)-1;
190 for (i
= 0; i
< format
->nframes
; ++i
) {
191 __u16 w
= format
->frame
[i
].wWidth
;
192 __u16 h
= format
->frame
[i
].wHeight
;
194 d
= min(w
, rw
) * min(h
, rh
);
195 d
= w
*h
+ rw
*rh
- 2*d
;
198 frame
= &format
->frame
[i
];
206 uvc_trace(UVC_TRACE_FORMAT
, "Unsupported size %ux%u.\n",
207 fmt
->fmt
.pix
.width
, fmt
->fmt
.pix
.height
);
211 /* Use the default frame interval. */
212 interval
= frame
->dwDefaultFrameInterval
;
213 uvc_trace(UVC_TRACE_FORMAT
, "Using default frame interval %u.%u us "
214 "(%u.%u fps).\n", interval
/10, interval
%10, 10000000/interval
,
215 (100000000/interval
)%10);
217 /* Set the format index, frame index and frame interval. */
218 memset(probe
, 0, sizeof *probe
);
219 probe
->bmHint
= 1; /* dwFrameInterval */
220 probe
->bFormatIndex
= format
->index
;
221 probe
->bFrameIndex
= frame
->bFrameIndex
;
222 probe
->dwFrameInterval
= uvc_try_frame_interval(frame
, interval
);
223 /* Some webcams stall the probe control set request when the
224 * dwMaxVideoFrameSize field is set to zero. The UVC specification
225 * clearly states that the field is read-only from the host, so this
226 * is a webcam bug. Set dwMaxVideoFrameSize to the value reported by
227 * the webcam to work around the problem.
229 * The workaround could probably be enabled for all webcams, so the
230 * quirk can be removed if needed. It's currently useful to detect
231 * webcam bugs and fix them before they hit the market (providing
232 * developers test their webcams with the Linux driver as well as with
233 * the Windows driver).
235 mutex_lock(&stream
->mutex
);
236 if (stream
->dev
->quirks
& UVC_QUIRK_PROBE_EXTRAFIELDS
)
237 probe
->dwMaxVideoFrameSize
=
238 stream
->ctrl
.dwMaxVideoFrameSize
;
240 /* Probe the device. */
241 ret
= uvc_probe_video(stream
, probe
);
242 mutex_unlock(&stream
->mutex
);
246 fmt
->fmt
.pix
.width
= frame
->wWidth
;
247 fmt
->fmt
.pix
.height
= frame
->wHeight
;
248 fmt
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
249 fmt
->fmt
.pix
.bytesperline
= format
->bpp
* frame
->wWidth
/ 8;
250 fmt
->fmt
.pix
.sizeimage
= probe
->dwMaxVideoFrameSize
;
251 fmt
->fmt
.pix
.colorspace
= format
->colorspace
;
252 fmt
->fmt
.pix
.priv
= 0;
254 if (uvc_format
!= NULL
)
255 *uvc_format
= format
;
256 if (uvc_frame
!= NULL
)
263 static int uvc_v4l2_get_format(struct uvc_streaming
*stream
,
264 struct v4l2_format
*fmt
)
266 struct uvc_format
*format
;
267 struct uvc_frame
*frame
;
270 if (fmt
->type
!= stream
->type
)
273 mutex_lock(&stream
->mutex
);
274 format
= stream
->cur_format
;
275 frame
= stream
->cur_frame
;
277 if (format
== NULL
|| frame
== NULL
) {
282 fmt
->fmt
.pix
.pixelformat
= format
->fcc
;
283 fmt
->fmt
.pix
.width
= frame
->wWidth
;
284 fmt
->fmt
.pix
.height
= frame
->wHeight
;
285 fmt
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
286 fmt
->fmt
.pix
.bytesperline
= format
->bpp
* frame
->wWidth
/ 8;
287 fmt
->fmt
.pix
.sizeimage
= stream
->ctrl
.dwMaxVideoFrameSize
;
288 fmt
->fmt
.pix
.colorspace
= format
->colorspace
;
289 fmt
->fmt
.pix
.priv
= 0;
292 mutex_unlock(&stream
->mutex
);
296 static int uvc_v4l2_set_format(struct uvc_streaming
*stream
,
297 struct v4l2_format
*fmt
)
299 struct uvc_streaming_control probe
;
300 struct uvc_format
*format
;
301 struct uvc_frame
*frame
;
304 if (fmt
->type
!= stream
->type
)
307 ret
= uvc_v4l2_try_format(stream
, fmt
, &probe
, &format
, &frame
);
311 mutex_lock(&stream
->mutex
);
313 if (uvc_queue_allocated(&stream
->queue
)) {
318 stream
->ctrl
= probe
;
319 stream
->cur_format
= format
;
320 stream
->cur_frame
= frame
;
323 mutex_unlock(&stream
->mutex
);
327 static int uvc_v4l2_get_streamparm(struct uvc_streaming
*stream
,
328 struct v4l2_streamparm
*parm
)
330 uint32_t numerator
, denominator
;
332 if (parm
->type
!= stream
->type
)
335 mutex_lock(&stream
->mutex
);
336 numerator
= stream
->ctrl
.dwFrameInterval
;
337 mutex_unlock(&stream
->mutex
);
339 denominator
= 10000000;
340 uvc_simplify_fraction(&numerator
, &denominator
, 8, 333);
342 memset(parm
, 0, sizeof *parm
);
343 parm
->type
= stream
->type
;
345 if (stream
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
346 parm
->parm
.capture
.capability
= V4L2_CAP_TIMEPERFRAME
;
347 parm
->parm
.capture
.capturemode
= 0;
348 parm
->parm
.capture
.timeperframe
.numerator
= numerator
;
349 parm
->parm
.capture
.timeperframe
.denominator
= denominator
;
350 parm
->parm
.capture
.extendedmode
= 0;
351 parm
->parm
.capture
.readbuffers
= 0;
353 parm
->parm
.output
.capability
= V4L2_CAP_TIMEPERFRAME
;
354 parm
->parm
.output
.outputmode
= 0;
355 parm
->parm
.output
.timeperframe
.numerator
= numerator
;
356 parm
->parm
.output
.timeperframe
.denominator
= denominator
;
362 static int uvc_v4l2_set_streamparm(struct uvc_streaming
*stream
,
363 struct v4l2_streamparm
*parm
)
365 struct uvc_streaming_control probe
;
366 struct v4l2_fract timeperframe
;
370 if (parm
->type
!= stream
->type
)
373 if (parm
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
374 timeperframe
= parm
->parm
.capture
.timeperframe
;
376 timeperframe
= parm
->parm
.output
.timeperframe
;
378 interval
= uvc_fraction_to_interval(timeperframe
.numerator
,
379 timeperframe
.denominator
);
380 uvc_trace(UVC_TRACE_FORMAT
, "Setting frame interval to %u/%u (%u).\n",
381 timeperframe
.numerator
, timeperframe
.denominator
, interval
);
383 mutex_lock(&stream
->mutex
);
385 if (uvc_queue_streaming(&stream
->queue
)) {
386 mutex_unlock(&stream
->mutex
);
390 probe
= stream
->ctrl
;
391 probe
.dwFrameInterval
=
392 uvc_try_frame_interval(stream
->cur_frame
, interval
);
394 /* Probe the device with the new settings. */
395 ret
= uvc_probe_video(stream
, &probe
);
397 mutex_unlock(&stream
->mutex
);
401 stream
->ctrl
= probe
;
402 mutex_unlock(&stream
->mutex
);
404 /* Return the actual frame period. */
405 timeperframe
.numerator
= probe
.dwFrameInterval
;
406 timeperframe
.denominator
= 10000000;
407 uvc_simplify_fraction(&timeperframe
.numerator
,
408 &timeperframe
.denominator
, 8, 333);
410 if (parm
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
411 parm
->parm
.capture
.timeperframe
= timeperframe
;
413 parm
->parm
.output
.timeperframe
= timeperframe
;
418 /* ------------------------------------------------------------------------
419 * Privilege management
423 * Privilege management is the multiple-open implementation basis. The current
424 * implementation is completely transparent for the end-user and doesn't
425 * require explicit use of the VIDIOC_G_PRIORITY and VIDIOC_S_PRIORITY ioctls.
426 * Those ioctls enable finer control on the device (by making possible for a
427 * user to request exclusive access to a device), but are not mature yet.
428 * Switching to the V4L2 priority mechanism might be considered in the future
429 * if this situation changes.
431 * Each open instance of a UVC device can either be in a privileged or
432 * unprivileged state. Only a single instance can be in a privileged state at
433 * a given time. Trying to perform an operation that requires privileges will
434 * automatically acquire the required privileges if possible, or return -EBUSY
435 * otherwise. Privileges are dismissed when closing the instance or when
436 * freeing the video buffers using VIDIOC_REQBUFS.
438 * Operations that require privileges are:
445 static int uvc_acquire_privileges(struct uvc_fh
*handle
)
447 /* Always succeed if the handle is already privileged. */
448 if (handle
->state
== UVC_HANDLE_ACTIVE
)
451 /* Check if the device already has a privileged handle. */
452 if (atomic_inc_return(&handle
->stream
->active
) != 1) {
453 atomic_dec(&handle
->stream
->active
);
457 handle
->state
= UVC_HANDLE_ACTIVE
;
461 static void uvc_dismiss_privileges(struct uvc_fh
*handle
)
463 if (handle
->state
== UVC_HANDLE_ACTIVE
)
464 atomic_dec(&handle
->stream
->active
);
466 handle
->state
= UVC_HANDLE_PASSIVE
;
469 static int uvc_has_privileges(struct uvc_fh
*handle
)
471 return handle
->state
== UVC_HANDLE_ACTIVE
;
474 /* ------------------------------------------------------------------------
475 * V4L2 file operations
478 static int uvc_v4l2_open(struct file
*file
)
480 struct uvc_streaming
*stream
;
481 struct uvc_fh
*handle
;
484 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_open\n");
485 stream
= video_drvdata(file
);
487 if (stream
->dev
->state
& UVC_DEV_DISCONNECTED
)
490 ret
= usb_autopm_get_interface(stream
->dev
->intf
);
494 /* Create the device handle. */
495 handle
= kzalloc(sizeof *handle
, GFP_KERNEL
);
496 if (handle
== NULL
) {
497 usb_autopm_put_interface(stream
->dev
->intf
);
501 mutex_lock(&stream
->dev
->lock
);
502 if (stream
->dev
->users
== 0) {
503 ret
= uvc_status_start(stream
->dev
, GFP_KERNEL
);
505 mutex_unlock(&stream
->dev
->lock
);
506 usb_autopm_put_interface(stream
->dev
->intf
);
512 stream
->dev
->users
++;
513 mutex_unlock(&stream
->dev
->lock
);
515 v4l2_fh_init(&handle
->vfh
, stream
->vdev
);
516 v4l2_fh_add(&handle
->vfh
);
517 handle
->chain
= stream
->chain
;
518 handle
->stream
= stream
;
519 handle
->state
= UVC_HANDLE_PASSIVE
;
520 file
->private_data
= handle
;
525 static int uvc_v4l2_release(struct file
*file
)
527 struct uvc_fh
*handle
= file
->private_data
;
528 struct uvc_streaming
*stream
= handle
->stream
;
530 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_release\n");
532 /* Only free resources if this is a privileged handle. */
533 if (uvc_has_privileges(handle
)) {
534 uvc_video_enable(stream
, 0);
535 uvc_free_buffers(&stream
->queue
);
538 /* Release the file handle. */
539 uvc_dismiss_privileges(handle
);
540 v4l2_fh_del(&handle
->vfh
);
541 v4l2_fh_exit(&handle
->vfh
);
543 file
->private_data
= NULL
;
545 mutex_lock(&stream
->dev
->lock
);
546 if (--stream
->dev
->users
== 0)
547 uvc_status_stop(stream
->dev
);
548 mutex_unlock(&stream
->dev
->lock
);
550 usb_autopm_put_interface(stream
->dev
->intf
);
554 static long uvc_v4l2_do_ioctl(struct file
*file
, unsigned int cmd
, void *arg
)
556 struct video_device
*vdev
= video_devdata(file
);
557 struct uvc_fh
*handle
= file
->private_data
;
558 struct uvc_video_chain
*chain
= handle
->chain
;
559 struct uvc_streaming
*stream
= handle
->stream
;
563 /* Query capabilities */
564 case VIDIOC_QUERYCAP
:
566 struct v4l2_capability
*cap
= arg
;
568 memset(cap
, 0, sizeof *cap
);
569 strlcpy(cap
->driver
, "uvcvideo", sizeof cap
->driver
);
570 strlcpy(cap
->card
, vdev
->name
, sizeof cap
->card
);
571 usb_make_path(stream
->dev
->udev
,
572 cap
->bus_info
, sizeof(cap
->bus_info
));
573 cap
->version
= LINUX_VERSION_CODE
;
574 cap
->capabilities
= V4L2_CAP_DEVICE_CAPS
| V4L2_CAP_STREAMING
576 if (stream
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
577 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
578 | V4L2_CAP_STREAMING
;
580 cap
->device_caps
= V4L2_CAP_VIDEO_OUTPUT
581 | V4L2_CAP_STREAMING
;
586 case VIDIOC_G_PRIORITY
:
587 *(u32
*)arg
= v4l2_prio_max(vdev
->prio
);
590 case VIDIOC_S_PRIORITY
:
591 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
595 return v4l2_prio_change(vdev
->prio
, &handle
->vfh
.prio
,
598 /* Get, Set & Query control */
599 case VIDIOC_QUERYCTRL
:
600 return uvc_query_v4l2_ctrl(chain
, arg
);
604 struct v4l2_control
*ctrl
= arg
;
605 struct v4l2_ext_control xctrl
;
607 memset(&xctrl
, 0, sizeof xctrl
);
610 ret
= uvc_ctrl_begin(chain
);
614 ret
= uvc_ctrl_get(chain
, &xctrl
);
615 uvc_ctrl_rollback(handle
);
617 ctrl
->value
= xctrl
.value
;
623 struct v4l2_control
*ctrl
= arg
;
624 struct v4l2_ext_control xctrl
;
626 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
630 memset(&xctrl
, 0, sizeof xctrl
);
632 xctrl
.value
= ctrl
->value
;
634 ret
= uvc_ctrl_begin(chain
);
638 ret
= uvc_ctrl_set(chain
, &xctrl
);
640 uvc_ctrl_rollback(handle
);
643 ret
= uvc_ctrl_commit(handle
, &xctrl
, 1);
645 ctrl
->value
= xctrl
.value
;
649 case VIDIOC_QUERYMENU
:
650 return uvc_query_v4l2_menu(chain
, arg
);
652 case VIDIOC_G_EXT_CTRLS
:
654 struct v4l2_ext_controls
*ctrls
= arg
;
655 struct v4l2_ext_control
*ctrl
= ctrls
->controls
;
658 ret
= uvc_ctrl_begin(chain
);
662 for (i
= 0; i
< ctrls
->count
; ++ctrl
, ++i
) {
663 ret
= uvc_ctrl_get(chain
, ctrl
);
665 uvc_ctrl_rollback(handle
);
666 ctrls
->error_idx
= i
;
670 ctrls
->error_idx
= 0;
671 ret
= uvc_ctrl_rollback(handle
);
675 case VIDIOC_S_EXT_CTRLS
:
676 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
680 case VIDIOC_TRY_EXT_CTRLS
:
682 struct v4l2_ext_controls
*ctrls
= arg
;
683 struct v4l2_ext_control
*ctrl
= ctrls
->controls
;
686 ret
= uvc_ctrl_begin(chain
);
690 for (i
= 0; i
< ctrls
->count
; ++ctrl
, ++i
) {
691 ret
= uvc_ctrl_set(chain
, ctrl
);
693 uvc_ctrl_rollback(handle
);
694 ctrls
->error_idx
= cmd
== VIDIOC_S_EXT_CTRLS
700 ctrls
->error_idx
= 0;
702 if (cmd
== VIDIOC_S_EXT_CTRLS
)
703 ret
= uvc_ctrl_commit(handle
,
704 ctrls
->controls
, ctrls
->count
);
706 ret
= uvc_ctrl_rollback(handle
);
710 /* Get, Set & Enum input */
711 case VIDIOC_ENUMINPUT
:
713 const struct uvc_entity
*selector
= chain
->selector
;
714 struct v4l2_input
*input
= arg
;
715 struct uvc_entity
*iterm
= NULL
;
716 u32 index
= input
->index
;
719 if (selector
== NULL
||
720 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
723 list_for_each_entry(iterm
, &chain
->entities
, chain
) {
724 if (UVC_ENTITY_IS_ITERM(iterm
))
728 } else if (index
< selector
->bNrInPins
) {
729 pin
= selector
->baSourceID
[index
];
730 list_for_each_entry(iterm
, &chain
->entities
, chain
) {
731 if (!UVC_ENTITY_IS_ITERM(iterm
))
733 if (iterm
->id
== pin
)
738 if (iterm
== NULL
|| iterm
->id
!= pin
)
741 memset(input
, 0, sizeof *input
);
742 input
->index
= index
;
743 strlcpy(input
->name
, iterm
->name
, sizeof input
->name
);
744 if (UVC_ENTITY_TYPE(iterm
) == UVC_ITT_CAMERA
)
745 input
->type
= V4L2_INPUT_TYPE_CAMERA
;
753 if (chain
->selector
== NULL
||
754 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
759 ret
= uvc_query_ctrl(chain
->dev
, UVC_GET_CUR
,
760 chain
->selector
->id
, chain
->dev
->intfnum
,
761 UVC_SU_INPUT_SELECT_CONTROL
, &input
, 1);
765 *(int *)arg
= input
- 1;
771 u32 input
= *(u32
*)arg
+ 1;
773 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
777 if ((ret
= uvc_acquire_privileges(handle
)) < 0)
780 if (chain
->selector
== NULL
||
781 (chain
->dev
->quirks
& UVC_QUIRK_IGNORE_SELECTOR_UNIT
)) {
787 if (input
== 0 || input
> chain
->selector
->bNrInPins
)
790 return uvc_query_ctrl(chain
->dev
, UVC_SET_CUR
,
791 chain
->selector
->id
, chain
->dev
->intfnum
,
792 UVC_SU_INPUT_SELECT_CONTROL
, &input
, 1);
795 /* Try, Get, Set & Enum format */
796 case VIDIOC_ENUM_FMT
:
798 struct v4l2_fmtdesc
*fmt
= arg
;
799 struct uvc_format
*format
;
800 enum v4l2_buf_type type
= fmt
->type
;
801 __u32 index
= fmt
->index
;
803 if (fmt
->type
!= stream
->type
||
804 fmt
->index
>= stream
->nformats
)
807 memset(fmt
, 0, sizeof(*fmt
));
811 format
= &stream
->format
[fmt
->index
];
813 if (format
->flags
& UVC_FMT_FLAG_COMPRESSED
)
814 fmt
->flags
|= V4L2_FMT_FLAG_COMPRESSED
;
815 strlcpy(fmt
->description
, format
->name
,
816 sizeof fmt
->description
);
817 fmt
->description
[sizeof fmt
->description
- 1] = 0;
818 fmt
->pixelformat
= format
->fcc
;
824 struct uvc_streaming_control probe
;
826 return uvc_v4l2_try_format(stream
, arg
, &probe
, NULL
, NULL
);
830 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
834 if ((ret
= uvc_acquire_privileges(handle
)) < 0)
837 return uvc_v4l2_set_format(stream
, arg
);
840 return uvc_v4l2_get_format(stream
, arg
);
842 /* Frame size enumeration */
843 case VIDIOC_ENUM_FRAMESIZES
:
845 struct v4l2_frmsizeenum
*fsize
= arg
;
846 struct uvc_format
*format
= NULL
;
847 struct uvc_frame
*frame
;
850 /* Look for the given pixel format */
851 for (i
= 0; i
< stream
->nformats
; i
++) {
852 if (stream
->format
[i
].fcc
==
853 fsize
->pixel_format
) {
854 format
= &stream
->format
[i
];
861 if (fsize
->index
>= format
->nframes
)
864 frame
= &format
->frame
[fsize
->index
];
865 fsize
->type
= V4L2_FRMSIZE_TYPE_DISCRETE
;
866 fsize
->discrete
.width
= frame
->wWidth
;
867 fsize
->discrete
.height
= frame
->wHeight
;
871 /* Frame interval enumeration */
872 case VIDIOC_ENUM_FRAMEINTERVALS
:
874 struct v4l2_frmivalenum
*fival
= arg
;
875 struct uvc_format
*format
= NULL
;
876 struct uvc_frame
*frame
= NULL
;
879 /* Look for the given pixel format and frame size */
880 for (i
= 0; i
< stream
->nformats
; i
++) {
881 if (stream
->format
[i
].fcc
==
882 fival
->pixel_format
) {
883 format
= &stream
->format
[i
];
890 for (i
= 0; i
< format
->nframes
; i
++) {
891 if (format
->frame
[i
].wWidth
== fival
->width
&&
892 format
->frame
[i
].wHeight
== fival
->height
) {
893 frame
= &format
->frame
[i
];
900 if (frame
->bFrameIntervalType
) {
901 if (fival
->index
>= frame
->bFrameIntervalType
)
904 fival
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
905 fival
->discrete
.numerator
=
906 frame
->dwFrameInterval
[fival
->index
];
907 fival
->discrete
.denominator
= 10000000;
908 uvc_simplify_fraction(&fival
->discrete
.numerator
,
909 &fival
->discrete
.denominator
, 8, 333);
911 fival
->type
= V4L2_FRMIVAL_TYPE_STEPWISE
;
912 fival
->stepwise
.min
.numerator
=
913 frame
->dwFrameInterval
[0];
914 fival
->stepwise
.min
.denominator
= 10000000;
915 fival
->stepwise
.max
.numerator
=
916 frame
->dwFrameInterval
[1];
917 fival
->stepwise
.max
.denominator
= 10000000;
918 fival
->stepwise
.step
.numerator
=
919 frame
->dwFrameInterval
[2];
920 fival
->stepwise
.step
.denominator
= 10000000;
921 uvc_simplify_fraction(&fival
->stepwise
.min
.numerator
,
922 &fival
->stepwise
.min
.denominator
, 8, 333);
923 uvc_simplify_fraction(&fival
->stepwise
.max
.numerator
,
924 &fival
->stepwise
.max
.denominator
, 8, 333);
925 uvc_simplify_fraction(&fival
->stepwise
.step
.numerator
,
926 &fival
->stepwise
.step
.denominator
, 8, 333);
931 /* Get & Set streaming parameters */
933 return uvc_v4l2_get_streamparm(stream
, arg
);
936 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
940 if ((ret
= uvc_acquire_privileges(handle
)) < 0)
943 return uvc_v4l2_set_streamparm(stream
, arg
);
945 /* Cropping and scaling */
948 struct v4l2_cropcap
*ccap
= arg
;
950 if (ccap
->type
!= stream
->type
)
953 ccap
->bounds
.left
= 0;
954 ccap
->bounds
.top
= 0;
956 mutex_lock(&stream
->mutex
);
957 ccap
->bounds
.width
= stream
->cur_frame
->wWidth
;
958 ccap
->bounds
.height
= stream
->cur_frame
->wHeight
;
959 mutex_unlock(&stream
->mutex
);
961 ccap
->defrect
= ccap
->bounds
;
963 ccap
->pixelaspect
.numerator
= 1;
964 ccap
->pixelaspect
.denominator
= 1;
972 /* Buffers & streaming */
974 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
978 if ((ret
= uvc_acquire_privileges(handle
)) < 0)
981 mutex_lock(&stream
->mutex
);
982 ret
= uvc_alloc_buffers(&stream
->queue
, arg
);
983 mutex_unlock(&stream
->mutex
);
988 uvc_dismiss_privileges(handle
);
993 case VIDIOC_QUERYBUF
:
995 struct v4l2_buffer
*buf
= arg
;
997 if (!uvc_has_privileges(handle
))
1000 return uvc_query_buffer(&stream
->queue
, buf
);
1003 case VIDIOC_CREATE_BUFS
:
1005 struct v4l2_create_buffers
*cb
= arg
;
1007 ret
= uvc_acquire_privileges(handle
);
1011 return uvc_create_buffers(&stream
->queue
, cb
);
1015 if (!uvc_has_privileges(handle
))
1018 return uvc_queue_buffer(&stream
->queue
, arg
);
1021 if (!uvc_has_privileges(handle
))
1024 return uvc_dequeue_buffer(&stream
->queue
, arg
,
1025 file
->f_flags
& O_NONBLOCK
);
1027 case VIDIOC_STREAMON
:
1031 if (*type
!= stream
->type
)
1034 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
1038 if (!uvc_has_privileges(handle
))
1041 mutex_lock(&stream
->mutex
);
1042 ret
= uvc_video_enable(stream
, 1);
1043 mutex_unlock(&stream
->mutex
);
1049 case VIDIOC_STREAMOFF
:
1053 if (*type
!= stream
->type
)
1056 ret
= v4l2_prio_check(vdev
->prio
, handle
->vfh
.prio
);
1060 if (!uvc_has_privileges(handle
))
1063 return uvc_video_enable(stream
, 0);
1066 case VIDIOC_SUBSCRIBE_EVENT
:
1068 struct v4l2_event_subscription
*sub
= arg
;
1070 switch (sub
->type
) {
1071 case V4L2_EVENT_CTRL
:
1072 return v4l2_event_subscribe(&handle
->vfh
, sub
, 0,
1073 &uvc_ctrl_sub_ev_ops
);
1079 case VIDIOC_UNSUBSCRIBE_EVENT
:
1080 return v4l2_event_unsubscribe(&handle
->vfh
, arg
);
1082 case VIDIOC_DQEVENT
:
1083 return v4l2_event_dequeue(&handle
->vfh
, arg
,
1084 file
->f_flags
& O_NONBLOCK
);
1086 /* Analog video standards make no sense for digital cameras. */
1087 case VIDIOC_ENUMSTD
:
1088 case VIDIOC_QUERYSTD
:
1092 case VIDIOC_OVERLAY
:
1094 case VIDIOC_ENUMAUDIO
:
1095 case VIDIOC_ENUMAUDOUT
:
1097 case VIDIOC_ENUMOUTPUT
:
1098 uvc_trace(UVC_TRACE_IOCTL
, "Unsupported ioctl 0x%08x\n", cmd
);
1101 case UVCIOC_CTRL_MAP
:
1102 return uvc_ioctl_ctrl_map(chain
, arg
);
1104 case UVCIOC_CTRL_QUERY
:
1105 return uvc_xu_ctrl_query(chain
, arg
);
1108 uvc_trace(UVC_TRACE_IOCTL
, "Unknown ioctl 0x%08x\n", cmd
);
1115 static long uvc_v4l2_ioctl(struct file
*file
,
1116 unsigned int cmd
, unsigned long arg
)
1118 if (uvc_trace_param
& UVC_TRACE_IOCTL
) {
1119 uvc_printk(KERN_DEBUG
, "uvc_v4l2_ioctl(");
1120 v4l_printk_ioctl(NULL
, cmd
);
1124 return video_usercopy(file
, cmd
, arg
, uvc_v4l2_do_ioctl
);
1127 #ifdef CONFIG_COMPAT
1128 struct uvc_xu_control_mapping32
{
1139 compat_caddr_t menu_info
;
1145 static int uvc_v4l2_get_xu_mapping(struct uvc_xu_control_mapping
*kp
,
1146 const struct uvc_xu_control_mapping32 __user
*up
)
1148 struct uvc_menu_info __user
*umenus
;
1149 struct uvc_menu_info __user
*kmenus
;
1152 if (!access_ok(VERIFY_READ
, up
, sizeof(*up
)) ||
1153 __copy_from_user(kp
, up
, offsetof(typeof(*up
), menu_info
)) ||
1154 __get_user(kp
->menu_count
, &up
->menu_count
))
1157 memset(kp
->reserved
, 0, sizeof(kp
->reserved
));
1159 if (kp
->menu_count
== 0) {
1160 kp
->menu_info
= NULL
;
1164 if (__get_user(p
, &up
->menu_info
))
1166 umenus
= compat_ptr(p
);
1167 if (!access_ok(VERIFY_READ
, umenus
, kp
->menu_count
* sizeof(*umenus
)))
1170 kmenus
= compat_alloc_user_space(kp
->menu_count
* sizeof(*kmenus
));
1173 kp
->menu_info
= kmenus
;
1175 if (copy_in_user(kmenus
, umenus
, kp
->menu_count
* sizeof(*umenus
)))
1181 static int uvc_v4l2_put_xu_mapping(const struct uvc_xu_control_mapping
*kp
,
1182 struct uvc_xu_control_mapping32 __user
*up
)
1184 struct uvc_menu_info __user
*umenus
;
1185 struct uvc_menu_info __user
*kmenus
= kp
->menu_info
;
1188 if (!access_ok(VERIFY_WRITE
, up
, sizeof(*up
)) ||
1189 __copy_to_user(up
, kp
, offsetof(typeof(*up
), menu_info
)) ||
1190 __put_user(kp
->menu_count
, &up
->menu_count
))
1193 if (__clear_user(up
->reserved
, sizeof(up
->reserved
)))
1196 if (kp
->menu_count
== 0)
1199 if (get_user(p
, &up
->menu_info
))
1201 umenus
= compat_ptr(p
);
1203 if (copy_in_user(umenus
, kmenus
, kp
->menu_count
* sizeof(*umenus
)))
1209 struct uvc_xu_control_query32
{
1214 compat_caddr_t data
;
1217 static int uvc_v4l2_get_xu_query(struct uvc_xu_control_query
*kp
,
1218 const struct uvc_xu_control_query32 __user
*up
)
1224 if (!access_ok(VERIFY_READ
, up
, sizeof(*up
)) ||
1225 __copy_from_user(kp
, up
, offsetof(typeof(*up
), data
)))
1228 if (kp
->size
== 0) {
1233 if (__get_user(p
, &up
->data
))
1235 udata
= compat_ptr(p
);
1236 if (!access_ok(VERIFY_READ
, udata
, kp
->size
))
1239 kdata
= compat_alloc_user_space(kp
->size
);
1244 if (copy_in_user(kdata
, udata
, kp
->size
))
1250 static int uvc_v4l2_put_xu_query(const struct uvc_xu_control_query
*kp
,
1251 struct uvc_xu_control_query32 __user
*up
)
1254 u8 __user
*kdata
= kp
->data
;
1257 if (!access_ok(VERIFY_WRITE
, up
, sizeof(*up
)) ||
1258 __copy_to_user(up
, kp
, offsetof(typeof(*up
), data
)))
1264 if (get_user(p
, &up
->data
))
1266 udata
= compat_ptr(p
);
1267 if (!access_ok(VERIFY_READ
, udata
, kp
->size
))
1270 if (copy_in_user(udata
, kdata
, kp
->size
))
1276 #define UVCIOC_CTRL_MAP32 _IOWR('u', 0x20, struct uvc_xu_control_mapping32)
1277 #define UVCIOC_CTRL_QUERY32 _IOWR('u', 0x21, struct uvc_xu_control_query32)
1279 static long uvc_v4l2_compat_ioctl32(struct file
*file
,
1280 unsigned int cmd
, unsigned long arg
)
1283 struct uvc_xu_control_mapping xmap
;
1284 struct uvc_xu_control_query xqry
;
1286 void __user
*up
= compat_ptr(arg
);
1287 mm_segment_t old_fs
;
1291 case UVCIOC_CTRL_MAP32
:
1292 cmd
= UVCIOC_CTRL_MAP
;
1293 ret
= uvc_v4l2_get_xu_mapping(&karg
.xmap
, up
);
1296 case UVCIOC_CTRL_QUERY32
:
1297 cmd
= UVCIOC_CTRL_QUERY
;
1298 ret
= uvc_v4l2_get_xu_query(&karg
.xqry
, up
);
1302 return -ENOIOCTLCMD
;
1307 ret
= uvc_v4l2_ioctl(file
, cmd
, (unsigned long)&karg
);
1314 case UVCIOC_CTRL_MAP
:
1315 ret
= uvc_v4l2_put_xu_mapping(&karg
.xmap
, up
);
1318 case UVCIOC_CTRL_QUERY
:
1319 ret
= uvc_v4l2_put_xu_query(&karg
.xqry
, up
);
1327 static ssize_t
uvc_v4l2_read(struct file
*file
, char __user
*data
,
1328 size_t count
, loff_t
*ppos
)
1330 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_read: not implemented.\n");
1334 static int uvc_v4l2_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1336 struct uvc_fh
*handle
= file
->private_data
;
1337 struct uvc_streaming
*stream
= handle
->stream
;
1339 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_mmap\n");
1341 return uvc_queue_mmap(&stream
->queue
, vma
);
1344 static unsigned int uvc_v4l2_poll(struct file
*file
, poll_table
*wait
)
1346 struct uvc_fh
*handle
= file
->private_data
;
1347 struct uvc_streaming
*stream
= handle
->stream
;
1349 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_poll\n");
1351 return uvc_queue_poll(&stream
->queue
, file
, wait
);
1355 static unsigned long uvc_v4l2_get_unmapped_area(struct file
*file
,
1356 unsigned long addr
, unsigned long len
, unsigned long pgoff
,
1357 unsigned long flags
)
1359 struct uvc_fh
*handle
= file
->private_data
;
1360 struct uvc_streaming
*stream
= handle
->stream
;
1362 uvc_trace(UVC_TRACE_CALLS
, "uvc_v4l2_get_unmapped_area\n");
1364 return uvc_queue_get_unmapped_area(&stream
->queue
, pgoff
);
1368 const struct v4l2_file_operations uvc_fops
= {
1369 .owner
= THIS_MODULE
,
1370 .open
= uvc_v4l2_open
,
1371 .release
= uvc_v4l2_release
,
1372 .unlocked_ioctl
= uvc_v4l2_ioctl
,
1373 #ifdef CONFIG_COMPAT
1374 .compat_ioctl32
= uvc_v4l2_compat_ioctl32
,
1376 .read
= uvc_v4l2_read
,
1377 .mmap
= uvc_v4l2_mmap
,
1378 .poll
= uvc_v4l2_poll
,
1380 .get_unmapped_area
= uvc_v4l2_get_unmapped_area
,