2 * Video capture interface for Linux version 2
4 * A generic framework to process V4L2 ioctl commands.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * Authors: Alan Cox, <alan@lxorguk.ukuu.org.uk> (version 1)
12 * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2)
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/types.h>
18 #include <linux/kernel.h>
19 #include <linux/version.h>
21 #include <linux/videodev2.h>
23 #include <media/v4l2-common.h>
24 #include <media/v4l2-ioctl.h>
25 #include <media/v4l2-ctrls.h>
26 #include <media/v4l2-fh.h>
27 #include <media/v4l2-event.h>
28 #include <media/v4l2-device.h>
29 #include <media/v4l2-chip-ident.h>
30 #include <media/videobuf2-core.h>
32 /* Zero out the end of the struct pointed to by p. Everything after, but
33 * not including, the specified field is cleared. */
34 #define CLEAR_AFTER_FIELD(p, field) \
35 memset((u8 *)(p) + offsetof(typeof(*(p)), field) + sizeof((p)->field), \
36 0, sizeof(*(p)) - offsetof(typeof(*(p)), field) - sizeof((p)->field))
43 static const struct std_descr standards
[] = {
44 { V4L2_STD_NTSC
, "NTSC" },
45 { V4L2_STD_NTSC_M
, "NTSC-M" },
46 { V4L2_STD_NTSC_M_JP
, "NTSC-M-JP" },
47 { V4L2_STD_NTSC_M_KR
, "NTSC-M-KR" },
48 { V4L2_STD_NTSC_443
, "NTSC-443" },
49 { V4L2_STD_PAL
, "PAL" },
50 { V4L2_STD_PAL_BG
, "PAL-BG" },
51 { V4L2_STD_PAL_B
, "PAL-B" },
52 { V4L2_STD_PAL_B1
, "PAL-B1" },
53 { V4L2_STD_PAL_G
, "PAL-G" },
54 { V4L2_STD_PAL_H
, "PAL-H" },
55 { V4L2_STD_PAL_I
, "PAL-I" },
56 { V4L2_STD_PAL_DK
, "PAL-DK" },
57 { V4L2_STD_PAL_D
, "PAL-D" },
58 { V4L2_STD_PAL_D1
, "PAL-D1" },
59 { V4L2_STD_PAL_K
, "PAL-K" },
60 { V4L2_STD_PAL_M
, "PAL-M" },
61 { V4L2_STD_PAL_N
, "PAL-N" },
62 { V4L2_STD_PAL_Nc
, "PAL-Nc" },
63 { V4L2_STD_PAL_60
, "PAL-60" },
64 { V4L2_STD_SECAM
, "SECAM" },
65 { V4L2_STD_SECAM_B
, "SECAM-B" },
66 { V4L2_STD_SECAM_G
, "SECAM-G" },
67 { V4L2_STD_SECAM_H
, "SECAM-H" },
68 { V4L2_STD_SECAM_DK
, "SECAM-DK" },
69 { V4L2_STD_SECAM_D
, "SECAM-D" },
70 { V4L2_STD_SECAM_K
, "SECAM-K" },
71 { V4L2_STD_SECAM_K1
, "SECAM-K1" },
72 { V4L2_STD_SECAM_L
, "SECAM-L" },
73 { V4L2_STD_SECAM_LC
, "SECAM-Lc" },
77 /* video4linux standard ID conversion to standard name
79 const char *v4l2_norm_to_name(v4l2_std_id id
)
84 /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle
85 64 bit comparations. So, on that architecture, with some gcc
86 variants, compilation fails. Currently, the max value is 30bit wide.
90 for (i
= 0; standards
[i
].std
; i
++)
91 if (myid
== standards
[i
].std
)
93 return standards
[i
].descr
;
95 EXPORT_SYMBOL(v4l2_norm_to_name
);
97 /* Returns frame period for the given standard */
98 void v4l2_video_std_frame_period(int id
, struct v4l2_fract
*frameperiod
)
100 if (id
& V4L2_STD_525_60
) {
101 frameperiod
->numerator
= 1001;
102 frameperiod
->denominator
= 30000;
104 frameperiod
->numerator
= 1;
105 frameperiod
->denominator
= 25;
108 EXPORT_SYMBOL(v4l2_video_std_frame_period
);
110 /* Fill in the fields of a v4l2_standard structure according to the
111 'id' and 'transmission' parameters. Returns negative on error. */
112 int v4l2_video_std_construct(struct v4l2_standard
*vs
,
113 int id
, const char *name
)
116 v4l2_video_std_frame_period(id
, &vs
->frameperiod
);
117 vs
->framelines
= (id
& V4L2_STD_525_60
) ? 525 : 625;
118 strlcpy(vs
->name
, name
, sizeof(vs
->name
));
121 EXPORT_SYMBOL(v4l2_video_std_construct
);
123 /* ----------------------------------------------------------------- */
124 /* some arrays for pretty-printing debug messages of enum types */
126 const char *v4l2_field_names
[] = {
127 [V4L2_FIELD_ANY
] = "any",
128 [V4L2_FIELD_NONE
] = "none",
129 [V4L2_FIELD_TOP
] = "top",
130 [V4L2_FIELD_BOTTOM
] = "bottom",
131 [V4L2_FIELD_INTERLACED
] = "interlaced",
132 [V4L2_FIELD_SEQ_TB
] = "seq-tb",
133 [V4L2_FIELD_SEQ_BT
] = "seq-bt",
134 [V4L2_FIELD_ALTERNATE
] = "alternate",
135 [V4L2_FIELD_INTERLACED_TB
] = "interlaced-tb",
136 [V4L2_FIELD_INTERLACED_BT
] = "interlaced-bt",
138 EXPORT_SYMBOL(v4l2_field_names
);
140 const char *v4l2_type_names
[] = {
141 [V4L2_BUF_TYPE_VIDEO_CAPTURE
] = "vid-cap",
142 [V4L2_BUF_TYPE_VIDEO_OVERLAY
] = "vid-overlay",
143 [V4L2_BUF_TYPE_VIDEO_OUTPUT
] = "vid-out",
144 [V4L2_BUF_TYPE_VBI_CAPTURE
] = "vbi-cap",
145 [V4L2_BUF_TYPE_VBI_OUTPUT
] = "vbi-out",
146 [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
] = "sliced-vbi-cap",
147 [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
] = "sliced-vbi-out",
148 [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
] = "vid-out-overlay",
149 [V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
] = "vid-cap-mplane",
150 [V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
] = "vid-out-mplane",
152 EXPORT_SYMBOL(v4l2_type_names
);
154 static const char *v4l2_memory_names
[] = {
155 [V4L2_MEMORY_MMAP
] = "mmap",
156 [V4L2_MEMORY_USERPTR
] = "userptr",
157 [V4L2_MEMORY_OVERLAY
] = "overlay",
160 #define prt_names(a, arr) ((((a) >= 0) && ((a) < ARRAY_SIZE(arr))) ? \
163 /* ------------------------------------------------------------------ */
164 /* debug help functions */
166 static void v4l_print_querycap(const void *arg
, bool write_only
)
168 const struct v4l2_capability
*p
= arg
;
170 pr_cont("driver=%s, card=%s, bus=%s, version=0x%08x, "
171 "capabilities=0x%08x, device_caps=0x%08x\n",
172 p
->driver
, p
->card
, p
->bus_info
,
173 p
->version
, p
->capabilities
, p
->device_caps
);
176 static void v4l_print_enuminput(const void *arg
, bool write_only
)
178 const struct v4l2_input
*p
= arg
;
180 pr_cont("index=%u, name=%s, type=%u, audioset=0x%x, tuner=%u, "
181 "std=0x%08Lx, status=0x%x, capabilities=0x%x\n",
182 p
->index
, p
->name
, p
->type
, p
->audioset
, p
->tuner
,
183 (unsigned long long)p
->std
, p
->status
, p
->capabilities
);
186 static void v4l_print_enumoutput(const void *arg
, bool write_only
)
188 const struct v4l2_output
*p
= arg
;
190 pr_cont("index=%u, name=%s, type=%u, audioset=0x%x, "
191 "modulator=%u, std=0x%08Lx, capabilities=0x%x\n",
192 p
->index
, p
->name
, p
->type
, p
->audioset
, p
->modulator
,
193 (unsigned long long)p
->std
, p
->capabilities
);
196 static void v4l_print_audio(const void *arg
, bool write_only
)
198 const struct v4l2_audio
*p
= arg
;
201 pr_cont("index=%u, mode=0x%x\n", p
->index
, p
->mode
);
203 pr_cont("index=%u, name=%s, capability=0x%x, mode=0x%x\n",
204 p
->index
, p
->name
, p
->capability
, p
->mode
);
207 static void v4l_print_audioout(const void *arg
, bool write_only
)
209 const struct v4l2_audioout
*p
= arg
;
212 pr_cont("index=%u\n", p
->index
);
214 pr_cont("index=%u, name=%s, capability=0x%x, mode=0x%x\n",
215 p
->index
, p
->name
, p
->capability
, p
->mode
);
218 static void v4l_print_fmtdesc(const void *arg
, bool write_only
)
220 const struct v4l2_fmtdesc
*p
= arg
;
222 pr_cont("index=%u, type=%s, flags=0x%x, pixelformat=%c%c%c%c, description='%s'\n",
223 p
->index
, prt_names(p
->type
, v4l2_type_names
),
224 p
->flags
, (p
->pixelformat
& 0xff),
225 (p
->pixelformat
>> 8) & 0xff,
226 (p
->pixelformat
>> 16) & 0xff,
227 (p
->pixelformat
>> 24) & 0xff,
231 static void v4l_print_format(const void *arg
, bool write_only
)
233 const struct v4l2_format
*p
= arg
;
234 const struct v4l2_pix_format
*pix
;
235 const struct v4l2_pix_format_mplane
*mp
;
236 const struct v4l2_vbi_format
*vbi
;
237 const struct v4l2_sliced_vbi_format
*sliced
;
238 const struct v4l2_window
*win
;
239 const struct v4l2_clip
*clip
;
242 pr_cont("type=%s", prt_names(p
->type
, v4l2_type_names
));
244 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
245 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
247 pr_cont(", width=%u, height=%u, "
248 "pixelformat=%c%c%c%c, field=%s, "
249 "bytesperline=%u sizeimage=%u, colorspace=%d\n",
250 pix
->width
, pix
->height
,
251 (pix
->pixelformat
& 0xff),
252 (pix
->pixelformat
>> 8) & 0xff,
253 (pix
->pixelformat
>> 16) & 0xff,
254 (pix
->pixelformat
>> 24) & 0xff,
255 prt_names(pix
->field
, v4l2_field_names
),
256 pix
->bytesperline
, pix
->sizeimage
,
259 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
260 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
262 pr_cont(", width=%u, height=%u, "
263 "format=%c%c%c%c, field=%s, "
264 "colorspace=%d, num_planes=%u\n",
265 mp
->width
, mp
->height
,
266 (mp
->pixelformat
& 0xff),
267 (mp
->pixelformat
>> 8) & 0xff,
268 (mp
->pixelformat
>> 16) & 0xff,
269 (mp
->pixelformat
>> 24) & 0xff,
270 prt_names(mp
->field
, v4l2_field_names
),
271 mp
->colorspace
, mp
->num_planes
);
272 for (i
= 0; i
< mp
->num_planes
; i
++)
273 printk(KERN_DEBUG
"plane %u: bytesperline=%u sizeimage=%u\n", i
,
274 mp
->plane_fmt
[i
].bytesperline
,
275 mp
->plane_fmt
[i
].sizeimage
);
277 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
278 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
:
280 pr_cont(", wxh=%dx%d, x,y=%d,%d, field=%s, "
281 "chromakey=0x%08x, bitmap=%p, "
282 "global_alpha=0x%02x\n",
283 win
->w
.width
, win
->w
.height
,
284 win
->w
.left
, win
->w
.top
,
285 prt_names(win
->field
, v4l2_field_names
),
286 win
->chromakey
, win
->bitmap
, win
->global_alpha
);
288 for (i
= 0; i
< win
->clipcount
; i
++) {
289 printk(KERN_DEBUG
"clip %u: wxh=%dx%d, x,y=%d,%d\n",
290 i
, clip
->c
.width
, clip
->c
.height
,
291 clip
->c
.left
, clip
->c
.top
);
295 case V4L2_BUF_TYPE_VBI_CAPTURE
:
296 case V4L2_BUF_TYPE_VBI_OUTPUT
:
298 pr_cont(", sampling_rate=%u, offset=%u, samples_per_line=%u, "
299 "sample_format=%c%c%c%c, start=%u,%u, count=%u,%u\n",
300 vbi
->sampling_rate
, vbi
->offset
,
301 vbi
->samples_per_line
,
302 (vbi
->sample_format
& 0xff),
303 (vbi
->sample_format
>> 8) & 0xff,
304 (vbi
->sample_format
>> 16) & 0xff,
305 (vbi
->sample_format
>> 24) & 0xff,
306 vbi
->start
[0], vbi
->start
[1],
307 vbi
->count
[0], vbi
->count
[1]);
309 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
310 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
:
311 sliced
= &p
->fmt
.sliced
;
312 pr_cont(", service_set=0x%08x, io_size=%d\n",
313 sliced
->service_set
, sliced
->io_size
);
314 for (i
= 0; i
< 24; i
++)
315 printk(KERN_DEBUG
"line[%02u]=0x%04x, 0x%04x\n", i
,
316 sliced
->service_lines
[0][i
],
317 sliced
->service_lines
[1][i
]);
319 case V4L2_BUF_TYPE_PRIVATE
:
325 static void v4l_print_framebuffer(const void *arg
, bool write_only
)
327 const struct v4l2_framebuffer
*p
= arg
;
329 pr_cont("capability=0x%x, flags=0x%x, base=0x%p, width=%u, "
330 "height=%u, pixelformat=%c%c%c%c, "
331 "bytesperline=%u sizeimage=%u, colorspace=%d\n",
332 p
->capability
, p
->flags
, p
->base
,
333 p
->fmt
.width
, p
->fmt
.height
,
334 (p
->fmt
.pixelformat
& 0xff),
335 (p
->fmt
.pixelformat
>> 8) & 0xff,
336 (p
->fmt
.pixelformat
>> 16) & 0xff,
337 (p
->fmt
.pixelformat
>> 24) & 0xff,
338 p
->fmt
.bytesperline
, p
->fmt
.sizeimage
,
342 static void v4l_print_buftype(const void *arg
, bool write_only
)
344 pr_cont("type=%s\n", prt_names(*(u32
*)arg
, v4l2_type_names
));
347 static void v4l_print_modulator(const void *arg
, bool write_only
)
349 const struct v4l2_modulator
*p
= arg
;
352 pr_cont("index=%u, txsubchans=0x%x", p
->index
, p
->txsubchans
);
354 pr_cont("index=%u, name=%s, capability=0x%x, "
355 "rangelow=%u, rangehigh=%u, txsubchans=0x%x\n",
356 p
->index
, p
->name
, p
->capability
,
357 p
->rangelow
, p
->rangehigh
, p
->txsubchans
);
360 static void v4l_print_tuner(const void *arg
, bool write_only
)
362 const struct v4l2_tuner
*p
= arg
;
365 pr_cont("index=%u, audmode=%u\n", p
->index
, p
->audmode
);
367 pr_cont("index=%u, name=%s, type=%u, capability=0x%x, "
368 "rangelow=%u, rangehigh=%u, signal=%u, afc=%d, "
369 "rxsubchans=0x%x, audmode=%u\n",
370 p
->index
, p
->name
, p
->type
,
371 p
->capability
, p
->rangelow
,
372 p
->rangehigh
, p
->signal
, p
->afc
,
373 p
->rxsubchans
, p
->audmode
);
376 static void v4l_print_frequency(const void *arg
, bool write_only
)
378 const struct v4l2_frequency
*p
= arg
;
380 pr_cont("tuner=%u, type=%u, frequency=%u\n",
381 p
->tuner
, p
->type
, p
->frequency
);
384 static void v4l_print_standard(const void *arg
, bool write_only
)
386 const struct v4l2_standard
*p
= arg
;
388 pr_cont("index=%u, id=0x%Lx, name=%s, fps=%u/%u, "
389 "framelines=%u\n", p
->index
,
390 (unsigned long long)p
->id
, p
->name
,
391 p
->frameperiod
.numerator
,
392 p
->frameperiod
.denominator
,
396 static void v4l_print_std(const void *arg
, bool write_only
)
398 pr_cont("std=0x%08Lx\n", *(const long long unsigned *)arg
);
401 static void v4l_print_hw_freq_seek(const void *arg
, bool write_only
)
403 const struct v4l2_hw_freq_seek
*p
= arg
;
405 pr_cont("tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u, "
406 "rangelow=%u, rangehigh=%u\n",
407 p
->tuner
, p
->type
, p
->seek_upward
, p
->wrap_around
, p
->spacing
,
408 p
->rangelow
, p
->rangehigh
);
411 static void v4l_print_requestbuffers(const void *arg
, bool write_only
)
413 const struct v4l2_requestbuffers
*p
= arg
;
415 pr_cont("count=%d, type=%s, memory=%s\n",
417 prt_names(p
->type
, v4l2_type_names
),
418 prt_names(p
->memory
, v4l2_memory_names
));
421 static void v4l_print_buffer(const void *arg
, bool write_only
)
423 const struct v4l2_buffer
*p
= arg
;
424 const struct v4l2_timecode
*tc
= &p
->timecode
;
425 const struct v4l2_plane
*plane
;
428 pr_cont("%02ld:%02d:%02d.%08ld index=%d, type=%s, "
429 "flags=0x%08x, field=%s, sequence=%d, memory=%s",
430 p
->timestamp
.tv_sec
/ 3600,
431 (int)(p
->timestamp
.tv_sec
/ 60) % 60,
432 (int)(p
->timestamp
.tv_sec
% 60),
433 (long)p
->timestamp
.tv_usec
,
435 prt_names(p
->type
, v4l2_type_names
),
436 p
->flags
, prt_names(p
->field
, v4l2_field_names
),
437 p
->sequence
, prt_names(p
->memory
, v4l2_memory_names
));
439 if (V4L2_TYPE_IS_MULTIPLANAR(p
->type
) && p
->m
.planes
) {
441 for (i
= 0; i
< p
->length
; ++i
) {
442 plane
= &p
->m
.planes
[i
];
444 "plane %d: bytesused=%d, data_offset=0x%08x "
445 "offset/userptr=0x%lx, length=%d\n",
446 i
, plane
->bytesused
, plane
->data_offset
,
447 plane
->m
.userptr
, plane
->length
);
450 pr_cont("bytesused=%d, offset/userptr=0x%lx, length=%d\n",
451 p
->bytesused
, p
->m
.userptr
, p
->length
);
454 printk(KERN_DEBUG
"timecode=%02d:%02d:%02d type=%d, "
455 "flags=0x%08x, frames=%d, userbits=0x%08x\n",
456 tc
->hours
, tc
->minutes
, tc
->seconds
,
457 tc
->type
, tc
->flags
, tc
->frames
, *(__u32
*)tc
->userbits
);
460 static void v4l_print_create_buffers(const void *arg
, bool write_only
)
462 const struct v4l2_create_buffers
*p
= arg
;
464 pr_cont("index=%d, count=%d, memory=%s, ",
466 prt_names(p
->memory
, v4l2_memory_names
));
467 v4l_print_format(&p
->format
, write_only
);
470 static void v4l_print_streamparm(const void *arg
, bool write_only
)
472 const struct v4l2_streamparm
*p
= arg
;
474 pr_cont("type=%s", prt_names(p
->type
, v4l2_type_names
));
476 if (p
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
||
477 p
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
) {
478 const struct v4l2_captureparm
*c
= &p
->parm
.capture
;
480 pr_cont(", capability=0x%x, capturemode=0x%x, timeperframe=%d/%d, "
481 "extendedmode=%d, readbuffers=%d\n",
482 c
->capability
, c
->capturemode
,
483 c
->timeperframe
.numerator
, c
->timeperframe
.denominator
,
484 c
->extendedmode
, c
->readbuffers
);
485 } else if (p
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT
||
486 p
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
) {
487 const struct v4l2_outputparm
*c
= &p
->parm
.output
;
489 pr_cont(", capability=0x%x, outputmode=0x%x, timeperframe=%d/%d, "
490 "extendedmode=%d, writebuffers=%d\n",
491 c
->capability
, c
->outputmode
,
492 c
->timeperframe
.numerator
, c
->timeperframe
.denominator
,
493 c
->extendedmode
, c
->writebuffers
);
497 static void v4l_print_queryctrl(const void *arg
, bool write_only
)
499 const struct v4l2_queryctrl
*p
= arg
;
501 pr_cont("id=0x%x, type=%d, name=%s, min/max=%d/%d, "
502 "step=%d, default=%d, flags=0x%08x\n",
503 p
->id
, p
->type
, p
->name
,
504 p
->minimum
, p
->maximum
,
505 p
->step
, p
->default_value
, p
->flags
);
508 static void v4l_print_querymenu(const void *arg
, bool write_only
)
510 const struct v4l2_querymenu
*p
= arg
;
512 pr_cont("id=0x%x, index=%d\n", p
->id
, p
->index
);
515 static void v4l_print_control(const void *arg
, bool write_only
)
517 const struct v4l2_control
*p
= arg
;
519 pr_cont("id=0x%x, value=%d\n", p
->id
, p
->value
);
522 static void v4l_print_ext_controls(const void *arg
, bool write_only
)
524 const struct v4l2_ext_controls
*p
= arg
;
527 pr_cont("class=0x%x, count=%d, error_idx=%d",
528 p
->ctrl_class
, p
->count
, p
->error_idx
);
529 for (i
= 0; i
< p
->count
; i
++) {
530 if (p
->controls
[i
].size
)
531 pr_cont(", id/val=0x%x/0x%x",
532 p
->controls
[i
].id
, p
->controls
[i
].value
);
534 pr_cont(", id/size=0x%x/%u",
535 p
->controls
[i
].id
, p
->controls
[i
].size
);
540 static void v4l_print_cropcap(const void *arg
, bool write_only
)
542 const struct v4l2_cropcap
*p
= arg
;
544 pr_cont("type=%s, bounds wxh=%dx%d, x,y=%d,%d, "
545 "defrect wxh=%dx%d, x,y=%d,%d\n, "
546 "pixelaspect %d/%d\n",
547 prt_names(p
->type
, v4l2_type_names
),
548 p
->bounds
.width
, p
->bounds
.height
,
549 p
->bounds
.left
, p
->bounds
.top
,
550 p
->defrect
.width
, p
->defrect
.height
,
551 p
->defrect
.left
, p
->defrect
.top
,
552 p
->pixelaspect
.numerator
, p
->pixelaspect
.denominator
);
555 static void v4l_print_crop(const void *arg
, bool write_only
)
557 const struct v4l2_crop
*p
= arg
;
559 pr_cont("type=%s, wxh=%dx%d, x,y=%d,%d\n",
560 prt_names(p
->type
, v4l2_type_names
),
561 p
->c
.width
, p
->c
.height
,
562 p
->c
.left
, p
->c
.top
);
565 static void v4l_print_selection(const void *arg
, bool write_only
)
567 const struct v4l2_selection
*p
= arg
;
569 pr_cont("type=%s, target=%d, flags=0x%x, wxh=%dx%d, x,y=%d,%d\n",
570 prt_names(p
->type
, v4l2_type_names
),
572 p
->r
.width
, p
->r
.height
, p
->r
.left
, p
->r
.top
);
575 static void v4l_print_jpegcompression(const void *arg
, bool write_only
)
577 const struct v4l2_jpegcompression
*p
= arg
;
579 pr_cont("quality=%d, APPn=%d, APP_len=%d, "
580 "COM_len=%d, jpeg_markers=0x%x\n",
581 p
->quality
, p
->APPn
, p
->APP_len
,
582 p
->COM_len
, p
->jpeg_markers
);
585 static void v4l_print_enc_idx(const void *arg
, bool write_only
)
587 const struct v4l2_enc_idx
*p
= arg
;
589 pr_cont("entries=%d, entries_cap=%d\n",
590 p
->entries
, p
->entries_cap
);
593 static void v4l_print_encoder_cmd(const void *arg
, bool write_only
)
595 const struct v4l2_encoder_cmd
*p
= arg
;
597 pr_cont("cmd=%d, flags=0x%x\n",
601 static void v4l_print_decoder_cmd(const void *arg
, bool write_only
)
603 const struct v4l2_decoder_cmd
*p
= arg
;
605 pr_cont("cmd=%d, flags=0x%x\n", p
->cmd
, p
->flags
);
607 if (p
->cmd
== V4L2_DEC_CMD_START
)
608 pr_info("speed=%d, format=%u\n",
609 p
->start
.speed
, p
->start
.format
);
610 else if (p
->cmd
== V4L2_DEC_CMD_STOP
)
611 pr_info("pts=%llu\n", p
->stop
.pts
);
614 static void v4l_print_dbg_chip_ident(const void *arg
, bool write_only
)
616 const struct v4l2_dbg_chip_ident
*p
= arg
;
618 pr_cont("type=%u, ", p
->match
.type
);
619 if (p
->match
.type
== V4L2_CHIP_MATCH_I2C_DRIVER
)
620 pr_cont("name=%s, ", p
->match
.name
);
622 pr_cont("addr=%u, ", p
->match
.addr
);
623 pr_cont("chip_ident=%u, revision=0x%x\n",
624 p
->ident
, p
->revision
);
627 static void v4l_print_dbg_register(const void *arg
, bool write_only
)
629 const struct v4l2_dbg_register
*p
= arg
;
631 pr_cont("type=%u, ", p
->match
.type
);
632 if (p
->match
.type
== V4L2_CHIP_MATCH_I2C_DRIVER
)
633 pr_cont("name=%s, ", p
->match
.name
);
635 pr_cont("addr=%u, ", p
->match
.addr
);
636 pr_cont("reg=0x%llx, val=0x%llx\n",
640 static void v4l_print_dv_enum_presets(const void *arg
, bool write_only
)
642 const struct v4l2_dv_enum_preset
*p
= arg
;
644 pr_cont("index=%u, preset=%u, name=%s, width=%u, height=%u\n",
645 p
->index
, p
->preset
, p
->name
, p
->width
, p
->height
);
648 static void v4l_print_dv_preset(const void *arg
, bool write_only
)
650 const struct v4l2_dv_preset
*p
= arg
;
652 pr_cont("preset=%u\n", p
->preset
);
655 static void v4l_print_dv_timings(const void *arg
, bool write_only
)
657 const struct v4l2_dv_timings
*p
= arg
;
660 case V4L2_DV_BT_656_1120
:
661 pr_cont("type=bt-656/1120, interlaced=%u, "
663 "width=%u, height=%u, polarities=0x%x, "
664 "hfrontporch=%u, hsync=%u, "
665 "hbackporch=%u, vfrontporch=%u, "
666 "vsync=%u, vbackporch=%u, "
667 "il_vfrontporch=%u, il_vsync=%u, "
668 "il_vbackporch=%u, standards=0x%x, flags=0x%x\n",
669 p
->bt
.interlaced
, p
->bt
.pixelclock
,
670 p
->bt
.width
, p
->bt
.height
,
671 p
->bt
.polarities
, p
->bt
.hfrontporch
,
672 p
->bt
.hsync
, p
->bt
.hbackporch
,
673 p
->bt
.vfrontporch
, p
->bt
.vsync
,
674 p
->bt
.vbackporch
, p
->bt
.il_vfrontporch
,
675 p
->bt
.il_vsync
, p
->bt
.il_vbackporch
,
676 p
->bt
.standards
, p
->bt
.flags
);
679 pr_cont("type=%d\n", p
->type
);
684 static void v4l_print_enum_dv_timings(const void *arg
, bool write_only
)
686 const struct v4l2_enum_dv_timings
*p
= arg
;
688 pr_cont("index=%u, ", p
->index
);
689 v4l_print_dv_timings(&p
->timings
, write_only
);
692 static void v4l_print_dv_timings_cap(const void *arg
, bool write_only
)
694 const struct v4l2_dv_timings_cap
*p
= arg
;
697 case V4L2_DV_BT_656_1120
:
698 pr_cont("type=bt-656/1120, width=%u-%u, height=%u-%u, "
699 "pixelclock=%llu-%llu, standards=0x%x, capabilities=0x%x\n",
700 p
->bt
.min_width
, p
->bt
.max_width
,
701 p
->bt
.min_height
, p
->bt
.max_height
,
702 p
->bt
.min_pixelclock
, p
->bt
.max_pixelclock
,
703 p
->bt
.standards
, p
->bt
.capabilities
);
706 pr_cont("type=%u\n", p
->type
);
711 static void v4l_print_frmsizeenum(const void *arg
, bool write_only
)
713 const struct v4l2_frmsizeenum
*p
= arg
;
715 pr_cont("index=%u, pixelformat=%c%c%c%c, type=%u",
717 (p
->pixel_format
& 0xff),
718 (p
->pixel_format
>> 8) & 0xff,
719 (p
->pixel_format
>> 16) & 0xff,
720 (p
->pixel_format
>> 24) & 0xff,
723 case V4L2_FRMSIZE_TYPE_DISCRETE
:
724 pr_cont(" wxh=%ux%u\n",
725 p
->discrete
.width
, p
->discrete
.height
);
727 case V4L2_FRMSIZE_TYPE_STEPWISE
:
728 pr_cont(" min=%ux%u, max=%ux%u, step=%ux%u\n",
729 p
->stepwise
.min_width
, p
->stepwise
.min_height
,
730 p
->stepwise
.step_width
, p
->stepwise
.step_height
,
731 p
->stepwise
.max_width
, p
->stepwise
.max_height
);
733 case V4L2_FRMSIZE_TYPE_CONTINUOUS
:
741 static void v4l_print_frmivalenum(const void *arg
, bool write_only
)
743 const struct v4l2_frmivalenum
*p
= arg
;
745 pr_cont("index=%u, pixelformat=%c%c%c%c, wxh=%ux%u, type=%u",
747 (p
->pixel_format
& 0xff),
748 (p
->pixel_format
>> 8) & 0xff,
749 (p
->pixel_format
>> 16) & 0xff,
750 (p
->pixel_format
>> 24) & 0xff,
751 p
->width
, p
->height
, p
->type
);
753 case V4L2_FRMIVAL_TYPE_DISCRETE
:
754 pr_cont(" fps=%d/%d\n",
755 p
->discrete
.numerator
,
756 p
->discrete
.denominator
);
758 case V4L2_FRMIVAL_TYPE_STEPWISE
:
759 pr_cont(" min=%d/%d, max=%d/%d, step=%d/%d\n",
760 p
->stepwise
.min
.numerator
,
761 p
->stepwise
.min
.denominator
,
762 p
->stepwise
.max
.numerator
,
763 p
->stepwise
.max
.denominator
,
764 p
->stepwise
.step
.numerator
,
765 p
->stepwise
.step
.denominator
);
767 case V4L2_FRMIVAL_TYPE_CONTINUOUS
:
775 static void v4l_print_event(const void *arg
, bool write_only
)
777 const struct v4l2_event
*p
= arg
;
778 const struct v4l2_event_ctrl
*c
;
780 pr_cont("type=0x%x, pending=%u, sequence=%u, id=%u, "
781 "timestamp=%lu.%9.9lu\n",
782 p
->type
, p
->pending
, p
->sequence
, p
->id
,
783 p
->timestamp
.tv_sec
, p
->timestamp
.tv_nsec
);
785 case V4L2_EVENT_VSYNC
:
786 printk(KERN_DEBUG
"field=%s\n",
787 prt_names(p
->u
.vsync
.field
, v4l2_field_names
));
789 case V4L2_EVENT_CTRL
:
791 printk(KERN_DEBUG
"changes=0x%x, type=%u, ",
792 c
->changes
, c
->type
);
793 if (c
->type
== V4L2_CTRL_TYPE_INTEGER64
)
794 pr_cont("value64=%lld, ", c
->value64
);
796 pr_cont("value=%d, ", c
->value
);
797 pr_cont("flags=0x%x, minimum=%d, maximum=%d, step=%d,"
798 " default_value=%d\n",
799 c
->flags
, c
->minimum
, c
->maximum
,
800 c
->step
, c
->default_value
);
802 case V4L2_EVENT_FRAME_SYNC
:
803 pr_cont("frame_sequence=%u\n",
804 p
->u
.frame_sync
.frame_sequence
);
809 static void v4l_print_event_subscription(const void *arg
, bool write_only
)
811 const struct v4l2_event_subscription
*p
= arg
;
813 pr_cont("type=0x%x, id=0x%x, flags=0x%x\n",
814 p
->type
, p
->id
, p
->flags
);
817 static void v4l_print_sliced_vbi_cap(const void *arg
, bool write_only
)
819 const struct v4l2_sliced_vbi_cap
*p
= arg
;
822 pr_cont("type=%s, service_set=0x%08x\n",
823 prt_names(p
->type
, v4l2_type_names
), p
->service_set
);
824 for (i
= 0; i
< 24; i
++)
825 printk(KERN_DEBUG
"line[%02u]=0x%04x, 0x%04x\n", i
,
826 p
->service_lines
[0][i
],
827 p
->service_lines
[1][i
]);
830 static void v4l_print_freq_band(const void *arg
, bool write_only
)
832 const struct v4l2_frequency_band
*p
= arg
;
834 pr_cont("tuner=%u, type=%u, index=%u, capability=0x%x, "
835 "rangelow=%u, rangehigh=%u, modulation=0x%x\n",
836 p
->tuner
, p
->type
, p
->index
,
837 p
->capability
, p
->rangelow
,
838 p
->rangehigh
, p
->modulation
);
841 static void v4l_print_u32(const void *arg
, bool write_only
)
843 pr_cont("value=%u\n", *(const u32
*)arg
);
846 static void v4l_print_newline(const void *arg
, bool write_only
)
851 static void v4l_print_default(const void *arg
, bool write_only
)
853 pr_cont("driver-specific ioctl\n");
856 static int check_ext_ctrls(struct v4l2_ext_controls
*c
, int allow_priv
)
860 /* zero the reserved fields */
861 c
->reserved
[0] = c
->reserved
[1] = 0;
862 for (i
= 0; i
< c
->count
; i
++)
863 c
->controls
[i
].reserved2
[0] = 0;
865 /* V4L2_CID_PRIVATE_BASE cannot be used as control class
866 when using extended controls.
867 Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL
868 is it allowed for backwards compatibility.
870 if (!allow_priv
&& c
->ctrl_class
== V4L2_CID_PRIVATE_BASE
)
872 /* Check that all controls are from the same control class. */
873 for (i
= 0; i
< c
->count
; i
++) {
874 if (V4L2_CTRL_ID2CLASS(c
->controls
[i
].id
) != c
->ctrl_class
) {
882 static int check_fmt(const struct v4l2_ioctl_ops
*ops
, enum v4l2_buf_type type
)
888 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
889 if (ops
->vidioc_g_fmt_vid_cap
||
890 ops
->vidioc_g_fmt_vid_cap_mplane
)
893 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
894 if (ops
->vidioc_g_fmt_vid_cap_mplane
)
897 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
898 if (ops
->vidioc_g_fmt_vid_overlay
)
901 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
902 if (ops
->vidioc_g_fmt_vid_out
||
903 ops
->vidioc_g_fmt_vid_out_mplane
)
906 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
907 if (ops
->vidioc_g_fmt_vid_out_mplane
)
910 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
:
911 if (ops
->vidioc_g_fmt_vid_out_overlay
)
914 case V4L2_BUF_TYPE_VBI_CAPTURE
:
915 if (ops
->vidioc_g_fmt_vbi_cap
)
918 case V4L2_BUF_TYPE_VBI_OUTPUT
:
919 if (ops
->vidioc_g_fmt_vbi_out
)
922 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
923 if (ops
->vidioc_g_fmt_sliced_vbi_cap
)
926 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
:
927 if (ops
->vidioc_g_fmt_sliced_vbi_out
)
930 case V4L2_BUF_TYPE_PRIVATE
:
931 if (ops
->vidioc_g_fmt_type_private
)
938 static int v4l_querycap(const struct v4l2_ioctl_ops
*ops
,
939 struct file
*file
, void *fh
, void *arg
)
941 struct v4l2_capability
*cap
= (struct v4l2_capability
*)arg
;
943 cap
->version
= LINUX_VERSION_CODE
;
944 return ops
->vidioc_querycap(file
, fh
, cap
);
947 static int v4l_s_input(const struct v4l2_ioctl_ops
*ops
,
948 struct file
*file
, void *fh
, void *arg
)
950 return ops
->vidioc_s_input(file
, fh
, *(unsigned int *)arg
);
953 static int v4l_s_output(const struct v4l2_ioctl_ops
*ops
,
954 struct file
*file
, void *fh
, void *arg
)
956 return ops
->vidioc_s_output(file
, fh
, *(unsigned int *)arg
);
959 static int v4l_g_priority(const struct v4l2_ioctl_ops
*ops
,
960 struct file
*file
, void *fh
, void *arg
)
962 struct video_device
*vfd
;
965 if (ops
->vidioc_g_priority
)
966 return ops
->vidioc_g_priority(file
, fh
, arg
);
967 vfd
= video_devdata(file
);
968 *p
= v4l2_prio_max(&vfd
->v4l2_dev
->prio
);
972 static int v4l_s_priority(const struct v4l2_ioctl_ops
*ops
,
973 struct file
*file
, void *fh
, void *arg
)
975 struct video_device
*vfd
;
979 if (ops
->vidioc_s_priority
)
980 return ops
->vidioc_s_priority(file
, fh
, *p
);
981 vfd
= video_devdata(file
);
982 vfh
= file
->private_data
;
983 return v4l2_prio_change(&vfd
->v4l2_dev
->prio
, &vfh
->prio
, *p
);
986 static int v4l_enuminput(const struct v4l2_ioctl_ops
*ops
,
987 struct file
*file
, void *fh
, void *arg
)
989 struct v4l2_input
*p
= arg
;
992 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
993 * CAP_STD here based on ioctl handler provided by the
994 * driver. If the driver doesn't support these
995 * for a specific input, it must override these flags.
997 if (ops
->vidioc_s_std
)
998 p
->capabilities
|= V4L2_IN_CAP_STD
;
999 if (ops
->vidioc_s_dv_preset
)
1000 p
->capabilities
|= V4L2_IN_CAP_PRESETS
;
1001 if (ops
->vidioc_s_dv_timings
)
1002 p
->capabilities
|= V4L2_IN_CAP_CUSTOM_TIMINGS
;
1004 return ops
->vidioc_enum_input(file
, fh
, p
);
1007 static int v4l_enumoutput(const struct v4l2_ioctl_ops
*ops
,
1008 struct file
*file
, void *fh
, void *arg
)
1010 struct v4l2_output
*p
= arg
;
1013 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
1014 * CAP_STD here based on ioctl handler provided by the
1015 * driver. If the driver doesn't support these
1016 * for a specific output, it must override these flags.
1018 if (ops
->vidioc_s_std
)
1019 p
->capabilities
|= V4L2_OUT_CAP_STD
;
1020 if (ops
->vidioc_s_dv_preset
)
1021 p
->capabilities
|= V4L2_OUT_CAP_PRESETS
;
1022 if (ops
->vidioc_s_dv_timings
)
1023 p
->capabilities
|= V4L2_OUT_CAP_CUSTOM_TIMINGS
;
1025 return ops
->vidioc_enum_output(file
, fh
, p
);
1028 static int v4l_enum_fmt(const struct v4l2_ioctl_ops
*ops
,
1029 struct file
*file
, void *fh
, void *arg
)
1031 struct v4l2_fmtdesc
*p
= arg
;
1034 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
1035 if (unlikely(!ops
->vidioc_enum_fmt_vid_cap
))
1037 return ops
->vidioc_enum_fmt_vid_cap(file
, fh
, arg
);
1038 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1039 if (unlikely(!ops
->vidioc_enum_fmt_vid_cap_mplane
))
1041 return ops
->vidioc_enum_fmt_vid_cap_mplane(file
, fh
, arg
);
1042 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
1043 if (unlikely(!ops
->vidioc_enum_fmt_vid_overlay
))
1045 return ops
->vidioc_enum_fmt_vid_overlay(file
, fh
, arg
);
1046 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
1047 if (unlikely(!ops
->vidioc_enum_fmt_vid_out
))
1049 return ops
->vidioc_enum_fmt_vid_out(file
, fh
, arg
);
1050 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
1051 if (unlikely(!ops
->vidioc_enum_fmt_vid_out_mplane
))
1053 return ops
->vidioc_enum_fmt_vid_out_mplane(file
, fh
, arg
);
1054 case V4L2_BUF_TYPE_PRIVATE
:
1055 if (unlikely(!ops
->vidioc_enum_fmt_type_private
))
1057 return ops
->vidioc_enum_fmt_type_private(file
, fh
, arg
);
1062 static int v4l_g_fmt(const struct v4l2_ioctl_ops
*ops
,
1063 struct file
*file
, void *fh
, void *arg
)
1065 struct v4l2_format
*p
= arg
;
1068 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
1069 if (unlikely(!ops
->vidioc_g_fmt_vid_cap
))
1071 return ops
->vidioc_g_fmt_vid_cap(file
, fh
, arg
);
1072 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1073 if (unlikely(!ops
->vidioc_g_fmt_vid_cap_mplane
))
1075 return ops
->vidioc_g_fmt_vid_cap_mplane(file
, fh
, arg
);
1076 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
1077 if (unlikely(!ops
->vidioc_g_fmt_vid_overlay
))
1079 return ops
->vidioc_g_fmt_vid_overlay(file
, fh
, arg
);
1080 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
1081 if (unlikely(!ops
->vidioc_g_fmt_vid_out
))
1083 return ops
->vidioc_g_fmt_vid_out(file
, fh
, arg
);
1084 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
1085 if (unlikely(!ops
->vidioc_g_fmt_vid_out_mplane
))
1087 return ops
->vidioc_g_fmt_vid_out_mplane(file
, fh
, arg
);
1088 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
:
1089 if (unlikely(!ops
->vidioc_g_fmt_vid_out_overlay
))
1091 return ops
->vidioc_g_fmt_vid_out_overlay(file
, fh
, arg
);
1092 case V4L2_BUF_TYPE_VBI_CAPTURE
:
1093 if (unlikely(!ops
->vidioc_g_fmt_vbi_cap
))
1095 return ops
->vidioc_g_fmt_vbi_cap(file
, fh
, arg
);
1096 case V4L2_BUF_TYPE_VBI_OUTPUT
:
1097 if (unlikely(!ops
->vidioc_g_fmt_vbi_out
))
1099 return ops
->vidioc_g_fmt_vbi_out(file
, fh
, arg
);
1100 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
1101 if (unlikely(!ops
->vidioc_g_fmt_sliced_vbi_cap
))
1103 return ops
->vidioc_g_fmt_sliced_vbi_cap(file
, fh
, arg
);
1104 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
:
1105 if (unlikely(!ops
->vidioc_g_fmt_sliced_vbi_out
))
1107 return ops
->vidioc_g_fmt_sliced_vbi_out(file
, fh
, arg
);
1108 case V4L2_BUF_TYPE_PRIVATE
:
1109 if (unlikely(!ops
->vidioc_g_fmt_type_private
))
1111 return ops
->vidioc_g_fmt_type_private(file
, fh
, arg
);
1116 static int v4l_s_fmt(const struct v4l2_ioctl_ops
*ops
,
1117 struct file
*file
, void *fh
, void *arg
)
1119 struct v4l2_format
*p
= arg
;
1122 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
1123 if (unlikely(!ops
->vidioc_s_fmt_vid_cap
))
1125 CLEAR_AFTER_FIELD(p
, fmt
.pix
);
1126 return ops
->vidioc_s_fmt_vid_cap(file
, fh
, arg
);
1127 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1128 if (unlikely(!ops
->vidioc_s_fmt_vid_cap_mplane
))
1130 CLEAR_AFTER_FIELD(p
, fmt
.pix_mp
);
1131 return ops
->vidioc_s_fmt_vid_cap_mplane(file
, fh
, arg
);
1132 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
1133 if (unlikely(!ops
->vidioc_s_fmt_vid_overlay
))
1135 CLEAR_AFTER_FIELD(p
, fmt
.win
);
1136 return ops
->vidioc_s_fmt_vid_overlay(file
, fh
, arg
);
1137 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
1138 if (unlikely(!ops
->vidioc_s_fmt_vid_out
))
1140 CLEAR_AFTER_FIELD(p
, fmt
.pix
);
1141 return ops
->vidioc_s_fmt_vid_out(file
, fh
, arg
);
1142 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
1143 if (unlikely(!ops
->vidioc_s_fmt_vid_out_mplane
))
1145 CLEAR_AFTER_FIELD(p
, fmt
.pix_mp
);
1146 return ops
->vidioc_s_fmt_vid_out_mplane(file
, fh
, arg
);
1147 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
:
1148 if (unlikely(!ops
->vidioc_s_fmt_vid_out_overlay
))
1150 CLEAR_AFTER_FIELD(p
, fmt
.win
);
1151 return ops
->vidioc_s_fmt_vid_out_overlay(file
, fh
, arg
);
1152 case V4L2_BUF_TYPE_VBI_CAPTURE
:
1153 if (unlikely(!ops
->vidioc_s_fmt_vbi_cap
))
1155 CLEAR_AFTER_FIELD(p
, fmt
.vbi
);
1156 return ops
->vidioc_s_fmt_vbi_cap(file
, fh
, arg
);
1157 case V4L2_BUF_TYPE_VBI_OUTPUT
:
1158 if (unlikely(!ops
->vidioc_s_fmt_vbi_out
))
1160 CLEAR_AFTER_FIELD(p
, fmt
.vbi
);
1161 return ops
->vidioc_s_fmt_vbi_out(file
, fh
, arg
);
1162 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
1163 if (unlikely(!ops
->vidioc_s_fmt_sliced_vbi_cap
))
1165 CLEAR_AFTER_FIELD(p
, fmt
.sliced
);
1166 return ops
->vidioc_s_fmt_sliced_vbi_cap(file
, fh
, arg
);
1167 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
:
1168 if (unlikely(!ops
->vidioc_s_fmt_sliced_vbi_out
))
1170 CLEAR_AFTER_FIELD(p
, fmt
.sliced
);
1171 return ops
->vidioc_s_fmt_sliced_vbi_out(file
, fh
, arg
);
1172 case V4L2_BUF_TYPE_PRIVATE
:
1173 if (unlikely(!ops
->vidioc_s_fmt_type_private
))
1175 return ops
->vidioc_s_fmt_type_private(file
, fh
, arg
);
1180 static int v4l_try_fmt(const struct v4l2_ioctl_ops
*ops
,
1181 struct file
*file
, void *fh
, void *arg
)
1183 struct v4l2_format
*p
= arg
;
1186 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
1187 if (unlikely(!ops
->vidioc_try_fmt_vid_cap
))
1189 CLEAR_AFTER_FIELD(p
, fmt
.pix
);
1190 return ops
->vidioc_try_fmt_vid_cap(file
, fh
, arg
);
1191 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
:
1192 if (unlikely(!ops
->vidioc_try_fmt_vid_cap_mplane
))
1194 CLEAR_AFTER_FIELD(p
, fmt
.pix_mp
);
1195 return ops
->vidioc_try_fmt_vid_cap_mplane(file
, fh
, arg
);
1196 case V4L2_BUF_TYPE_VIDEO_OVERLAY
:
1197 if (unlikely(!ops
->vidioc_try_fmt_vid_overlay
))
1199 CLEAR_AFTER_FIELD(p
, fmt
.win
);
1200 return ops
->vidioc_try_fmt_vid_overlay(file
, fh
, arg
);
1201 case V4L2_BUF_TYPE_VIDEO_OUTPUT
:
1202 if (unlikely(!ops
->vidioc_try_fmt_vid_out
))
1204 CLEAR_AFTER_FIELD(p
, fmt
.pix
);
1205 return ops
->vidioc_try_fmt_vid_out(file
, fh
, arg
);
1206 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE
:
1207 if (unlikely(!ops
->vidioc_try_fmt_vid_out_mplane
))
1209 CLEAR_AFTER_FIELD(p
, fmt
.pix_mp
);
1210 return ops
->vidioc_try_fmt_vid_out_mplane(file
, fh
, arg
);
1211 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY
:
1212 if (unlikely(!ops
->vidioc_try_fmt_vid_out_overlay
))
1214 CLEAR_AFTER_FIELD(p
, fmt
.win
);
1215 return ops
->vidioc_try_fmt_vid_out_overlay(file
, fh
, arg
);
1216 case V4L2_BUF_TYPE_VBI_CAPTURE
:
1217 if (unlikely(!ops
->vidioc_try_fmt_vbi_cap
))
1219 CLEAR_AFTER_FIELD(p
, fmt
.vbi
);
1220 return ops
->vidioc_try_fmt_vbi_cap(file
, fh
, arg
);
1221 case V4L2_BUF_TYPE_VBI_OUTPUT
:
1222 if (unlikely(!ops
->vidioc_try_fmt_vbi_out
))
1224 CLEAR_AFTER_FIELD(p
, fmt
.vbi
);
1225 return ops
->vidioc_try_fmt_vbi_out(file
, fh
, arg
);
1226 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
:
1227 if (unlikely(!ops
->vidioc_try_fmt_sliced_vbi_cap
))
1229 CLEAR_AFTER_FIELD(p
, fmt
.sliced
);
1230 return ops
->vidioc_try_fmt_sliced_vbi_cap(file
, fh
, arg
);
1231 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
:
1232 if (unlikely(!ops
->vidioc_try_fmt_sliced_vbi_out
))
1234 CLEAR_AFTER_FIELD(p
, fmt
.sliced
);
1235 return ops
->vidioc_try_fmt_sliced_vbi_out(file
, fh
, arg
);
1236 case V4L2_BUF_TYPE_PRIVATE
:
1237 if (unlikely(!ops
->vidioc_try_fmt_type_private
))
1239 return ops
->vidioc_try_fmt_type_private(file
, fh
, arg
);
1244 static int v4l_streamon(const struct v4l2_ioctl_ops
*ops
,
1245 struct file
*file
, void *fh
, void *arg
)
1247 return ops
->vidioc_streamon(file
, fh
, *(unsigned int *)arg
);
1250 static int v4l_streamoff(const struct v4l2_ioctl_ops
*ops
,
1251 struct file
*file
, void *fh
, void *arg
)
1253 return ops
->vidioc_streamoff(file
, fh
, *(unsigned int *)arg
);
1256 static int v4l_g_tuner(const struct v4l2_ioctl_ops
*ops
,
1257 struct file
*file
, void *fh
, void *arg
)
1259 struct video_device
*vfd
= video_devdata(file
);
1260 struct v4l2_tuner
*p
= arg
;
1263 p
->type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1264 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1265 err
= ops
->vidioc_g_tuner(file
, fh
, p
);
1267 p
->capability
|= V4L2_TUNER_CAP_FREQ_BANDS
;
1271 static int v4l_s_tuner(const struct v4l2_ioctl_ops
*ops
,
1272 struct file
*file
, void *fh
, void *arg
)
1274 struct video_device
*vfd
= video_devdata(file
);
1275 struct v4l2_tuner
*p
= arg
;
1277 p
->type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1278 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1279 return ops
->vidioc_s_tuner(file
, fh
, p
);
1282 static int v4l_g_modulator(const struct v4l2_ioctl_ops
*ops
,
1283 struct file
*file
, void *fh
, void *arg
)
1285 struct v4l2_modulator
*p
= arg
;
1288 err
= ops
->vidioc_g_modulator(file
, fh
, p
);
1290 p
->capability
|= V4L2_TUNER_CAP_FREQ_BANDS
;
1294 static int v4l_g_frequency(const struct v4l2_ioctl_ops
*ops
,
1295 struct file
*file
, void *fh
, void *arg
)
1297 struct video_device
*vfd
= video_devdata(file
);
1298 struct v4l2_frequency
*p
= arg
;
1300 p
->type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1301 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1302 return ops
->vidioc_g_frequency(file
, fh
, p
);
1305 static int v4l_s_frequency(const struct v4l2_ioctl_ops
*ops
,
1306 struct file
*file
, void *fh
, void *arg
)
1308 struct video_device
*vfd
= video_devdata(file
);
1309 struct v4l2_frequency
*p
= arg
;
1310 enum v4l2_tuner_type type
;
1312 type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1313 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1314 if (p
->type
!= type
)
1316 return ops
->vidioc_s_frequency(file
, fh
, p
);
1319 static int v4l_enumstd(const struct v4l2_ioctl_ops
*ops
,
1320 struct file
*file
, void *fh
, void *arg
)
1322 struct video_device
*vfd
= video_devdata(file
);
1323 struct v4l2_standard
*p
= arg
;
1324 v4l2_std_id id
= vfd
->tvnorms
, curr_id
= 0;
1325 unsigned int index
= p
->index
, i
, j
= 0;
1326 const char *descr
= "";
1328 /* Return norm array in a canonical way */
1329 for (i
= 0; i
<= index
&& id
; i
++) {
1330 /* last std value in the standards array is 0, so this
1331 while always ends there since (id & 0) == 0. */
1332 while ((id
& standards
[j
].std
) != standards
[j
].std
)
1334 curr_id
= standards
[j
].std
;
1335 descr
= standards
[j
].descr
;
1339 if (curr_id
!= V4L2_STD_PAL
&&
1340 curr_id
!= V4L2_STD_SECAM
&&
1341 curr_id
!= V4L2_STD_NTSC
)
1347 v4l2_video_std_construct(p
, curr_id
, descr
);
1351 static int v4l_g_std(const struct v4l2_ioctl_ops
*ops
,
1352 struct file
*file
, void *fh
, void *arg
)
1354 struct video_device
*vfd
= video_devdata(file
);
1355 v4l2_std_id
*id
= arg
;
1357 /* Calls the specific handler */
1358 if (ops
->vidioc_g_std
)
1359 return ops
->vidioc_g_std(file
, fh
, arg
);
1360 if (vfd
->current_norm
) {
1361 *id
= vfd
->current_norm
;
1367 static int v4l_s_std(const struct v4l2_ioctl_ops
*ops
,
1368 struct file
*file
, void *fh
, void *arg
)
1370 struct video_device
*vfd
= video_devdata(file
);
1371 v4l2_std_id
*id
= arg
, norm
;
1374 norm
= (*id
) & vfd
->tvnorms
;
1375 if (vfd
->tvnorms
&& !norm
) /* Check if std is supported */
1378 /* Calls the specific handler */
1379 ret
= ops
->vidioc_s_std(file
, fh
, &norm
);
1381 /* Updates standard information */
1383 vfd
->current_norm
= norm
;
1387 static int v4l_querystd(const struct v4l2_ioctl_ops
*ops
,
1388 struct file
*file
, void *fh
, void *arg
)
1390 struct video_device
*vfd
= video_devdata(file
);
1391 v4l2_std_id
*p
= arg
;
1394 * If nothing detected, it should return all supported
1396 * Drivers just need to mask the std argument, in order
1397 * to remove the standards that don't apply from the mask.
1398 * This means that tuners, audio and video decoders can join
1399 * their efforts to improve the standards detection.
1402 return ops
->vidioc_querystd(file
, fh
, arg
);
1405 static int v4l_s_hw_freq_seek(const struct v4l2_ioctl_ops
*ops
,
1406 struct file
*file
, void *fh
, void *arg
)
1408 struct video_device
*vfd
= video_devdata(file
);
1409 struct v4l2_hw_freq_seek
*p
= arg
;
1410 enum v4l2_tuner_type type
;
1412 type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1413 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1414 if (p
->type
!= type
)
1416 return ops
->vidioc_s_hw_freq_seek(file
, fh
, p
);
1419 static int v4l_reqbufs(const struct v4l2_ioctl_ops
*ops
,
1420 struct file
*file
, void *fh
, void *arg
)
1422 struct v4l2_requestbuffers
*p
= arg
;
1423 int ret
= check_fmt(ops
, p
->type
);
1428 if (p
->type
< V4L2_BUF_TYPE_PRIVATE
)
1429 CLEAR_AFTER_FIELD(p
, memory
);
1431 return ops
->vidioc_reqbufs(file
, fh
, p
);
1434 static int v4l_querybuf(const struct v4l2_ioctl_ops
*ops
,
1435 struct file
*file
, void *fh
, void *arg
)
1437 struct v4l2_buffer
*p
= arg
;
1438 int ret
= check_fmt(ops
, p
->type
);
1440 return ret
? ret
: ops
->vidioc_querybuf(file
, fh
, p
);
1443 static int v4l_qbuf(const struct v4l2_ioctl_ops
*ops
,
1444 struct file
*file
, void *fh
, void *arg
)
1446 struct v4l2_buffer
*p
= arg
;
1447 int ret
= check_fmt(ops
, p
->type
);
1449 return ret
? ret
: ops
->vidioc_qbuf(file
, fh
, p
);
1452 static int v4l_dqbuf(const struct v4l2_ioctl_ops
*ops
,
1453 struct file
*file
, void *fh
, void *arg
)
1455 struct v4l2_buffer
*p
= arg
;
1456 int ret
= check_fmt(ops
, p
->type
);
1458 return ret
? ret
: ops
->vidioc_dqbuf(file
, fh
, p
);
1461 static int v4l_create_bufs(const struct v4l2_ioctl_ops
*ops
,
1462 struct file
*file
, void *fh
, void *arg
)
1464 struct v4l2_create_buffers
*create
= arg
;
1465 int ret
= check_fmt(ops
, create
->format
.type
);
1467 return ret
? ret
: ops
->vidioc_create_bufs(file
, fh
, create
);
1470 static int v4l_prepare_buf(const struct v4l2_ioctl_ops
*ops
,
1471 struct file
*file
, void *fh
, void *arg
)
1473 struct v4l2_buffer
*b
= arg
;
1474 int ret
= check_fmt(ops
, b
->type
);
1476 return ret
? ret
: ops
->vidioc_prepare_buf(file
, fh
, b
);
1479 static int v4l_g_parm(const struct v4l2_ioctl_ops
*ops
,
1480 struct file
*file
, void *fh
, void *arg
)
1482 struct video_device
*vfd
= video_devdata(file
);
1483 struct v4l2_streamparm
*p
= arg
;
1485 int ret
= check_fmt(ops
, p
->type
);
1489 if (ops
->vidioc_g_parm
)
1490 return ops
->vidioc_g_parm(file
, fh
, p
);
1491 std
= vfd
->current_norm
;
1492 if (p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
&&
1493 p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE
)
1495 p
->parm
.capture
.readbuffers
= 2;
1496 if (ops
->vidioc_g_std
)
1497 ret
= ops
->vidioc_g_std(file
, fh
, &std
);
1499 v4l2_video_std_frame_period(std
,
1500 &p
->parm
.capture
.timeperframe
);
1504 static int v4l_s_parm(const struct v4l2_ioctl_ops
*ops
,
1505 struct file
*file
, void *fh
, void *arg
)
1507 struct v4l2_streamparm
*p
= arg
;
1508 int ret
= check_fmt(ops
, p
->type
);
1510 return ret
? ret
: ops
->vidioc_s_parm(file
, fh
, p
);
1513 static int v4l_queryctrl(const struct v4l2_ioctl_ops
*ops
,
1514 struct file
*file
, void *fh
, void *arg
)
1516 struct video_device
*vfd
= video_devdata(file
);
1517 struct v4l2_queryctrl
*p
= arg
;
1518 struct v4l2_fh
*vfh
=
1519 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1521 if (vfh
&& vfh
->ctrl_handler
)
1522 return v4l2_queryctrl(vfh
->ctrl_handler
, p
);
1523 if (vfd
->ctrl_handler
)
1524 return v4l2_queryctrl(vfd
->ctrl_handler
, p
);
1525 if (ops
->vidioc_queryctrl
)
1526 return ops
->vidioc_queryctrl(file
, fh
, p
);
1530 static int v4l_querymenu(const struct v4l2_ioctl_ops
*ops
,
1531 struct file
*file
, void *fh
, void *arg
)
1533 struct video_device
*vfd
= video_devdata(file
);
1534 struct v4l2_querymenu
*p
= arg
;
1535 struct v4l2_fh
*vfh
=
1536 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1538 if (vfh
&& vfh
->ctrl_handler
)
1539 return v4l2_querymenu(vfh
->ctrl_handler
, p
);
1540 if (vfd
->ctrl_handler
)
1541 return v4l2_querymenu(vfd
->ctrl_handler
, p
);
1542 if (ops
->vidioc_querymenu
)
1543 return ops
->vidioc_querymenu(file
, fh
, p
);
1547 static int v4l_g_ctrl(const struct v4l2_ioctl_ops
*ops
,
1548 struct file
*file
, void *fh
, void *arg
)
1550 struct video_device
*vfd
= video_devdata(file
);
1551 struct v4l2_control
*p
= arg
;
1552 struct v4l2_fh
*vfh
=
1553 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1554 struct v4l2_ext_controls ctrls
;
1555 struct v4l2_ext_control ctrl
;
1557 if (vfh
&& vfh
->ctrl_handler
)
1558 return v4l2_g_ctrl(vfh
->ctrl_handler
, p
);
1559 if (vfd
->ctrl_handler
)
1560 return v4l2_g_ctrl(vfd
->ctrl_handler
, p
);
1561 if (ops
->vidioc_g_ctrl
)
1562 return ops
->vidioc_g_ctrl(file
, fh
, p
);
1563 if (ops
->vidioc_g_ext_ctrls
== NULL
)
1566 ctrls
.ctrl_class
= V4L2_CTRL_ID2CLASS(p
->id
);
1568 ctrls
.controls
= &ctrl
;
1570 ctrl
.value
= p
->value
;
1571 if (check_ext_ctrls(&ctrls
, 1)) {
1572 int ret
= ops
->vidioc_g_ext_ctrls(file
, fh
, &ctrls
);
1575 p
->value
= ctrl
.value
;
1581 static int v4l_s_ctrl(const struct v4l2_ioctl_ops
*ops
,
1582 struct file
*file
, void *fh
, void *arg
)
1584 struct video_device
*vfd
= video_devdata(file
);
1585 struct v4l2_control
*p
= arg
;
1586 struct v4l2_fh
*vfh
=
1587 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1588 struct v4l2_ext_controls ctrls
;
1589 struct v4l2_ext_control ctrl
;
1591 if (vfh
&& vfh
->ctrl_handler
)
1592 return v4l2_s_ctrl(vfh
, vfh
->ctrl_handler
, p
);
1593 if (vfd
->ctrl_handler
)
1594 return v4l2_s_ctrl(NULL
, vfd
->ctrl_handler
, p
);
1595 if (ops
->vidioc_s_ctrl
)
1596 return ops
->vidioc_s_ctrl(file
, fh
, p
);
1597 if (ops
->vidioc_s_ext_ctrls
== NULL
)
1600 ctrls
.ctrl_class
= V4L2_CTRL_ID2CLASS(p
->id
);
1602 ctrls
.controls
= &ctrl
;
1604 ctrl
.value
= p
->value
;
1605 if (check_ext_ctrls(&ctrls
, 1))
1606 return ops
->vidioc_s_ext_ctrls(file
, fh
, &ctrls
);
1610 static int v4l_g_ext_ctrls(const struct v4l2_ioctl_ops
*ops
,
1611 struct file
*file
, void *fh
, void *arg
)
1613 struct video_device
*vfd
= video_devdata(file
);
1614 struct v4l2_ext_controls
*p
= arg
;
1615 struct v4l2_fh
*vfh
=
1616 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1618 p
->error_idx
= p
->count
;
1619 if (vfh
&& vfh
->ctrl_handler
)
1620 return v4l2_g_ext_ctrls(vfh
->ctrl_handler
, p
);
1621 if (vfd
->ctrl_handler
)
1622 return v4l2_g_ext_ctrls(vfd
->ctrl_handler
, p
);
1623 if (ops
->vidioc_g_ext_ctrls
== NULL
)
1625 return check_ext_ctrls(p
, 0) ? ops
->vidioc_g_ext_ctrls(file
, fh
, p
) :
1629 static int v4l_s_ext_ctrls(const struct v4l2_ioctl_ops
*ops
,
1630 struct file
*file
, void *fh
, void *arg
)
1632 struct video_device
*vfd
= video_devdata(file
);
1633 struct v4l2_ext_controls
*p
= arg
;
1634 struct v4l2_fh
*vfh
=
1635 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1637 p
->error_idx
= p
->count
;
1638 if (vfh
&& vfh
->ctrl_handler
)
1639 return v4l2_s_ext_ctrls(vfh
, vfh
->ctrl_handler
, p
);
1640 if (vfd
->ctrl_handler
)
1641 return v4l2_s_ext_ctrls(NULL
, vfd
->ctrl_handler
, p
);
1642 if (ops
->vidioc_s_ext_ctrls
== NULL
)
1644 return check_ext_ctrls(p
, 0) ? ops
->vidioc_s_ext_ctrls(file
, fh
, p
) :
1648 static int v4l_try_ext_ctrls(const struct v4l2_ioctl_ops
*ops
,
1649 struct file
*file
, void *fh
, void *arg
)
1651 struct video_device
*vfd
= video_devdata(file
);
1652 struct v4l2_ext_controls
*p
= arg
;
1653 struct v4l2_fh
*vfh
=
1654 test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
) ? fh
: NULL
;
1656 p
->error_idx
= p
->count
;
1657 if (vfh
&& vfh
->ctrl_handler
)
1658 return v4l2_try_ext_ctrls(vfh
->ctrl_handler
, p
);
1659 if (vfd
->ctrl_handler
)
1660 return v4l2_try_ext_ctrls(vfd
->ctrl_handler
, p
);
1661 if (ops
->vidioc_try_ext_ctrls
== NULL
)
1663 return check_ext_ctrls(p
, 0) ? ops
->vidioc_try_ext_ctrls(file
, fh
, p
) :
1667 static int v4l_g_crop(const struct v4l2_ioctl_ops
*ops
,
1668 struct file
*file
, void *fh
, void *arg
)
1670 struct v4l2_crop
*p
= arg
;
1671 struct v4l2_selection s
= {
1676 if (ops
->vidioc_g_crop
)
1677 return ops
->vidioc_g_crop(file
, fh
, p
);
1678 /* simulate capture crop using selection api */
1680 /* crop means compose for output devices */
1681 if (V4L2_TYPE_IS_OUTPUT(p
->type
))
1682 s
.target
= V4L2_SEL_TGT_COMPOSE_ACTIVE
;
1684 s
.target
= V4L2_SEL_TGT_CROP_ACTIVE
;
1686 ret
= ops
->vidioc_g_selection(file
, fh
, &s
);
1688 /* copying results to old structure on success */
1694 static int v4l_s_crop(const struct v4l2_ioctl_ops
*ops
,
1695 struct file
*file
, void *fh
, void *arg
)
1697 struct v4l2_crop
*p
= arg
;
1698 struct v4l2_selection s
= {
1703 if (ops
->vidioc_s_crop
)
1704 return ops
->vidioc_s_crop(file
, fh
, p
);
1705 /* simulate capture crop using selection api */
1707 /* crop means compose for output devices */
1708 if (V4L2_TYPE_IS_OUTPUT(p
->type
))
1709 s
.target
= V4L2_SEL_TGT_COMPOSE_ACTIVE
;
1711 s
.target
= V4L2_SEL_TGT_CROP_ACTIVE
;
1713 return ops
->vidioc_s_selection(file
, fh
, &s
);
1716 static int v4l_cropcap(const struct v4l2_ioctl_ops
*ops
,
1717 struct file
*file
, void *fh
, void *arg
)
1719 struct v4l2_cropcap
*p
= arg
;
1720 struct v4l2_selection s
= { .type
= p
->type
};
1723 if (ops
->vidioc_cropcap
)
1724 return ops
->vidioc_cropcap(file
, fh
, p
);
1726 /* obtaining bounds */
1727 if (V4L2_TYPE_IS_OUTPUT(p
->type
))
1728 s
.target
= V4L2_SEL_TGT_COMPOSE_BOUNDS
;
1730 s
.target
= V4L2_SEL_TGT_CROP_BOUNDS
;
1732 ret
= ops
->vidioc_g_selection(file
, fh
, &s
);
1737 /* obtaining defrect */
1738 if (V4L2_TYPE_IS_OUTPUT(p
->type
))
1739 s
.target
= V4L2_SEL_TGT_COMPOSE_DEFAULT
;
1741 s
.target
= V4L2_SEL_TGT_CROP_DEFAULT
;
1743 ret
= ops
->vidioc_g_selection(file
, fh
, &s
);
1748 /* setting trivial pixelaspect */
1749 p
->pixelaspect
.numerator
= 1;
1750 p
->pixelaspect
.denominator
= 1;
1754 static int v4l_log_status(const struct v4l2_ioctl_ops
*ops
,
1755 struct file
*file
, void *fh
, void *arg
)
1757 struct video_device
*vfd
= video_devdata(file
);
1761 pr_info("%s: ================= START STATUS =================\n",
1762 vfd
->v4l2_dev
->name
);
1763 ret
= ops
->vidioc_log_status(file
, fh
);
1765 pr_info("%s: ================== END STATUS ==================\n",
1766 vfd
->v4l2_dev
->name
);
1770 static int v4l_dbg_g_register(const struct v4l2_ioctl_ops
*ops
,
1771 struct file
*file
, void *fh
, void *arg
)
1773 #ifdef CONFIG_VIDEO_ADV_DEBUG
1774 struct v4l2_dbg_register
*p
= arg
;
1776 if (!capable(CAP_SYS_ADMIN
))
1778 return ops
->vidioc_g_register(file
, fh
, p
);
1784 static int v4l_dbg_s_register(const struct v4l2_ioctl_ops
*ops
,
1785 struct file
*file
, void *fh
, void *arg
)
1787 #ifdef CONFIG_VIDEO_ADV_DEBUG
1788 struct v4l2_dbg_register
*p
= arg
;
1790 if (!capable(CAP_SYS_ADMIN
))
1792 return ops
->vidioc_s_register(file
, fh
, p
);
1798 static int v4l_dbg_g_chip_ident(const struct v4l2_ioctl_ops
*ops
,
1799 struct file
*file
, void *fh
, void *arg
)
1801 struct v4l2_dbg_chip_ident
*p
= arg
;
1803 p
->ident
= V4L2_IDENT_NONE
;
1805 return ops
->vidioc_g_chip_ident(file
, fh
, p
);
1808 static int v4l_dqevent(const struct v4l2_ioctl_ops
*ops
,
1809 struct file
*file
, void *fh
, void *arg
)
1811 return v4l2_event_dequeue(fh
, arg
, file
->f_flags
& O_NONBLOCK
);
1814 static int v4l_subscribe_event(const struct v4l2_ioctl_ops
*ops
,
1815 struct file
*file
, void *fh
, void *arg
)
1817 return ops
->vidioc_subscribe_event(fh
, arg
);
1820 static int v4l_unsubscribe_event(const struct v4l2_ioctl_ops
*ops
,
1821 struct file
*file
, void *fh
, void *arg
)
1823 return ops
->vidioc_unsubscribe_event(fh
, arg
);
1826 static int v4l_g_sliced_vbi_cap(const struct v4l2_ioctl_ops
*ops
,
1827 struct file
*file
, void *fh
, void *arg
)
1829 struct v4l2_sliced_vbi_cap
*p
= arg
;
1831 /* Clear up to type, everything after type is zeroed already */
1832 memset(p
, 0, offsetof(struct v4l2_sliced_vbi_cap
, type
));
1834 return ops
->vidioc_g_sliced_vbi_cap(file
, fh
, p
);
1837 static int v4l_enum_freq_bands(const struct v4l2_ioctl_ops
*ops
,
1838 struct file
*file
, void *fh
, void *arg
)
1840 struct video_device
*vfd
= video_devdata(file
);
1841 struct v4l2_frequency_band
*p
= arg
;
1842 enum v4l2_tuner_type type
;
1845 type
= (vfd
->vfl_type
== VFL_TYPE_RADIO
) ?
1846 V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1848 if (type
!= p
->type
)
1850 if (ops
->vidioc_enum_freq_bands
)
1851 return ops
->vidioc_enum_freq_bands(file
, fh
, p
);
1852 if (ops
->vidioc_g_tuner
) {
1853 struct v4l2_tuner t
= {
1860 err
= ops
->vidioc_g_tuner(file
, fh
, &t
);
1863 p
->capability
= t
.capability
| V4L2_TUNER_CAP_FREQ_BANDS
;
1864 p
->rangelow
= t
.rangelow
;
1865 p
->rangehigh
= t
.rangehigh
;
1866 p
->modulation
= (type
== V4L2_TUNER_RADIO
) ?
1867 V4L2_BAND_MODULATION_FM
: V4L2_BAND_MODULATION_VSB
;
1870 if (ops
->vidioc_g_modulator
) {
1871 struct v4l2_modulator m
= {
1875 if (type
!= V4L2_TUNER_RADIO
)
1879 err
= ops
->vidioc_g_modulator(file
, fh
, &m
);
1882 p
->capability
= m
.capability
| V4L2_TUNER_CAP_FREQ_BANDS
;
1883 p
->rangelow
= m
.rangelow
;
1884 p
->rangehigh
= m
.rangehigh
;
1885 p
->modulation
= (type
== V4L2_TUNER_RADIO
) ?
1886 V4L2_BAND_MODULATION_FM
: V4L2_BAND_MODULATION_VSB
;
1892 struct v4l2_ioctl_info
{
1895 const char * const name
;
1898 int (*func
)(const struct v4l2_ioctl_ops
*ops
,
1899 struct file
*file
, void *fh
, void *p
);
1901 void (*debug
)(const void *arg
, bool write_only
);
1904 /* This control needs a priority check */
1905 #define INFO_FL_PRIO (1 << 0)
1906 /* This control can be valid if the filehandle passes a control handler. */
1907 #define INFO_FL_CTRL (1 << 1)
1908 /* This is a standard ioctl, no need for special code */
1909 #define INFO_FL_STD (1 << 2)
1910 /* This is ioctl has its own function */
1911 #define INFO_FL_FUNC (1 << 3)
1913 #define INFO_FL_QUEUE (1 << 4)
1914 /* Zero struct from after the field to the end */
1915 #define INFO_FL_CLEAR(v4l2_struct, field) \
1916 ((offsetof(struct v4l2_struct, field) + \
1917 sizeof(((struct v4l2_struct *)0)->field)) << 16)
1918 #define INFO_FL_CLEAR_MASK (_IOC_SIZEMASK << 16)
1920 #define IOCTL_INFO_STD(_ioctl, _vidioc, _debug, _flags) \
1921 [_IOC_NR(_ioctl)] = { \
1923 .flags = _flags | INFO_FL_STD, \
1925 .u.offset = offsetof(struct v4l2_ioctl_ops, _vidioc), \
1929 #define IOCTL_INFO_FNC(_ioctl, _func, _debug, _flags) \
1930 [_IOC_NR(_ioctl)] = { \
1932 .flags = _flags | INFO_FL_FUNC, \
1938 static struct v4l2_ioctl_info v4l2_ioctls
[] = {
1939 IOCTL_INFO_FNC(VIDIOC_QUERYCAP
, v4l_querycap
, v4l_print_querycap
, 0),
1940 IOCTL_INFO_FNC(VIDIOC_ENUM_FMT
, v4l_enum_fmt
, v4l_print_fmtdesc
, INFO_FL_CLEAR(v4l2_fmtdesc
, type
)),
1941 IOCTL_INFO_FNC(VIDIOC_G_FMT
, v4l_g_fmt
, v4l_print_format
, INFO_FL_CLEAR(v4l2_format
, type
)),
1942 IOCTL_INFO_FNC(VIDIOC_S_FMT
, v4l_s_fmt
, v4l_print_format
, INFO_FL_PRIO
),
1943 IOCTL_INFO_FNC(VIDIOC_REQBUFS
, v4l_reqbufs
, v4l_print_requestbuffers
, INFO_FL_PRIO
| INFO_FL_QUEUE
),
1944 IOCTL_INFO_FNC(VIDIOC_QUERYBUF
, v4l_querybuf
, v4l_print_buffer
, INFO_FL_QUEUE
| INFO_FL_CLEAR(v4l2_buffer
, length
)),
1945 IOCTL_INFO_STD(VIDIOC_G_FBUF
, vidioc_g_fbuf
, v4l_print_framebuffer
, 0),
1946 IOCTL_INFO_STD(VIDIOC_S_FBUF
, vidioc_s_fbuf
, v4l_print_framebuffer
, INFO_FL_PRIO
),
1947 IOCTL_INFO_STD(VIDIOC_OVERLAY
, vidioc_overlay
, v4l_print_u32
, INFO_FL_PRIO
),
1948 IOCTL_INFO_FNC(VIDIOC_QBUF
, v4l_qbuf
, v4l_print_buffer
, INFO_FL_QUEUE
),
1949 IOCTL_INFO_FNC(VIDIOC_DQBUF
, v4l_dqbuf
, v4l_print_buffer
, INFO_FL_QUEUE
),
1950 IOCTL_INFO_FNC(VIDIOC_STREAMON
, v4l_streamon
, v4l_print_buftype
, INFO_FL_PRIO
| INFO_FL_QUEUE
),
1951 IOCTL_INFO_FNC(VIDIOC_STREAMOFF
, v4l_streamoff
, v4l_print_buftype
, INFO_FL_PRIO
| INFO_FL_QUEUE
),
1952 IOCTL_INFO_FNC(VIDIOC_G_PARM
, v4l_g_parm
, v4l_print_streamparm
, INFO_FL_CLEAR(v4l2_streamparm
, type
)),
1953 IOCTL_INFO_FNC(VIDIOC_S_PARM
, v4l_s_parm
, v4l_print_streamparm
, INFO_FL_PRIO
),
1954 IOCTL_INFO_FNC(VIDIOC_G_STD
, v4l_g_std
, v4l_print_std
, 0),
1955 IOCTL_INFO_FNC(VIDIOC_S_STD
, v4l_s_std
, v4l_print_std
, INFO_FL_PRIO
),
1956 IOCTL_INFO_FNC(VIDIOC_ENUMSTD
, v4l_enumstd
, v4l_print_standard
, INFO_FL_CLEAR(v4l2_standard
, index
)),
1957 IOCTL_INFO_FNC(VIDIOC_ENUMINPUT
, v4l_enuminput
, v4l_print_enuminput
, INFO_FL_CLEAR(v4l2_input
, index
)),
1958 IOCTL_INFO_FNC(VIDIOC_G_CTRL
, v4l_g_ctrl
, v4l_print_control
, INFO_FL_CTRL
| INFO_FL_CLEAR(v4l2_control
, id
)),
1959 IOCTL_INFO_FNC(VIDIOC_S_CTRL
, v4l_s_ctrl
, v4l_print_control
, INFO_FL_PRIO
| INFO_FL_CTRL
),
1960 IOCTL_INFO_FNC(VIDIOC_G_TUNER
, v4l_g_tuner
, v4l_print_tuner
, INFO_FL_CLEAR(v4l2_tuner
, index
)),
1961 IOCTL_INFO_FNC(VIDIOC_S_TUNER
, v4l_s_tuner
, v4l_print_tuner
, INFO_FL_PRIO
),
1962 IOCTL_INFO_STD(VIDIOC_G_AUDIO
, vidioc_g_audio
, v4l_print_audio
, 0),
1963 IOCTL_INFO_STD(VIDIOC_S_AUDIO
, vidioc_s_audio
, v4l_print_audio
, INFO_FL_PRIO
),
1964 IOCTL_INFO_FNC(VIDIOC_QUERYCTRL
, v4l_queryctrl
, v4l_print_queryctrl
, INFO_FL_CTRL
| INFO_FL_CLEAR(v4l2_queryctrl
, id
)),
1965 IOCTL_INFO_FNC(VIDIOC_QUERYMENU
, v4l_querymenu
, v4l_print_querymenu
, INFO_FL_CTRL
| INFO_FL_CLEAR(v4l2_querymenu
, index
)),
1966 IOCTL_INFO_STD(VIDIOC_G_INPUT
, vidioc_g_input
, v4l_print_u32
, 0),
1967 IOCTL_INFO_FNC(VIDIOC_S_INPUT
, v4l_s_input
, v4l_print_u32
, INFO_FL_PRIO
),
1968 IOCTL_INFO_STD(VIDIOC_G_OUTPUT
, vidioc_g_output
, v4l_print_u32
, 0),
1969 IOCTL_INFO_FNC(VIDIOC_S_OUTPUT
, v4l_s_output
, v4l_print_u32
, INFO_FL_PRIO
),
1970 IOCTL_INFO_FNC(VIDIOC_ENUMOUTPUT
, v4l_enumoutput
, v4l_print_enumoutput
, INFO_FL_CLEAR(v4l2_output
, index
)),
1971 IOCTL_INFO_STD(VIDIOC_G_AUDOUT
, vidioc_g_audout
, v4l_print_audioout
, 0),
1972 IOCTL_INFO_STD(VIDIOC_S_AUDOUT
, vidioc_s_audout
, v4l_print_audioout
, INFO_FL_PRIO
),
1973 IOCTL_INFO_FNC(VIDIOC_G_MODULATOR
, v4l_g_modulator
, v4l_print_modulator
, INFO_FL_CLEAR(v4l2_modulator
, index
)),
1974 IOCTL_INFO_STD(VIDIOC_S_MODULATOR
, vidioc_s_modulator
, v4l_print_modulator
, INFO_FL_PRIO
),
1975 IOCTL_INFO_FNC(VIDIOC_G_FREQUENCY
, v4l_g_frequency
, v4l_print_frequency
, INFO_FL_CLEAR(v4l2_frequency
, tuner
)),
1976 IOCTL_INFO_FNC(VIDIOC_S_FREQUENCY
, v4l_s_frequency
, v4l_print_frequency
, INFO_FL_PRIO
),
1977 IOCTL_INFO_FNC(VIDIOC_CROPCAP
, v4l_cropcap
, v4l_print_cropcap
, INFO_FL_CLEAR(v4l2_cropcap
, type
)),
1978 IOCTL_INFO_FNC(VIDIOC_G_CROP
, v4l_g_crop
, v4l_print_crop
, INFO_FL_CLEAR(v4l2_crop
, type
)),
1979 IOCTL_INFO_FNC(VIDIOC_S_CROP
, v4l_s_crop
, v4l_print_crop
, INFO_FL_PRIO
),
1980 IOCTL_INFO_STD(VIDIOC_G_SELECTION
, vidioc_g_selection
, v4l_print_selection
, 0),
1981 IOCTL_INFO_STD(VIDIOC_S_SELECTION
, vidioc_s_selection
, v4l_print_selection
, INFO_FL_PRIO
),
1982 IOCTL_INFO_STD(VIDIOC_G_JPEGCOMP
, vidioc_g_jpegcomp
, v4l_print_jpegcompression
, 0),
1983 IOCTL_INFO_STD(VIDIOC_S_JPEGCOMP
, vidioc_s_jpegcomp
, v4l_print_jpegcompression
, INFO_FL_PRIO
),
1984 IOCTL_INFO_FNC(VIDIOC_QUERYSTD
, v4l_querystd
, v4l_print_std
, 0),
1985 IOCTL_INFO_FNC(VIDIOC_TRY_FMT
, v4l_try_fmt
, v4l_print_format
, 0),
1986 IOCTL_INFO_STD(VIDIOC_ENUMAUDIO
, vidioc_enumaudio
, v4l_print_audio
, INFO_FL_CLEAR(v4l2_audio
, index
)),
1987 IOCTL_INFO_STD(VIDIOC_ENUMAUDOUT
, vidioc_enumaudout
, v4l_print_audioout
, INFO_FL_CLEAR(v4l2_audioout
, index
)),
1988 IOCTL_INFO_FNC(VIDIOC_G_PRIORITY
, v4l_g_priority
, v4l_print_u32
, 0),
1989 IOCTL_INFO_FNC(VIDIOC_S_PRIORITY
, v4l_s_priority
, v4l_print_u32
, INFO_FL_PRIO
),
1990 IOCTL_INFO_FNC(VIDIOC_G_SLICED_VBI_CAP
, v4l_g_sliced_vbi_cap
, v4l_print_sliced_vbi_cap
, INFO_FL_CLEAR(v4l2_sliced_vbi_cap
, type
)),
1991 IOCTL_INFO_FNC(VIDIOC_LOG_STATUS
, v4l_log_status
, v4l_print_newline
, 0),
1992 IOCTL_INFO_FNC(VIDIOC_G_EXT_CTRLS
, v4l_g_ext_ctrls
, v4l_print_ext_controls
, INFO_FL_CTRL
),
1993 IOCTL_INFO_FNC(VIDIOC_S_EXT_CTRLS
, v4l_s_ext_ctrls
, v4l_print_ext_controls
, INFO_FL_PRIO
| INFO_FL_CTRL
),
1994 IOCTL_INFO_FNC(VIDIOC_TRY_EXT_CTRLS
, v4l_try_ext_ctrls
, v4l_print_ext_controls
, INFO_FL_CTRL
),
1995 IOCTL_INFO_STD(VIDIOC_ENUM_FRAMESIZES
, vidioc_enum_framesizes
, v4l_print_frmsizeenum
, INFO_FL_CLEAR(v4l2_frmsizeenum
, pixel_format
)),
1996 IOCTL_INFO_STD(VIDIOC_ENUM_FRAMEINTERVALS
, vidioc_enum_frameintervals
, v4l_print_frmivalenum
, INFO_FL_CLEAR(v4l2_frmivalenum
, height
)),
1997 IOCTL_INFO_STD(VIDIOC_G_ENC_INDEX
, vidioc_g_enc_index
, v4l_print_enc_idx
, 0),
1998 IOCTL_INFO_STD(VIDIOC_ENCODER_CMD
, vidioc_encoder_cmd
, v4l_print_encoder_cmd
, INFO_FL_PRIO
| INFO_FL_CLEAR(v4l2_encoder_cmd
, flags
)),
1999 IOCTL_INFO_STD(VIDIOC_TRY_ENCODER_CMD
, vidioc_try_encoder_cmd
, v4l_print_encoder_cmd
, INFO_FL_CLEAR(v4l2_encoder_cmd
, flags
)),
2000 IOCTL_INFO_STD(VIDIOC_DECODER_CMD
, vidioc_decoder_cmd
, v4l_print_decoder_cmd
, INFO_FL_PRIO
),
2001 IOCTL_INFO_STD(VIDIOC_TRY_DECODER_CMD
, vidioc_try_decoder_cmd
, v4l_print_decoder_cmd
, 0),
2002 IOCTL_INFO_FNC(VIDIOC_DBG_S_REGISTER
, v4l_dbg_s_register
, v4l_print_dbg_register
, 0),
2003 IOCTL_INFO_FNC(VIDIOC_DBG_G_REGISTER
, v4l_dbg_g_register
, v4l_print_dbg_register
, 0),
2004 IOCTL_INFO_FNC(VIDIOC_DBG_G_CHIP_IDENT
, v4l_dbg_g_chip_ident
, v4l_print_dbg_chip_ident
, 0),
2005 IOCTL_INFO_FNC(VIDIOC_S_HW_FREQ_SEEK
, v4l_s_hw_freq_seek
, v4l_print_hw_freq_seek
, INFO_FL_PRIO
),
2006 IOCTL_INFO_STD(VIDIOC_ENUM_DV_PRESETS
, vidioc_enum_dv_presets
, v4l_print_dv_enum_presets
, 0),
2007 IOCTL_INFO_STD(VIDIOC_S_DV_PRESET
, vidioc_s_dv_preset
, v4l_print_dv_preset
, INFO_FL_PRIO
),
2008 IOCTL_INFO_STD(VIDIOC_G_DV_PRESET
, vidioc_g_dv_preset
, v4l_print_dv_preset
, 0),
2009 IOCTL_INFO_STD(VIDIOC_QUERY_DV_PRESET
, vidioc_query_dv_preset
, v4l_print_dv_preset
, 0),
2010 IOCTL_INFO_STD(VIDIOC_S_DV_TIMINGS
, vidioc_s_dv_timings
, v4l_print_dv_timings
, INFO_FL_PRIO
),
2011 IOCTL_INFO_STD(VIDIOC_G_DV_TIMINGS
, vidioc_g_dv_timings
, v4l_print_dv_timings
, 0),
2012 IOCTL_INFO_FNC(VIDIOC_DQEVENT
, v4l_dqevent
, v4l_print_event
, 0),
2013 IOCTL_INFO_FNC(VIDIOC_SUBSCRIBE_EVENT
, v4l_subscribe_event
, v4l_print_event_subscription
, 0),
2014 IOCTL_INFO_FNC(VIDIOC_UNSUBSCRIBE_EVENT
, v4l_unsubscribe_event
, v4l_print_event_subscription
, 0),
2015 IOCTL_INFO_FNC(VIDIOC_CREATE_BUFS
, v4l_create_bufs
, v4l_print_create_buffers
, INFO_FL_PRIO
| INFO_FL_QUEUE
),
2016 IOCTL_INFO_FNC(VIDIOC_PREPARE_BUF
, v4l_prepare_buf
, v4l_print_buffer
, INFO_FL_QUEUE
),
2017 IOCTL_INFO_STD(VIDIOC_ENUM_DV_TIMINGS
, vidioc_enum_dv_timings
, v4l_print_enum_dv_timings
, 0),
2018 IOCTL_INFO_STD(VIDIOC_QUERY_DV_TIMINGS
, vidioc_query_dv_timings
, v4l_print_dv_timings
, 0),
2019 IOCTL_INFO_STD(VIDIOC_DV_TIMINGS_CAP
, vidioc_dv_timings_cap
, v4l_print_dv_timings_cap
, INFO_FL_CLEAR(v4l2_dv_timings_cap
, type
)),
2020 IOCTL_INFO_FNC(VIDIOC_ENUM_FREQ_BANDS
, v4l_enum_freq_bands
, v4l_print_freq_band
, 0),
2022 #define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls)
2024 bool v4l2_is_known_ioctl(unsigned int cmd
)
2026 if (_IOC_NR(cmd
) >= V4L2_IOCTLS
)
2028 return v4l2_ioctls
[_IOC_NR(cmd
)].ioctl
== cmd
;
2031 struct mutex
*v4l2_ioctl_get_lock(struct video_device
*vdev
, unsigned cmd
)
2033 if (_IOC_NR(cmd
) >= V4L2_IOCTLS
)
2035 if (test_bit(_IOC_NR(cmd
), vdev
->disable_locking
))
2037 if (vdev
->queue
&& vdev
->queue
->lock
&&
2038 (v4l2_ioctls
[_IOC_NR(cmd
)].flags
& INFO_FL_QUEUE
))
2039 return vdev
->queue
->lock
;
2043 /* Common ioctl debug function. This function can be used by
2044 external ioctl messages as well as internal V4L ioctl */
2045 void v4l_printk_ioctl(const char *prefix
, unsigned int cmd
)
2047 const char *dir
, *type
;
2050 printk(KERN_DEBUG
"%s: ", prefix
);
2052 switch (_IOC_TYPE(cmd
)) {
2057 if (_IOC_NR(cmd
) >= V4L2_IOCTLS
) {
2061 pr_cont("%s", v4l2_ioctls
[_IOC_NR(cmd
)].name
);
2068 switch (_IOC_DIR(cmd
)) {
2069 case _IOC_NONE
: dir
= "--"; break;
2070 case _IOC_READ
: dir
= "r-"; break;
2071 case _IOC_WRITE
: dir
= "-w"; break;
2072 case _IOC_READ
| _IOC_WRITE
: dir
= "rw"; break;
2073 default: dir
= "*ERR*"; break;
2075 pr_cont("%s ioctl '%c', dir=%s, #%d (0x%08x)",
2076 type
, _IOC_TYPE(cmd
), dir
, _IOC_NR(cmd
), cmd
);
2078 EXPORT_SYMBOL(v4l_printk_ioctl
);
2080 static long __video_do_ioctl(struct file
*file
,
2081 unsigned int cmd
, void *arg
)
2083 struct video_device
*vfd
= video_devdata(file
);
2084 const struct v4l2_ioctl_ops
*ops
= vfd
->ioctl_ops
;
2085 bool write_only
= false;
2086 struct v4l2_ioctl_info default_info
;
2087 const struct v4l2_ioctl_info
*info
;
2088 void *fh
= file
->private_data
;
2089 struct v4l2_fh
*vfh
= NULL
;
2090 int use_fh_prio
= 0;
2091 int debug
= vfd
->debug
;
2095 pr_warn("%s: has no ioctl_ops.\n",
2096 video_device_node_name(vfd
));
2100 if (test_bit(V4L2_FL_USES_V4L2_FH
, &vfd
->flags
)) {
2101 vfh
= file
->private_data
;
2102 use_fh_prio
= test_bit(V4L2_FL_USE_FH_PRIO
, &vfd
->flags
);
2105 if (v4l2_is_known_ioctl(cmd
)) {
2106 info
= &v4l2_ioctls
[_IOC_NR(cmd
)];
2108 if (!test_bit(_IOC_NR(cmd
), vfd
->valid_ioctls
) &&
2109 !((info
->flags
& INFO_FL_CTRL
) && vfh
&& vfh
->ctrl_handler
))
2112 if (use_fh_prio
&& (info
->flags
& INFO_FL_PRIO
)) {
2113 ret
= v4l2_prio_check(vfd
->prio
, vfh
->prio
);
2118 default_info
.ioctl
= cmd
;
2119 default_info
.flags
= 0;
2120 default_info
.debug
= v4l_print_default
;
2121 info
= &default_info
;
2124 write_only
= _IOC_DIR(cmd
) == _IOC_WRITE
;
2125 if (write_only
&& debug
> V4L2_DEBUG_IOCTL
) {
2126 v4l_printk_ioctl(video_device_node_name(vfd
), cmd
);
2128 info
->debug(arg
, write_only
);
2130 if (info
->flags
& INFO_FL_STD
) {
2131 typedef int (*vidioc_op
)(struct file
*file
, void *fh
, void *p
);
2132 const void *p
= vfd
->ioctl_ops
;
2133 const vidioc_op
*vidioc
= p
+ info
->u
.offset
;
2135 ret
= (*vidioc
)(file
, fh
, arg
);
2136 } else if (info
->flags
& INFO_FL_FUNC
) {
2137 ret
= info
->u
.func(ops
, file
, fh
, arg
);
2138 } else if (!ops
->vidioc_default
) {
2141 ret
= ops
->vidioc_default(file
, fh
,
2142 use_fh_prio
? v4l2_prio_check(vfd
->prio
, vfh
->prio
) >= 0 : 0,
2148 if (write_only
&& debug
> V4L2_DEBUG_IOCTL
) {
2150 printk(KERN_DEBUG
"%s: error %ld\n",
2151 video_device_node_name(vfd
), ret
);
2154 v4l_printk_ioctl(video_device_node_name(vfd
), cmd
);
2156 pr_cont(": error %ld\n", ret
);
2157 else if (debug
== V4L2_DEBUG_IOCTL
)
2159 else if (_IOC_DIR(cmd
) == _IOC_NONE
)
2160 info
->debug(arg
, write_only
);
2163 info
->debug(arg
, write_only
);
2170 static int check_array_args(unsigned int cmd
, void *parg
, size_t *array_size
,
2171 void * __user
*user_ptr
, void ***kernel_ptr
)
2176 case VIDIOC_QUERYBUF
:
2178 case VIDIOC_DQBUF
: {
2179 struct v4l2_buffer
*buf
= parg
;
2181 if (V4L2_TYPE_IS_MULTIPLANAR(buf
->type
) && buf
->length
> 0) {
2182 if (buf
->length
> VIDEO_MAX_PLANES
) {
2186 *user_ptr
= (void __user
*)buf
->m
.planes
;
2187 *kernel_ptr
= (void *)&buf
->m
.planes
;
2188 *array_size
= sizeof(struct v4l2_plane
) * buf
->length
;
2194 case VIDIOC_S_EXT_CTRLS
:
2195 case VIDIOC_G_EXT_CTRLS
:
2196 case VIDIOC_TRY_EXT_CTRLS
: {
2197 struct v4l2_ext_controls
*ctrls
= parg
;
2199 if (ctrls
->count
!= 0) {
2200 if (ctrls
->count
> V4L2_CID_MAX_CTRLS
) {
2204 *user_ptr
= (void __user
*)ctrls
->controls
;
2205 *kernel_ptr
= (void *)&ctrls
->controls
;
2206 *array_size
= sizeof(struct v4l2_ext_control
)
2218 video_usercopy(struct file
*file
, unsigned int cmd
, unsigned long arg
,
2223 void *parg
= (void *)arg
;
2225 bool has_array_args
;
2226 size_t array_size
= 0;
2227 void __user
*user_ptr
= NULL
;
2228 void **kernel_ptr
= NULL
;
2230 /* Copy arguments into temp kernel buffer */
2231 if (_IOC_DIR(cmd
) != _IOC_NONE
) {
2232 if (_IOC_SIZE(cmd
) <= sizeof(sbuf
)) {
2235 /* too big to allocate from stack */
2236 mbuf
= kmalloc(_IOC_SIZE(cmd
), GFP_KERNEL
);
2243 if (_IOC_DIR(cmd
) & _IOC_WRITE
) {
2244 unsigned int n
= _IOC_SIZE(cmd
);
2247 * In some cases, only a few fields are used as input,
2248 * i.e. when the app sets "index" and then the driver
2249 * fills in the rest of the structure for the thing
2250 * with that index. We only need to copy up the first
2253 if (v4l2_is_known_ioctl(cmd
)) {
2254 u32 flags
= v4l2_ioctls
[_IOC_NR(cmd
)].flags
;
2255 if (flags
& INFO_FL_CLEAR_MASK
)
2256 n
= (flags
& INFO_FL_CLEAR_MASK
) >> 16;
2259 if (copy_from_user(parg
, (void __user
*)arg
, n
))
2262 /* zero out anything we don't copy from userspace */
2263 if (n
< _IOC_SIZE(cmd
))
2264 memset((u8
*)parg
+ n
, 0, _IOC_SIZE(cmd
) - n
);
2266 /* read-only ioctl */
2267 memset(parg
, 0, _IOC_SIZE(cmd
));
2271 err
= check_array_args(cmd
, parg
, &array_size
, &user_ptr
, &kernel_ptr
);
2274 has_array_args
= err
;
2276 if (has_array_args
) {
2278 * When adding new types of array args, make sure that the
2279 * parent argument to ioctl (which contains the pointer to the
2280 * array) fits into sbuf (so that mbuf will still remain
2281 * unused up to here).
2283 mbuf
= kmalloc(array_size
, GFP_KERNEL
);
2286 goto out_array_args
;
2288 if (copy_from_user(mbuf
, user_ptr
, array_size
))
2289 goto out_array_args
;
2294 err
= func(file
, cmd
, parg
);
2295 if (err
== -ENOIOCTLCMD
)
2298 if (has_array_args
) {
2299 *kernel_ptr
= user_ptr
;
2300 if (copy_to_user(user_ptr
, mbuf
, array_size
))
2302 goto out_array_args
;
2304 /* VIDIOC_QUERY_DV_TIMINGS can return an error, but still have valid
2305 results that must be returned. */
2306 if (err
< 0 && cmd
!= VIDIOC_QUERY_DV_TIMINGS
)
2310 /* Copy results into user buffer */
2311 switch (_IOC_DIR(cmd
)) {
2313 case (_IOC_WRITE
| _IOC_READ
):
2314 if (copy_to_user((void __user
*)arg
, parg
, _IOC_SIZE(cmd
)))
2323 EXPORT_SYMBOL(video_usercopy
);
2325 long video_ioctl2(struct file
*file
,
2326 unsigned int cmd
, unsigned long arg
)
2328 return video_usercopy(file
, cmd
, arg
, __video_do_ioctl
);
2330 EXPORT_SYMBOL(video_ioctl2
);