blob: 24fd43322150e07d7fe1d24a07a2e1320d64a167 [file] [log] [blame]
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001/*
2 * Video capture interface for Linux version 2
3 *
4 * A generic framework to process V4L2 ioctl commands.
5 *
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.
10 *
Alan Coxd9b01442008-10-27 15:13:47 -030011 * Authors: Alan Cox, <alan@lxorguk.ukuu.org.uk> (version 1)
Hans Verkuil35ea11f2008-07-20 08:12:02 -030012 * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2)
13 */
14
15#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030017#include <linux/types.h>
18#include <linux/kernel.h>
Mauro Carvalho Chehabae6db512011-06-24 13:14:14 -030019#include <linux/version.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030020
Hans Verkuil35ea11f2008-07-20 08:12:02 -030021#include <linux/videodev2.h>
22
Hans Verkuil35ea11f2008-07-20 08:12:02 -030023#include <media/v4l2-common.h>
24#include <media/v4l2-ioctl.h>
Hans Verkuil11bbc1c2010-05-16 09:24:06 -030025#include <media/v4l2-ctrls.h>
Sakari Ailusd3d7c962010-03-27 11:02:10 -030026#include <media/v4l2-fh.h>
27#include <media/v4l2-event.h>
Hans Verkuil99cd47bc2011-03-11 19:00:56 -030028#include <media/v4l2-device.h>
Hans Verkuil80b36e02009-02-07 11:00:02 -030029#include <media/v4l2-chip-ident.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030030
31#define dbgarg(cmd, fmt, arg...) \
32 do { \
33 if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) { \
34 printk(KERN_DEBUG "%s: ", vfd->name); \
35 v4l_printk_ioctl(cmd); \
36 printk(" " fmt, ## arg); \
37 } \
38 } while (0)
39
40#define dbgarg2(fmt, arg...) \
41 do { \
42 if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) \
43 printk(KERN_DEBUG "%s: " fmt, vfd->name, ## arg);\
44 } while (0)
45
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -030046#define dbgarg3(fmt, arg...) \
47 do { \
48 if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) \
49 printk(KERN_CONT "%s: " fmt, vfd->name, ## arg);\
50 } while (0)
51
Lucas De Marchi25985ed2011-03-30 22:57:33 -030052/* Zero out the end of the struct pointed to by p. Everything after, but
Trent Piepho7ecc0cf2009-04-30 21:03:34 -030053 * not including, the specified field is cleared. */
54#define CLEAR_AFTER_FIELD(p, field) \
55 memset((u8 *)(p) + offsetof(typeof(*(p)), field) + sizeof((p)->field), \
56 0, sizeof(*(p)) - offsetof(typeof(*(p)), field) - sizeof((p)->field))
57
Hans Verkuil93d5a302011-08-09 09:32:06 -030058#define have_fmt_ops(foo) ( \
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -030059 ops->vidioc_##foo##_fmt_vid_cap || \
60 ops->vidioc_##foo##_fmt_vid_out || \
61 ops->vidioc_##foo##_fmt_vid_cap_mplane || \
62 ops->vidioc_##foo##_fmt_vid_out_mplane || \
63 ops->vidioc_##foo##_fmt_vid_overlay || \
Hans Verkuil93d5a302011-08-09 09:32:06 -030064 ops->vidioc_##foo##_fmt_vbi_cap || \
65 ops->vidioc_##foo##_fmt_vid_out_overlay || \
66 ops->vidioc_##foo##_fmt_vbi_out || \
67 ops->vidioc_##foo##_fmt_sliced_vbi_cap || \
68 ops->vidioc_##foo##_fmt_sliced_vbi_out || \
69 ops->vidioc_##foo##_fmt_type_private)
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -030070
Hans Verkuil35ea11f2008-07-20 08:12:02 -030071struct std_descr {
72 v4l2_std_id std;
73 const char *descr;
74};
75
76static const struct std_descr standards[] = {
77 { V4L2_STD_NTSC, "NTSC" },
78 { V4L2_STD_NTSC_M, "NTSC-M" },
79 { V4L2_STD_NTSC_M_JP, "NTSC-M-JP" },
80 { V4L2_STD_NTSC_M_KR, "NTSC-M-KR" },
81 { V4L2_STD_NTSC_443, "NTSC-443" },
82 { V4L2_STD_PAL, "PAL" },
83 { V4L2_STD_PAL_BG, "PAL-BG" },
84 { V4L2_STD_PAL_B, "PAL-B" },
85 { V4L2_STD_PAL_B1, "PAL-B1" },
86 { V4L2_STD_PAL_G, "PAL-G" },
87 { V4L2_STD_PAL_H, "PAL-H" },
88 { V4L2_STD_PAL_I, "PAL-I" },
89 { V4L2_STD_PAL_DK, "PAL-DK" },
90 { V4L2_STD_PAL_D, "PAL-D" },
91 { V4L2_STD_PAL_D1, "PAL-D1" },
92 { V4L2_STD_PAL_K, "PAL-K" },
93 { V4L2_STD_PAL_M, "PAL-M" },
94 { V4L2_STD_PAL_N, "PAL-N" },
95 { V4L2_STD_PAL_Nc, "PAL-Nc" },
96 { V4L2_STD_PAL_60, "PAL-60" },
97 { V4L2_STD_SECAM, "SECAM" },
98 { V4L2_STD_SECAM_B, "SECAM-B" },
99 { V4L2_STD_SECAM_G, "SECAM-G" },
100 { V4L2_STD_SECAM_H, "SECAM-H" },
101 { V4L2_STD_SECAM_DK, "SECAM-DK" },
102 { V4L2_STD_SECAM_D, "SECAM-D" },
103 { V4L2_STD_SECAM_K, "SECAM-K" },
104 { V4L2_STD_SECAM_K1, "SECAM-K1" },
105 { V4L2_STD_SECAM_L, "SECAM-L" },
106 { V4L2_STD_SECAM_LC, "SECAM-Lc" },
107 { 0, "Unknown" }
108};
109
110/* video4linux standard ID conversion to standard name
111 */
112const char *v4l2_norm_to_name(v4l2_std_id id)
113{
114 u32 myid = id;
115 int i;
116
117 /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle
118 64 bit comparations. So, on that architecture, with some gcc
119 variants, compilation fails. Currently, the max value is 30bit wide.
120 */
121 BUG_ON(myid != id);
122
123 for (i = 0; standards[i].std; i++)
124 if (myid == standards[i].std)
125 break;
126 return standards[i].descr;
127}
128EXPORT_SYMBOL(v4l2_norm_to_name);
129
Trent Piepho51f0b8d2009-03-04 01:21:02 -0300130/* Returns frame period for the given standard */
131void v4l2_video_std_frame_period(int id, struct v4l2_fract *frameperiod)
132{
133 if (id & V4L2_STD_525_60) {
134 frameperiod->numerator = 1001;
135 frameperiod->denominator = 30000;
136 } else {
137 frameperiod->numerator = 1;
138 frameperiod->denominator = 25;
139 }
140}
141EXPORT_SYMBOL(v4l2_video_std_frame_period);
142
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300143/* Fill in the fields of a v4l2_standard structure according to the
144 'id' and 'transmission' parameters. Returns negative on error. */
145int v4l2_video_std_construct(struct v4l2_standard *vs,
146 int id, const char *name)
147{
Trent Piepho51f0b8d2009-03-04 01:21:02 -0300148 vs->id = id;
149 v4l2_video_std_frame_period(id, &vs->frameperiod);
150 vs->framelines = (id & V4L2_STD_525_60) ? 525 : 625;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300151 strlcpy(vs->name, name, sizeof(vs->name));
152 return 0;
153}
154EXPORT_SYMBOL(v4l2_video_std_construct);
155
156/* ----------------------------------------------------------------- */
157/* some arrays for pretty-printing debug messages of enum types */
158
159const char *v4l2_field_names[] = {
160 [V4L2_FIELD_ANY] = "any",
161 [V4L2_FIELD_NONE] = "none",
162 [V4L2_FIELD_TOP] = "top",
163 [V4L2_FIELD_BOTTOM] = "bottom",
164 [V4L2_FIELD_INTERLACED] = "interlaced",
165 [V4L2_FIELD_SEQ_TB] = "seq-tb",
166 [V4L2_FIELD_SEQ_BT] = "seq-bt",
167 [V4L2_FIELD_ALTERNATE] = "alternate",
168 [V4L2_FIELD_INTERLACED_TB] = "interlaced-tb",
169 [V4L2_FIELD_INTERLACED_BT] = "interlaced-bt",
170};
171EXPORT_SYMBOL(v4l2_field_names);
172
173const char *v4l2_type_names[] = {
174 [V4L2_BUF_TYPE_VIDEO_CAPTURE] = "vid-cap",
175 [V4L2_BUF_TYPE_VIDEO_OVERLAY] = "vid-overlay",
176 [V4L2_BUF_TYPE_VIDEO_OUTPUT] = "vid-out",
177 [V4L2_BUF_TYPE_VBI_CAPTURE] = "vbi-cap",
178 [V4L2_BUF_TYPE_VBI_OUTPUT] = "vbi-out",
179 [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE] = "sliced-vbi-cap",
180 [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT] = "sliced-vbi-out",
181 [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY] = "vid-out-overlay",
Pawel Osciakf8f39142010-07-29 14:44:25 -0300182 [V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE] = "vid-cap-mplane",
183 [V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE] = "vid-out-mplane",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300184};
185EXPORT_SYMBOL(v4l2_type_names);
186
187static const char *v4l2_memory_names[] = {
188 [V4L2_MEMORY_MMAP] = "mmap",
189 [V4L2_MEMORY_USERPTR] = "userptr",
190 [V4L2_MEMORY_OVERLAY] = "overlay",
191};
192
193#define prt_names(a, arr) ((((a) >= 0) && ((a) < ARRAY_SIZE(arr))) ? \
194 arr[a] : "unknown")
195
196/* ------------------------------------------------------------------ */
197/* debug help functions */
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300198static const char *v4l2_ioctls[] = {
199 [_IOC_NR(VIDIOC_QUERYCAP)] = "VIDIOC_QUERYCAP",
200 [_IOC_NR(VIDIOC_RESERVED)] = "VIDIOC_RESERVED",
201 [_IOC_NR(VIDIOC_ENUM_FMT)] = "VIDIOC_ENUM_FMT",
202 [_IOC_NR(VIDIOC_G_FMT)] = "VIDIOC_G_FMT",
203 [_IOC_NR(VIDIOC_S_FMT)] = "VIDIOC_S_FMT",
204 [_IOC_NR(VIDIOC_REQBUFS)] = "VIDIOC_REQBUFS",
205 [_IOC_NR(VIDIOC_QUERYBUF)] = "VIDIOC_QUERYBUF",
206 [_IOC_NR(VIDIOC_G_FBUF)] = "VIDIOC_G_FBUF",
207 [_IOC_NR(VIDIOC_S_FBUF)] = "VIDIOC_S_FBUF",
208 [_IOC_NR(VIDIOC_OVERLAY)] = "VIDIOC_OVERLAY",
209 [_IOC_NR(VIDIOC_QBUF)] = "VIDIOC_QBUF",
210 [_IOC_NR(VIDIOC_DQBUF)] = "VIDIOC_DQBUF",
211 [_IOC_NR(VIDIOC_STREAMON)] = "VIDIOC_STREAMON",
212 [_IOC_NR(VIDIOC_STREAMOFF)] = "VIDIOC_STREAMOFF",
213 [_IOC_NR(VIDIOC_G_PARM)] = "VIDIOC_G_PARM",
214 [_IOC_NR(VIDIOC_S_PARM)] = "VIDIOC_S_PARM",
215 [_IOC_NR(VIDIOC_G_STD)] = "VIDIOC_G_STD",
216 [_IOC_NR(VIDIOC_S_STD)] = "VIDIOC_S_STD",
217 [_IOC_NR(VIDIOC_ENUMSTD)] = "VIDIOC_ENUMSTD",
218 [_IOC_NR(VIDIOC_ENUMINPUT)] = "VIDIOC_ENUMINPUT",
219 [_IOC_NR(VIDIOC_G_CTRL)] = "VIDIOC_G_CTRL",
220 [_IOC_NR(VIDIOC_S_CTRL)] = "VIDIOC_S_CTRL",
221 [_IOC_NR(VIDIOC_G_TUNER)] = "VIDIOC_G_TUNER",
222 [_IOC_NR(VIDIOC_S_TUNER)] = "VIDIOC_S_TUNER",
223 [_IOC_NR(VIDIOC_G_AUDIO)] = "VIDIOC_G_AUDIO",
224 [_IOC_NR(VIDIOC_S_AUDIO)] = "VIDIOC_S_AUDIO",
225 [_IOC_NR(VIDIOC_QUERYCTRL)] = "VIDIOC_QUERYCTRL",
226 [_IOC_NR(VIDIOC_QUERYMENU)] = "VIDIOC_QUERYMENU",
227 [_IOC_NR(VIDIOC_G_INPUT)] = "VIDIOC_G_INPUT",
228 [_IOC_NR(VIDIOC_S_INPUT)] = "VIDIOC_S_INPUT",
229 [_IOC_NR(VIDIOC_G_OUTPUT)] = "VIDIOC_G_OUTPUT",
230 [_IOC_NR(VIDIOC_S_OUTPUT)] = "VIDIOC_S_OUTPUT",
231 [_IOC_NR(VIDIOC_ENUMOUTPUT)] = "VIDIOC_ENUMOUTPUT",
232 [_IOC_NR(VIDIOC_G_AUDOUT)] = "VIDIOC_G_AUDOUT",
233 [_IOC_NR(VIDIOC_S_AUDOUT)] = "VIDIOC_S_AUDOUT",
234 [_IOC_NR(VIDIOC_G_MODULATOR)] = "VIDIOC_G_MODULATOR",
235 [_IOC_NR(VIDIOC_S_MODULATOR)] = "VIDIOC_S_MODULATOR",
236 [_IOC_NR(VIDIOC_G_FREQUENCY)] = "VIDIOC_G_FREQUENCY",
237 [_IOC_NR(VIDIOC_S_FREQUENCY)] = "VIDIOC_S_FREQUENCY",
238 [_IOC_NR(VIDIOC_CROPCAP)] = "VIDIOC_CROPCAP",
239 [_IOC_NR(VIDIOC_G_CROP)] = "VIDIOC_G_CROP",
240 [_IOC_NR(VIDIOC_S_CROP)] = "VIDIOC_S_CROP",
241 [_IOC_NR(VIDIOC_G_JPEGCOMP)] = "VIDIOC_G_JPEGCOMP",
242 [_IOC_NR(VIDIOC_S_JPEGCOMP)] = "VIDIOC_S_JPEGCOMP",
243 [_IOC_NR(VIDIOC_QUERYSTD)] = "VIDIOC_QUERYSTD",
244 [_IOC_NR(VIDIOC_TRY_FMT)] = "VIDIOC_TRY_FMT",
245 [_IOC_NR(VIDIOC_ENUMAUDIO)] = "VIDIOC_ENUMAUDIO",
246 [_IOC_NR(VIDIOC_ENUMAUDOUT)] = "VIDIOC_ENUMAUDOUT",
247 [_IOC_NR(VIDIOC_G_PRIORITY)] = "VIDIOC_G_PRIORITY",
248 [_IOC_NR(VIDIOC_S_PRIORITY)] = "VIDIOC_S_PRIORITY",
249 [_IOC_NR(VIDIOC_G_SLICED_VBI_CAP)] = "VIDIOC_G_SLICED_VBI_CAP",
250 [_IOC_NR(VIDIOC_LOG_STATUS)] = "VIDIOC_LOG_STATUS",
251 [_IOC_NR(VIDIOC_G_EXT_CTRLS)] = "VIDIOC_G_EXT_CTRLS",
252 [_IOC_NR(VIDIOC_S_EXT_CTRLS)] = "VIDIOC_S_EXT_CTRLS",
253 [_IOC_NR(VIDIOC_TRY_EXT_CTRLS)] = "VIDIOC_TRY_EXT_CTRLS",
254#if 1
255 [_IOC_NR(VIDIOC_ENUM_FRAMESIZES)] = "VIDIOC_ENUM_FRAMESIZES",
256 [_IOC_NR(VIDIOC_ENUM_FRAMEINTERVALS)] = "VIDIOC_ENUM_FRAMEINTERVALS",
257 [_IOC_NR(VIDIOC_G_ENC_INDEX)] = "VIDIOC_G_ENC_INDEX",
258 [_IOC_NR(VIDIOC_ENCODER_CMD)] = "VIDIOC_ENCODER_CMD",
259 [_IOC_NR(VIDIOC_TRY_ENCODER_CMD)] = "VIDIOC_TRY_ENCODER_CMD",
260
261 [_IOC_NR(VIDIOC_DBG_S_REGISTER)] = "VIDIOC_DBG_S_REGISTER",
262 [_IOC_NR(VIDIOC_DBG_G_REGISTER)] = "VIDIOC_DBG_G_REGISTER",
263
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300264 [_IOC_NR(VIDIOC_DBG_G_CHIP_IDENT)] = "VIDIOC_DBG_G_CHIP_IDENT",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300265 [_IOC_NR(VIDIOC_S_HW_FREQ_SEEK)] = "VIDIOC_S_HW_FREQ_SEEK",
266#endif
Muralidharan Karicherib6456c02009-11-19 12:00:31 -0300267 [_IOC_NR(VIDIOC_ENUM_DV_PRESETS)] = "VIDIOC_ENUM_DV_PRESETS",
268 [_IOC_NR(VIDIOC_S_DV_PRESET)] = "VIDIOC_S_DV_PRESET",
269 [_IOC_NR(VIDIOC_G_DV_PRESET)] = "VIDIOC_G_DV_PRESET",
270 [_IOC_NR(VIDIOC_QUERY_DV_PRESET)] = "VIDIOC_QUERY_DV_PRESET",
271 [_IOC_NR(VIDIOC_S_DV_TIMINGS)] = "VIDIOC_S_DV_TIMINGS",
272 [_IOC_NR(VIDIOC_G_DV_TIMINGS)] = "VIDIOC_G_DV_TIMINGS",
Sakari Ailusfda10212010-02-24 19:19:05 -0300273 [_IOC_NR(VIDIOC_DQEVENT)] = "VIDIOC_DQEVENT",
274 [_IOC_NR(VIDIOC_SUBSCRIBE_EVENT)] = "VIDIOC_SUBSCRIBE_EVENT",
275 [_IOC_NR(VIDIOC_UNSUBSCRIBE_EVENT)] = "VIDIOC_UNSUBSCRIBE_EVENT",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300276};
277#define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls)
278
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300279/* Common ioctl debug function. This function can be used by
280 external ioctl messages as well as internal V4L ioctl */
281void v4l_printk_ioctl(unsigned int cmd)
282{
283 char *dir, *type;
284
285 switch (_IOC_TYPE(cmd)) {
286 case 'd':
Hans Verkuil78a3b4d2009-04-01 03:41:09 -0300287 type = "v4l2_int";
288 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300289 case 'V':
290 if (_IOC_NR(cmd) >= V4L2_IOCTLS) {
291 type = "v4l2";
292 break;
293 }
294 printk("%s", v4l2_ioctls[_IOC_NR(cmd)]);
295 return;
296 default:
297 type = "unknown";
298 }
299
300 switch (_IOC_DIR(cmd)) {
301 case _IOC_NONE: dir = "--"; break;
302 case _IOC_READ: dir = "r-"; break;
303 case _IOC_WRITE: dir = "-w"; break;
304 case _IOC_READ | _IOC_WRITE: dir = "rw"; break;
305 default: dir = "*ERR*"; break;
306 }
307 printk("%s ioctl '%c', dir=%s, #%d (0x%08x)",
308 type, _IOC_TYPE(cmd), dir, _IOC_NR(cmd), cmd);
309}
310EXPORT_SYMBOL(v4l_printk_ioctl);
311
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300312static void dbgbuf(unsigned int cmd, struct video_device *vfd,
313 struct v4l2_buffer *p)
314{
315 struct v4l2_timecode *tc = &p->timecode;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300316 struct v4l2_plane *plane;
317 int i;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300318
319 dbgarg(cmd, "%02ld:%02d:%02d.%08ld index=%d, type=%s, "
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300320 "flags=0x%08d, field=%0d, sequence=%d, memory=%s\n",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300321 p->timestamp.tv_sec / 3600,
322 (int)(p->timestamp.tv_sec / 60) % 60,
323 (int)(p->timestamp.tv_sec % 60),
Alexander Beregalovb0459792008-09-03 16:47:38 -0300324 (long)p->timestamp.tv_usec,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300325 p->index,
326 prt_names(p->type, v4l2_type_names),
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300327 p->flags, p->field, p->sequence,
328 prt_names(p->memory, v4l2_memory_names));
329
330 if (V4L2_TYPE_IS_MULTIPLANAR(p->type) && p->m.planes) {
331 for (i = 0; i < p->length; ++i) {
332 plane = &p->m.planes[i];
333 dbgarg2("plane %d: bytesused=%d, data_offset=0x%08x "
334 "offset/userptr=0x%08lx, length=%d\n",
335 i, plane->bytesused, plane->data_offset,
336 plane->m.userptr, plane->length);
337 }
338 } else {
339 dbgarg2("bytesused=%d, offset/userptr=0x%08lx, length=%d\n",
340 p->bytesused, p->m.userptr, p->length);
341 }
342
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300343 dbgarg2("timecode=%02d:%02d:%02d type=%d, "
344 "flags=0x%08d, frames=%d, userbits=0x%08x\n",
345 tc->hours, tc->minutes, tc->seconds,
346 tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits);
347}
348
349static inline void dbgrect(struct video_device *vfd, char *s,
350 struct v4l2_rect *r)
351{
352 dbgarg2("%sRect start at %dx%d, size=%dx%d\n", s, r->left, r->top,
353 r->width, r->height);
354};
355
356static inline void v4l_print_pix_fmt(struct video_device *vfd,
357 struct v4l2_pix_format *fmt)
358{
359 dbgarg2("width=%d, height=%d, format=%c%c%c%c, field=%s, "
360 "bytesperline=%d sizeimage=%d, colorspace=%d\n",
361 fmt->width, fmt->height,
362 (fmt->pixelformat & 0xff),
363 (fmt->pixelformat >> 8) & 0xff,
364 (fmt->pixelformat >> 16) & 0xff,
365 (fmt->pixelformat >> 24) & 0xff,
366 prt_names(fmt->field, v4l2_field_names),
367 fmt->bytesperline, fmt->sizeimage, fmt->colorspace);
368};
369
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300370static inline void v4l_print_pix_fmt_mplane(struct video_device *vfd,
371 struct v4l2_pix_format_mplane *fmt)
372{
373 int i;
374
375 dbgarg2("width=%d, height=%d, format=%c%c%c%c, field=%s, "
376 "colorspace=%d, num_planes=%d\n",
377 fmt->width, fmt->height,
378 (fmt->pixelformat & 0xff),
379 (fmt->pixelformat >> 8) & 0xff,
380 (fmt->pixelformat >> 16) & 0xff,
381 (fmt->pixelformat >> 24) & 0xff,
382 prt_names(fmt->field, v4l2_field_names),
383 fmt->colorspace, fmt->num_planes);
384
385 for (i = 0; i < fmt->num_planes; ++i)
386 dbgarg2("plane %d: bytesperline=%d sizeimage=%d\n", i,
387 fmt->plane_fmt[i].bytesperline,
388 fmt->plane_fmt[i].sizeimage);
389}
390
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300391static inline void v4l_print_ext_ctrls(unsigned int cmd,
392 struct video_device *vfd, struct v4l2_ext_controls *c, int show_vals)
393{
394 __u32 i;
395
396 if (!(vfd->debug & V4L2_DEBUG_IOCTL_ARG))
397 return;
398 dbgarg(cmd, "");
399 printk(KERN_CONT "class=0x%x", c->ctrl_class);
400 for (i = 0; i < c->count; i++) {
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300401 if (show_vals && !c->controls[i].size)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300402 printk(KERN_CONT " id/val=0x%x/0x%x",
403 c->controls[i].id, c->controls[i].value);
404 else
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300405 printk(KERN_CONT " id=0x%x,size=%u",
406 c->controls[i].id, c->controls[i].size);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300407 }
408 printk(KERN_CONT "\n");
409};
410
411static inline int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv)
412{
413 __u32 i;
414
415 /* zero the reserved fields */
416 c->reserved[0] = c->reserved[1] = 0;
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300417 for (i = 0; i < c->count; i++)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300418 c->controls[i].reserved2[0] = 0;
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300419
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300420 /* V4L2_CID_PRIVATE_BASE cannot be used as control class
421 when using extended controls.
422 Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL
423 is it allowed for backwards compatibility.
424 */
425 if (!allow_priv && c->ctrl_class == V4L2_CID_PRIVATE_BASE)
426 return 0;
427 /* Check that all controls are from the same control class. */
428 for (i = 0; i < c->count; i++) {
429 if (V4L2_CTRL_ID2CLASS(c->controls[i].id) != c->ctrl_class) {
430 c->error_idx = i;
431 return 0;
432 }
433 }
434 return 1;
435}
436
Hans Verkuila3998102008-07-21 02:57:38 -0300437static int check_fmt(const struct v4l2_ioctl_ops *ops, enum v4l2_buf_type type)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300438{
Hans Verkuila3998102008-07-21 02:57:38 -0300439 if (ops == NULL)
440 return -EINVAL;
441
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300442 switch (type) {
443 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300444 if (ops->vidioc_g_fmt_vid_cap ||
445 ops->vidioc_g_fmt_vid_cap_mplane)
446 return 0;
447 break;
448 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
449 if (ops->vidioc_g_fmt_vid_cap_mplane)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300450 return 0;
451 break;
452 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho1175d612009-04-30 21:03:34 -0300453 if (ops->vidioc_g_fmt_vid_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300454 return 0;
455 break;
456 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300457 if (ops->vidioc_g_fmt_vid_out ||
458 ops->vidioc_g_fmt_vid_out_mplane)
459 return 0;
460 break;
461 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
462 if (ops->vidioc_g_fmt_vid_out_mplane)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300463 return 0;
464 break;
465 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho1175d612009-04-30 21:03:34 -0300466 if (ops->vidioc_g_fmt_vid_out_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300467 return 0;
468 break;
469 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho1175d612009-04-30 21:03:34 -0300470 if (ops->vidioc_g_fmt_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300471 return 0;
472 break;
473 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho1175d612009-04-30 21:03:34 -0300474 if (ops->vidioc_g_fmt_vbi_out)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300475 return 0;
476 break;
477 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho1175d612009-04-30 21:03:34 -0300478 if (ops->vidioc_g_fmt_sliced_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300479 return 0;
480 break;
481 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho1175d612009-04-30 21:03:34 -0300482 if (ops->vidioc_g_fmt_sliced_vbi_out)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300483 return 0;
484 break;
485 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho1175d612009-04-30 21:03:34 -0300486 if (ops->vidioc_g_fmt_type_private)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300487 return 0;
488 break;
489 }
490 return -EINVAL;
491}
492
Hans Verkuil069b7472008-12-30 07:04:34 -0300493static long __video_do_ioctl(struct file *file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300494 unsigned int cmd, void *arg)
495{
496 struct video_device *vfd = video_devdata(file);
Hans Verkuila3998102008-07-21 02:57:38 -0300497 const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
Hans Verkuild5fbf322008-10-18 13:39:53 -0300498 void *fh = file->private_data;
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300499 struct v4l2_fh *vfh = NULL;
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300500 int use_fh_prio = 0;
Hans Verkuil93d5a302011-08-09 09:32:06 -0300501 long ret_prio = 0;
Mauro Carvalho Chehab9190d192011-07-06 14:08:08 -0300502 long ret = -ENOTTY;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300503
Hans Verkuil6a717882010-04-06 15:56:08 -0300504 if (ops == NULL) {
505 printk(KERN_WARNING "videodev: \"%s\" has no ioctl_ops.\n",
506 vfd->name);
Mauro Carvalho Chehab9190d192011-07-06 14:08:08 -0300507 return ret;
Hans Verkuil6a717882010-04-06 15:56:08 -0300508 }
509
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300510 if ((vfd->debug & V4L2_DEBUG_IOCTL) &&
511 !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) {
512 v4l_print_ioctl(vfd->name, cmd);
513 printk(KERN_CONT "\n");
514 }
515
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300516 if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags)) {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300517 vfh = file->private_data;
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300518 use_fh_prio = test_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
519 }
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300520
Hans Verkuil93d5a302011-08-09 09:32:06 -0300521 if (use_fh_prio)
522 ret_prio = v4l2_prio_check(vfd->prio, vfh->prio);
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300523
Hans Verkuil6a717882010-04-06 15:56:08 -0300524 switch (cmd) {
Hans Verkuila3998102008-07-21 02:57:38 -0300525
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300526 /* --- capabilities ------------------------------------------ */
527 case VIDIOC_QUERYCAP:
528 {
529 struct v4l2_capability *cap = (struct v4l2_capability *)arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300530
Hans Verkuila3998102008-07-21 02:57:38 -0300531 if (!ops->vidioc_querycap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300532 break;
533
Mauro Carvalho Chehabae6db512011-06-24 13:14:14 -0300534 cap->version = LINUX_VERSION_CODE;
Hans Verkuila3998102008-07-21 02:57:38 -0300535 ret = ops->vidioc_querycap(file, fh, cap);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300536 if (!ret)
537 dbgarg(cmd, "driver=%s, card=%s, bus=%s, "
538 "version=0x%08x, "
539 "capabilities=0x%08x\n",
540 cap->driver, cap->card, cap->bus_info,
541 cap->version,
542 cap->capabilities);
543 break;
544 }
545
546 /* --- priority ------------------------------------------ */
547 case VIDIOC_G_PRIORITY:
548 {
549 enum v4l2_priority *p = arg;
550
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300551 if (ops->vidioc_g_priority) {
552 ret = ops->vidioc_g_priority(file, fh, p);
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300553 } else if (use_fh_prio) {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300554 *p = v4l2_prio_max(&vfd->v4l2_dev->prio);
555 ret = 0;
556 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300557 if (!ret)
558 dbgarg(cmd, "priority is %d\n", *p);
559 break;
560 }
561 case VIDIOC_S_PRIORITY:
562 {
563 enum v4l2_priority *p = arg;
564
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300565 if (!ops->vidioc_s_priority && !use_fh_prio)
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300566 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300567 dbgarg(cmd, "setting priority to %d\n", *p);
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300568 if (ops->vidioc_s_priority)
569 ret = ops->vidioc_s_priority(file, fh, *p);
570 else
Hans Verkuil93d5a302011-08-09 09:32:06 -0300571 ret = ret_prio ? ret_prio :
572 v4l2_prio_change(&vfd->v4l2_dev->prio,
573 &vfh->prio, *p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300574 break;
575 }
576
577 /* --- capture ioctls ---------------------------------------- */
578 case VIDIOC_ENUM_FMT:
579 {
580 struct v4l2_fmtdesc *f = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300581
Trent Piepho19c96e42009-03-04 01:21:02 -0300582 switch (f->type) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300583 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300584 if (likely(ops->vidioc_enum_fmt_vid_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300585 ret = ops->vidioc_enum_fmt_vid_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300586 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300587 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300588 if (likely(ops->vidioc_enum_fmt_vid_cap_mplane))
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300589 ret = ops->vidioc_enum_fmt_vid_cap_mplane(file,
590 fh, f);
591 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300592 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300593 if (likely(ops->vidioc_enum_fmt_vid_overlay))
Hans Verkuila3998102008-07-21 02:57:38 -0300594 ret = ops->vidioc_enum_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300595 fh, f);
596 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300597 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300598 if (likely(ops->vidioc_enum_fmt_vid_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300599 ret = ops->vidioc_enum_fmt_vid_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300600 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300601 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300602 if (likely(ops->vidioc_enum_fmt_vid_out_mplane))
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300603 ret = ops->vidioc_enum_fmt_vid_out_mplane(file,
604 fh, f);
605 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300606 case V4L2_BUF_TYPE_PRIVATE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300607 if (likely(ops->vidioc_enum_fmt_type_private))
Hans Verkuila3998102008-07-21 02:57:38 -0300608 ret = ops->vidioc_enum_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300609 fh, f);
610 break;
611 default:
612 break;
613 }
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300614 if (likely (!ret))
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300615 dbgarg(cmd, "index=%d, type=%d, flags=%d, "
616 "pixelformat=%c%c%c%c, description='%s'\n",
617 f->index, f->type, f->flags,
618 (f->pixelformat & 0xff),
619 (f->pixelformat >> 8) & 0xff,
620 (f->pixelformat >> 16) & 0xff,
621 (f->pixelformat >> 24) & 0xff,
622 f->description);
Hans Verkuil93d5a302011-08-09 09:32:06 -0300623 else if (ret == -ENOTTY &&
624 (ops->vidioc_enum_fmt_vid_cap ||
625 ops->vidioc_enum_fmt_vid_out ||
626 ops->vidioc_enum_fmt_vid_cap_mplane ||
627 ops->vidioc_enum_fmt_vid_out_mplane ||
628 ops->vidioc_enum_fmt_vid_overlay ||
629 ops->vidioc_enum_fmt_type_private))
630 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300631 break;
632 }
633 case VIDIOC_G_FMT:
634 {
635 struct v4l2_format *f = (struct v4l2_format *)arg;
636
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300637 /* FIXME: Should be one dump per type */
638 dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names));
639
640 switch (f->type) {
641 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300642 if (ops->vidioc_g_fmt_vid_cap)
Hans Verkuila3998102008-07-21 02:57:38 -0300643 ret = ops->vidioc_g_fmt_vid_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300644 if (!ret)
645 v4l_print_pix_fmt(vfd, &f->fmt.pix);
646 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300647 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300648 if (ops->vidioc_g_fmt_vid_cap_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300649 ret = ops->vidioc_g_fmt_vid_cap_mplane(file,
650 fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300651 if (!ret)
652 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
653 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300654 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300655 if (likely(ops->vidioc_g_fmt_vid_overlay))
Hans Verkuila3998102008-07-21 02:57:38 -0300656 ret = ops->vidioc_g_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300657 fh, f);
658 break;
659 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300660 if (ops->vidioc_g_fmt_vid_out)
Hans Verkuila3998102008-07-21 02:57:38 -0300661 ret = ops->vidioc_g_fmt_vid_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300662 if (!ret)
663 v4l_print_pix_fmt(vfd, &f->fmt.pix);
664 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300665 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300666 if (ops->vidioc_g_fmt_vid_out_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300667 ret = ops->vidioc_g_fmt_vid_out_mplane(file,
668 fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300669 if (!ret)
670 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
671 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300672 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300673 if (likely(ops->vidioc_g_fmt_vid_out_overlay))
Hans Verkuila3998102008-07-21 02:57:38 -0300674 ret = ops->vidioc_g_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300675 fh, f);
676 break;
677 case V4L2_BUF_TYPE_VBI_CAPTURE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300678 if (likely(ops->vidioc_g_fmt_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300679 ret = ops->vidioc_g_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300680 break;
681 case V4L2_BUF_TYPE_VBI_OUTPUT:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300682 if (likely(ops->vidioc_g_fmt_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300683 ret = ops->vidioc_g_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300684 break;
685 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300686 if (likely(ops->vidioc_g_fmt_sliced_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300687 ret = ops->vidioc_g_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300688 fh, f);
689 break;
690 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300691 if (likely(ops->vidioc_g_fmt_sliced_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300692 ret = ops->vidioc_g_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300693 fh, f);
694 break;
695 case V4L2_BUF_TYPE_PRIVATE:
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300696 if (likely(ops->vidioc_g_fmt_type_private))
Hans Verkuila3998102008-07-21 02:57:38 -0300697 ret = ops->vidioc_g_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300698 fh, f);
699 break;
700 }
Hans Verkuil93d5a302011-08-09 09:32:06 -0300701 if (unlikely(ret == -ENOTTY && have_fmt_ops(g)))
702 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300703
704 break;
705 }
706 case VIDIOC_S_FMT:
707 {
708 struct v4l2_format *f = (struct v4l2_format *)arg;
709
Hans Verkuil93d5a302011-08-09 09:32:06 -0300710 if (!have_fmt_ops(s))
711 break;
712 if (ret_prio) {
713 ret = ret_prio;
714 break;
715 }
716 ret = -EINVAL;
717
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300718 /* FIXME: Should be one dump per type */
719 dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names));
720
721 switch (f->type) {
722 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300723 CLEAR_AFTER_FIELD(f, fmt.pix);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300724 v4l_print_pix_fmt(vfd, &f->fmt.pix);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300725 if (ops->vidioc_s_fmt_vid_cap)
Hans Verkuila3998102008-07-21 02:57:38 -0300726 ret = ops->vidioc_s_fmt_vid_cap(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300727 break;
728 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
729 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
730 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300731 if (ops->vidioc_s_fmt_vid_cap_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300732 ret = ops->vidioc_s_fmt_vid_cap_mplane(file,
733 fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300734 break;
735 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300736 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -0300737 if (ops->vidioc_s_fmt_vid_overlay)
738 ret = ops->vidioc_s_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300739 fh, f);
740 break;
741 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300742 CLEAR_AFTER_FIELD(f, fmt.pix);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300743 v4l_print_pix_fmt(vfd, &f->fmt.pix);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300744 if (ops->vidioc_s_fmt_vid_out)
Hans Verkuila3998102008-07-21 02:57:38 -0300745 ret = ops->vidioc_s_fmt_vid_out(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300746 break;
747 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
748 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
749 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300750 if (ops->vidioc_s_fmt_vid_out_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300751 ret = ops->vidioc_s_fmt_vid_out_mplane(file,
752 fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300753 break;
754 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300755 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -0300756 if (ops->vidioc_s_fmt_vid_out_overlay)
757 ret = ops->vidioc_s_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300758 fh, f);
759 break;
760 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300761 CLEAR_AFTER_FIELD(f, fmt.vbi);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300762 if (likely(ops->vidioc_s_fmt_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300763 ret = ops->vidioc_s_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300764 break;
765 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300766 CLEAR_AFTER_FIELD(f, fmt.vbi);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300767 if (likely(ops->vidioc_s_fmt_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300768 ret = ops->vidioc_s_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300769 break;
770 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300771 CLEAR_AFTER_FIELD(f, fmt.sliced);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300772 if (likely(ops->vidioc_s_fmt_sliced_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300773 ret = ops->vidioc_s_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300774 fh, f);
775 break;
776 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300777 CLEAR_AFTER_FIELD(f, fmt.sliced);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300778 if (likely(ops->vidioc_s_fmt_sliced_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300779 ret = ops->vidioc_s_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300780 fh, f);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300781
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300782 break;
783 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300784 /* CLEAR_AFTER_FIELD(f, fmt.raw_data); <- does nothing */
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300785 if (likely(ops->vidioc_s_fmt_type_private))
Hans Verkuila3998102008-07-21 02:57:38 -0300786 ret = ops->vidioc_s_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300787 fh, f);
788 break;
789 }
790 break;
791 }
792 case VIDIOC_TRY_FMT:
793 {
794 struct v4l2_format *f = (struct v4l2_format *)arg;
795
796 /* FIXME: Should be one dump per type */
797 dbgarg(cmd, "type=%s\n", prt_names(f->type,
798 v4l2_type_names));
799 switch (f->type) {
800 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300801 CLEAR_AFTER_FIELD(f, fmt.pix);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300802 if (ops->vidioc_try_fmt_vid_cap)
Hans Verkuila3998102008-07-21 02:57:38 -0300803 ret = ops->vidioc_try_fmt_vid_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300804 if (!ret)
805 v4l_print_pix_fmt(vfd, &f->fmt.pix);
806 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300807 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
808 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300809 if (ops->vidioc_try_fmt_vid_cap_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300810 ret = ops->vidioc_try_fmt_vid_cap_mplane(file,
811 fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300812 if (!ret)
813 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
814 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300815 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300816 CLEAR_AFTER_FIELD(f, fmt.win);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300817 if (likely(ops->vidioc_try_fmt_vid_overlay))
Hans Verkuila3998102008-07-21 02:57:38 -0300818 ret = ops->vidioc_try_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300819 fh, f);
820 break;
821 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300822 CLEAR_AFTER_FIELD(f, fmt.pix);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300823 if (ops->vidioc_try_fmt_vid_out)
Hans Verkuila3998102008-07-21 02:57:38 -0300824 ret = ops->vidioc_try_fmt_vid_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300825 if (!ret)
826 v4l_print_pix_fmt(vfd, &f->fmt.pix);
827 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300828 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
829 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
Tomasz Stanislawski1d0c86c2011-07-01 06:25:46 -0300830 if (ops->vidioc_try_fmt_vid_out_mplane)
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300831 ret = ops->vidioc_try_fmt_vid_out_mplane(file,
832 fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300833 if (!ret)
834 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
835 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300836 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300837 CLEAR_AFTER_FIELD(f, fmt.win);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300838 if (likely(ops->vidioc_try_fmt_vid_out_overlay))
Hans Verkuila3998102008-07-21 02:57:38 -0300839 ret = ops->vidioc_try_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300840 fh, f);
841 break;
842 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300843 CLEAR_AFTER_FIELD(f, fmt.vbi);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300844 if (likely(ops->vidioc_try_fmt_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300845 ret = ops->vidioc_try_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300846 break;
847 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300848 CLEAR_AFTER_FIELD(f, fmt.vbi);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300849 if (likely(ops->vidioc_try_fmt_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300850 ret = ops->vidioc_try_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300851 break;
852 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300853 CLEAR_AFTER_FIELD(f, fmt.sliced);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300854 if (likely(ops->vidioc_try_fmt_sliced_vbi_cap))
Hans Verkuila3998102008-07-21 02:57:38 -0300855 ret = ops->vidioc_try_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300856 fh, f);
857 break;
858 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300859 CLEAR_AFTER_FIELD(f, fmt.sliced);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300860 if (likely(ops->vidioc_try_fmt_sliced_vbi_out))
Hans Verkuila3998102008-07-21 02:57:38 -0300861 ret = ops->vidioc_try_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300862 fh, f);
863 break;
864 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300865 /* CLEAR_AFTER_FIELD(f, fmt.raw_data); <- does nothing */
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -0300866 if (likely(ops->vidioc_try_fmt_type_private))
Hans Verkuila3998102008-07-21 02:57:38 -0300867 ret = ops->vidioc_try_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300868 fh, f);
869 break;
870 }
Hans Verkuil93d5a302011-08-09 09:32:06 -0300871 if (unlikely(ret == -ENOTTY && have_fmt_ops(try)))
872 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300873 break;
874 }
875 /* FIXME: Those buf reqs could be handled here,
876 with some changes on videobuf to allow its header to be included at
877 videodev2.h or being merged at videodev2.
878 */
879 case VIDIOC_REQBUFS:
880 {
881 struct v4l2_requestbuffers *p = arg;
882
Hans Verkuila3998102008-07-21 02:57:38 -0300883 if (!ops->vidioc_reqbufs)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300884 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -0300885 if (ret_prio) {
886 ret = ret_prio;
887 break;
888 }
Hans Verkuila3998102008-07-21 02:57:38 -0300889 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300890 if (ret)
891 break;
892
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300893 if (p->type < V4L2_BUF_TYPE_PRIVATE)
894 CLEAR_AFTER_FIELD(p, memory);
895
Hans Verkuila3998102008-07-21 02:57:38 -0300896 ret = ops->vidioc_reqbufs(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300897 dbgarg(cmd, "count=%d, type=%s, memory=%s\n",
898 p->count,
899 prt_names(p->type, v4l2_type_names),
900 prt_names(p->memory, v4l2_memory_names));
901 break;
902 }
903 case VIDIOC_QUERYBUF:
904 {
905 struct v4l2_buffer *p = arg;
906
Hans Verkuila3998102008-07-21 02:57:38 -0300907 if (!ops->vidioc_querybuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300908 break;
Hans Verkuila3998102008-07-21 02:57:38 -0300909 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300910 if (ret)
911 break;
912
Hans Verkuila3998102008-07-21 02:57:38 -0300913 ret = ops->vidioc_querybuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300914 if (!ret)
915 dbgbuf(cmd, vfd, p);
916 break;
917 }
918 case VIDIOC_QBUF:
919 {
920 struct v4l2_buffer *p = arg;
921
Hans Verkuila3998102008-07-21 02:57:38 -0300922 if (!ops->vidioc_qbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300923 break;
Hans Verkuila3998102008-07-21 02:57:38 -0300924 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300925 if (ret)
926 break;
927
Hans Verkuila3998102008-07-21 02:57:38 -0300928 ret = ops->vidioc_qbuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300929 if (!ret)
930 dbgbuf(cmd, vfd, p);
931 break;
932 }
933 case VIDIOC_DQBUF:
934 {
935 struct v4l2_buffer *p = arg;
936
Hans Verkuila3998102008-07-21 02:57:38 -0300937 if (!ops->vidioc_dqbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300938 break;
Hans Verkuila3998102008-07-21 02:57:38 -0300939 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300940 if (ret)
941 break;
942
Hans Verkuila3998102008-07-21 02:57:38 -0300943 ret = ops->vidioc_dqbuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300944 if (!ret)
945 dbgbuf(cmd, vfd, p);
946 break;
947 }
948 case VIDIOC_OVERLAY:
949 {
950 int *i = arg;
951
Hans Verkuila3998102008-07-21 02:57:38 -0300952 if (!ops->vidioc_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300953 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -0300954 if (ret_prio) {
955 ret = ret_prio;
956 break;
957 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300958 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -0300959 ret = ops->vidioc_overlay(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300960 break;
961 }
962 case VIDIOC_G_FBUF:
963 {
964 struct v4l2_framebuffer *p = arg;
965
Hans Verkuila3998102008-07-21 02:57:38 -0300966 if (!ops->vidioc_g_fbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300967 break;
Hans Verkuila3998102008-07-21 02:57:38 -0300968 ret = ops->vidioc_g_fbuf(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300969 if (!ret) {
970 dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n",
971 p->capability, p->flags,
972 (unsigned long)p->base);
973 v4l_print_pix_fmt(vfd, &p->fmt);
974 }
975 break;
976 }
977 case VIDIOC_S_FBUF:
978 {
979 struct v4l2_framebuffer *p = arg;
980
Hans Verkuila3998102008-07-21 02:57:38 -0300981 if (!ops->vidioc_s_fbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300982 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -0300983 if (ret_prio) {
984 ret = ret_prio;
985 break;
986 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300987 dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n",
988 p->capability, p->flags, (unsigned long)p->base);
989 v4l_print_pix_fmt(vfd, &p->fmt);
Hans Verkuila3998102008-07-21 02:57:38 -0300990 ret = ops->vidioc_s_fbuf(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300991 break;
992 }
993 case VIDIOC_STREAMON:
994 {
995 enum v4l2_buf_type i = *(int *)arg;
996
Hans Verkuila3998102008-07-21 02:57:38 -0300997 if (!ops->vidioc_streamon)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300998 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -0300999 if (ret_prio) {
1000 ret = ret_prio;
1001 break;
1002 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001003 dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001004 ret = ops->vidioc_streamon(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001005 break;
1006 }
1007 case VIDIOC_STREAMOFF:
1008 {
1009 enum v4l2_buf_type i = *(int *)arg;
1010
Hans Verkuila3998102008-07-21 02:57:38 -03001011 if (!ops->vidioc_streamoff)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001012 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001013 if (ret_prio) {
1014 ret = ret_prio;
1015 break;
1016 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001017 dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001018 ret = ops->vidioc_streamoff(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001019 break;
1020 }
1021 /* ---------- tv norms ---------- */
1022 case VIDIOC_ENUMSTD:
1023 {
1024 struct v4l2_standard *p = arg;
1025 v4l2_std_id id = vfd->tvnorms, curr_id = 0;
1026 unsigned int index = p->index, i, j = 0;
1027 const char *descr = "";
1028
Hans Verkuil93d5a302011-08-09 09:32:06 -03001029 if (id == 0)
1030 break;
1031 ret = -EINVAL;
1032
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001033 /* Return norm array in a canonical way */
1034 for (i = 0; i <= index && id; i++) {
1035 /* last std value in the standards array is 0, so this
1036 while always ends there since (id & 0) == 0. */
1037 while ((id & standards[j].std) != standards[j].std)
1038 j++;
1039 curr_id = standards[j].std;
1040 descr = standards[j].descr;
1041 j++;
1042 if (curr_id == 0)
1043 break;
1044 if (curr_id != V4L2_STD_PAL &&
1045 curr_id != V4L2_STD_SECAM &&
1046 curr_id != V4L2_STD_NTSC)
1047 id &= ~curr_id;
1048 }
1049 if (i <= index)
Hans Verkuil3f5e1822010-04-06 08:14:11 -03001050 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001051
1052 v4l2_video_std_construct(p, curr_id, descr);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001053
1054 dbgarg(cmd, "index=%d, id=0x%Lx, name=%s, fps=%d/%d, "
1055 "framelines=%d\n", p->index,
1056 (unsigned long long)p->id, p->name,
1057 p->frameperiod.numerator,
1058 p->frameperiod.denominator,
1059 p->framelines);
1060
1061 ret = 0;
1062 break;
1063 }
1064 case VIDIOC_G_STD:
1065 {
1066 v4l2_std_id *id = arg;
1067
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001068 /* Calls the specific handler */
Hans Verkuila3998102008-07-21 02:57:38 -03001069 if (ops->vidioc_g_std)
1070 ret = ops->vidioc_g_std(file, fh, id);
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -03001071 else if (vfd->current_norm) {
1072 ret = 0;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001073 *id = vfd->current_norm;
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -03001074 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001075
Mauro Carvalho Chehaba5f2db52011-07-31 09:37:56 -03001076 if (likely(!ret))
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001077 dbgarg(cmd, "std=0x%08Lx\n", (long long unsigned)*id);
1078 break;
1079 }
1080 case VIDIOC_S_STD:
1081 {
1082 v4l2_std_id *id = arg, norm;
1083
1084 dbgarg(cmd, "std=%08Lx\n", (long long unsigned)*id);
1085
Hans Verkuil93d5a302011-08-09 09:32:06 -03001086 if (!ops->vidioc_s_std)
1087 break;
1088
1089 if (ret_prio) {
1090 ret = ret_prio;
1091 break;
1092 }
1093 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001094 norm = (*id) & vfd->tvnorms;
1095 if (vfd->tvnorms && !norm) /* Check if std is supported */
1096 break;
1097
1098 /* Calls the specific handler */
Hans Verkuil93d5a302011-08-09 09:32:06 -03001099 ret = ops->vidioc_s_std(file, fh, &norm);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001100
1101 /* Updates standard information */
1102 if (ret >= 0)
1103 vfd->current_norm = norm;
1104 break;
1105 }
1106 case VIDIOC_QUERYSTD:
1107 {
1108 v4l2_std_id *p = arg;
1109
Hans Verkuila3998102008-07-21 02:57:38 -03001110 if (!ops->vidioc_querystd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001111 break;
Mauro Carvalho Chehab8715e6c2011-10-04 09:32:23 -03001112 /*
1113 * If nothing detected, it should return all supported
1114 * Drivers just need to mask the std argument, in order
1115 * to remove the standards that don't apply from the mask.
1116 * This means that tuners, audio and video decoders can join
1117 * their efforts to improve the standards detection
1118 */
1119 *p = vfd->tvnorms;
Hans Verkuila3998102008-07-21 02:57:38 -03001120 ret = ops->vidioc_querystd(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001121 if (!ret)
1122 dbgarg(cmd, "detected std=%08Lx\n",
1123 (unsigned long long)*p);
1124 break;
1125 }
1126 /* ------ input switching ---------- */
1127 /* FIXME: Inputs can be handled inside videodev2 */
1128 case VIDIOC_ENUMINPUT:
1129 {
1130 struct v4l2_input *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001131
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001132 /*
1133 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
1134 * CAP_STD here based on ioctl handler provided by the
1135 * driver. If the driver doesn't support these
1136 * for a specific input, it must override these flags.
1137 */
1138 if (ops->vidioc_s_std)
1139 p->capabilities |= V4L2_IN_CAP_STD;
1140 if (ops->vidioc_s_dv_preset)
1141 p->capabilities |= V4L2_IN_CAP_PRESETS;
1142 if (ops->vidioc_s_dv_timings)
1143 p->capabilities |= V4L2_IN_CAP_CUSTOM_TIMINGS;
1144
Hans Verkuila3998102008-07-21 02:57:38 -03001145 if (!ops->vidioc_enum_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001146 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001147
Hans Verkuila3998102008-07-21 02:57:38 -03001148 ret = ops->vidioc_enum_input(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001149 if (!ret)
1150 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1151 "audioset=%d, "
1152 "tuner=%d, std=%08Lx, status=%d\n",
1153 p->index, p->name, p->type, p->audioset,
1154 p->tuner,
1155 (unsigned long long)p->std,
1156 p->status);
1157 break;
1158 }
1159 case VIDIOC_G_INPUT:
1160 {
1161 unsigned int *i = arg;
1162
Hans Verkuila3998102008-07-21 02:57:38 -03001163 if (!ops->vidioc_g_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001164 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001165 ret = ops->vidioc_g_input(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001166 if (!ret)
1167 dbgarg(cmd, "value=%d\n", *i);
1168 break;
1169 }
1170 case VIDIOC_S_INPUT:
1171 {
1172 unsigned int *i = arg;
1173
Hans Verkuila3998102008-07-21 02:57:38 -03001174 if (!ops->vidioc_s_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001175 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001176 if (ret_prio) {
1177 ret = ret_prio;
1178 break;
1179 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001180 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -03001181 ret = ops->vidioc_s_input(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001182 break;
1183 }
1184
1185 /* ------ output switching ---------- */
1186 case VIDIOC_ENUMOUTPUT:
1187 {
1188 struct v4l2_output *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001189
Hans Verkuila3998102008-07-21 02:57:38 -03001190 if (!ops->vidioc_enum_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001191 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001192
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001193 /*
1194 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
1195 * CAP_STD here based on ioctl handler provided by the
1196 * driver. If the driver doesn't support these
1197 * for a specific output, it must override these flags.
1198 */
1199 if (ops->vidioc_s_std)
1200 p->capabilities |= V4L2_OUT_CAP_STD;
1201 if (ops->vidioc_s_dv_preset)
1202 p->capabilities |= V4L2_OUT_CAP_PRESETS;
1203 if (ops->vidioc_s_dv_timings)
1204 p->capabilities |= V4L2_OUT_CAP_CUSTOM_TIMINGS;
1205
Hans Verkuila3998102008-07-21 02:57:38 -03001206 ret = ops->vidioc_enum_output(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001207 if (!ret)
1208 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1209 "audioset=0x%x, "
1210 "modulator=%d, std=0x%08Lx\n",
1211 p->index, p->name, p->type, p->audioset,
1212 p->modulator, (unsigned long long)p->std);
1213 break;
1214 }
1215 case VIDIOC_G_OUTPUT:
1216 {
1217 unsigned int *i = arg;
1218
Hans Verkuila3998102008-07-21 02:57:38 -03001219 if (!ops->vidioc_g_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001220 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001221 ret = ops->vidioc_g_output(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001222 if (!ret)
1223 dbgarg(cmd, "value=%d\n", *i);
1224 break;
1225 }
1226 case VIDIOC_S_OUTPUT:
1227 {
1228 unsigned int *i = arg;
1229
Hans Verkuila3998102008-07-21 02:57:38 -03001230 if (!ops->vidioc_s_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001231 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001232 if (ret_prio) {
1233 ret = ret_prio;
1234 break;
1235 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001236 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -03001237 ret = ops->vidioc_s_output(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001238 break;
1239 }
1240
1241 /* --- controls ---------------------------------------------- */
1242 case VIDIOC_QUERYCTRL:
1243 {
1244 struct v4l2_queryctrl *p = arg;
1245
Hans Verkuil2d28b682011-03-12 08:54:43 -03001246 if (vfh && vfh->ctrl_handler)
1247 ret = v4l2_queryctrl(vfh->ctrl_handler, p);
1248 else if (vfd->ctrl_handler)
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001249 ret = v4l2_queryctrl(vfd->ctrl_handler, p);
1250 else if (ops->vidioc_queryctrl)
1251 ret = ops->vidioc_queryctrl(file, fh, p);
1252 else
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001253 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001254 if (!ret)
1255 dbgarg(cmd, "id=0x%x, type=%d, name=%s, min/max=%d/%d, "
1256 "step=%d, default=%d, flags=0x%08x\n",
1257 p->id, p->type, p->name,
1258 p->minimum, p->maximum,
1259 p->step, p->default_value, p->flags);
1260 else
1261 dbgarg(cmd, "id=0x%x\n", p->id);
1262 break;
1263 }
1264 case VIDIOC_G_CTRL:
1265 {
1266 struct v4l2_control *p = arg;
1267
Hans Verkuil2d28b682011-03-12 08:54:43 -03001268 if (vfh && vfh->ctrl_handler)
1269 ret = v4l2_g_ctrl(vfh->ctrl_handler, p);
1270 else if (vfd->ctrl_handler)
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001271 ret = v4l2_g_ctrl(vfd->ctrl_handler, p);
1272 else if (ops->vidioc_g_ctrl)
Hans Verkuila3998102008-07-21 02:57:38 -03001273 ret = ops->vidioc_g_ctrl(file, fh, p);
1274 else if (ops->vidioc_g_ext_ctrls) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001275 struct v4l2_ext_controls ctrls;
1276 struct v4l2_ext_control ctrl;
1277
1278 ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id);
1279 ctrls.count = 1;
1280 ctrls.controls = &ctrl;
1281 ctrl.id = p->id;
1282 ctrl.value = p->value;
1283 if (check_ext_ctrls(&ctrls, 1)) {
Hans Verkuila3998102008-07-21 02:57:38 -03001284 ret = ops->vidioc_g_ext_ctrls(file, fh, &ctrls);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001285 if (ret == 0)
1286 p->value = ctrl.value;
1287 }
1288 } else
1289 break;
1290 if (!ret)
1291 dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value);
1292 else
1293 dbgarg(cmd, "id=0x%x\n", p->id);
1294 break;
1295 }
1296 case VIDIOC_S_CTRL:
1297 {
1298 struct v4l2_control *p = arg;
1299 struct v4l2_ext_controls ctrls;
1300 struct v4l2_ext_control ctrl;
1301
Hans Verkuil2d28b682011-03-12 08:54:43 -03001302 if (!(vfh && vfh->ctrl_handler) && !vfd->ctrl_handler &&
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001303 !ops->vidioc_s_ctrl && !ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001304 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001305 if (ret_prio) {
1306 ret = ret_prio;
1307 break;
1308 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001309
1310 dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value);
1311
Hans Verkuil2d28b682011-03-12 08:54:43 -03001312 if (vfh && vfh->ctrl_handler) {
Hans Verkuilab892ba2011-06-07 06:47:18 -03001313 ret = v4l2_s_ctrl(vfh, vfh->ctrl_handler, p);
Hans Verkuil2d28b682011-03-12 08:54:43 -03001314 break;
1315 }
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001316 if (vfd->ctrl_handler) {
Hans Verkuilab892ba2011-06-07 06:47:18 -03001317 ret = v4l2_s_ctrl(NULL, vfd->ctrl_handler, p);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001318 break;
1319 }
Hans Verkuila3998102008-07-21 02:57:38 -03001320 if (ops->vidioc_s_ctrl) {
1321 ret = ops->vidioc_s_ctrl(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001322 break;
1323 }
Hans Verkuila3998102008-07-21 02:57:38 -03001324 if (!ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001325 break;
1326
1327 ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id);
1328 ctrls.count = 1;
1329 ctrls.controls = &ctrl;
1330 ctrl.id = p->id;
1331 ctrl.value = p->value;
1332 if (check_ext_ctrls(&ctrls, 1))
Hans Verkuila3998102008-07-21 02:57:38 -03001333 ret = ops->vidioc_s_ext_ctrls(file, fh, &ctrls);
Hans Verkuil93d5a302011-08-09 09:32:06 -03001334 else
1335 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001336 break;
1337 }
1338 case VIDIOC_G_EXT_CTRLS:
1339 {
1340 struct v4l2_ext_controls *p = arg;
1341
1342 p->error_idx = p->count;
Hans Verkuil2d28b682011-03-12 08:54:43 -03001343 if (vfh && vfh->ctrl_handler)
1344 ret = v4l2_g_ext_ctrls(vfh->ctrl_handler, p);
1345 else if (vfd->ctrl_handler)
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001346 ret = v4l2_g_ext_ctrls(vfd->ctrl_handler, p);
Hans Verkuil93d5a302011-08-09 09:32:06 -03001347 else if (ops->vidioc_g_ext_ctrls)
1348 ret = check_ext_ctrls(p, 0) ?
1349 ops->vidioc_g_ext_ctrls(file, fh, p) :
1350 -EINVAL;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001351 else
1352 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001353 v4l_print_ext_ctrls(cmd, vfd, p, !ret);
1354 break;
1355 }
1356 case VIDIOC_S_EXT_CTRLS:
1357 {
1358 struct v4l2_ext_controls *p = arg;
1359
1360 p->error_idx = p->count;
Hans Verkuil2d28b682011-03-12 08:54:43 -03001361 if (!(vfh && vfh->ctrl_handler) && !vfd->ctrl_handler &&
1362 !ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001363 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001364 if (ret_prio) {
1365 ret = ret_prio;
1366 break;
1367 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001368 v4l_print_ext_ctrls(cmd, vfd, p, 1);
Hans Verkuil2d28b682011-03-12 08:54:43 -03001369 if (vfh && vfh->ctrl_handler)
Hans Verkuilab892ba2011-06-07 06:47:18 -03001370 ret = v4l2_s_ext_ctrls(vfh, vfh->ctrl_handler, p);
Hans Verkuil2d28b682011-03-12 08:54:43 -03001371 else if (vfd->ctrl_handler)
Hans Verkuilab892ba2011-06-07 06:47:18 -03001372 ret = v4l2_s_ext_ctrls(NULL, vfd->ctrl_handler, p);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001373 else if (check_ext_ctrls(p, 0))
Hans Verkuila3998102008-07-21 02:57:38 -03001374 ret = ops->vidioc_s_ext_ctrls(file, fh, p);
Hans Verkuil93d5a302011-08-09 09:32:06 -03001375 else
1376 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001377 break;
1378 }
1379 case VIDIOC_TRY_EXT_CTRLS:
1380 {
1381 struct v4l2_ext_controls *p = arg;
1382
1383 p->error_idx = p->count;
Hans Verkuil2d28b682011-03-12 08:54:43 -03001384 if (!(vfh && vfh->ctrl_handler) && !vfd->ctrl_handler &&
1385 !ops->vidioc_try_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001386 break;
1387 v4l_print_ext_ctrls(cmd, vfd, p, 1);
Hans Verkuil2d28b682011-03-12 08:54:43 -03001388 if (vfh && vfh->ctrl_handler)
1389 ret = v4l2_try_ext_ctrls(vfh->ctrl_handler, p);
1390 else if (vfd->ctrl_handler)
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001391 ret = v4l2_try_ext_ctrls(vfd->ctrl_handler, p);
1392 else if (check_ext_ctrls(p, 0))
Hans Verkuila3998102008-07-21 02:57:38 -03001393 ret = ops->vidioc_try_ext_ctrls(file, fh, p);
Hans Verkuil93d5a302011-08-09 09:32:06 -03001394 else
1395 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001396 break;
1397 }
1398 case VIDIOC_QUERYMENU:
1399 {
1400 struct v4l2_querymenu *p = arg;
1401
Hans Verkuil2d28b682011-03-12 08:54:43 -03001402 if (vfh && vfh->ctrl_handler)
1403 ret = v4l2_querymenu(vfh->ctrl_handler, p);
1404 else if (vfd->ctrl_handler)
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001405 ret = v4l2_querymenu(vfd->ctrl_handler, p);
1406 else if (ops->vidioc_querymenu)
1407 ret = ops->vidioc_querymenu(file, fh, p);
1408 else
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001409 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001410 if (!ret)
1411 dbgarg(cmd, "id=0x%x, index=%d, name=%s\n",
1412 p->id, p->index, p->name);
1413 else
1414 dbgarg(cmd, "id=0x%x, index=%d\n",
1415 p->id, p->index);
1416 break;
1417 }
1418 /* --- audio ---------------------------------------------- */
1419 case VIDIOC_ENUMAUDIO:
1420 {
1421 struct v4l2_audio *p = arg;
1422
Hans Verkuila3998102008-07-21 02:57:38 -03001423 if (!ops->vidioc_enumaudio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001424 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001425 ret = ops->vidioc_enumaudio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001426 if (!ret)
1427 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1428 "mode=0x%x\n", p->index, p->name,
1429 p->capability, p->mode);
1430 else
1431 dbgarg(cmd, "index=%d\n", p->index);
1432 break;
1433 }
1434 case VIDIOC_G_AUDIO:
1435 {
1436 struct v4l2_audio *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001437
Hans Verkuila3998102008-07-21 02:57:38 -03001438 if (!ops->vidioc_g_audio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001439 break;
1440
Hans Verkuila3998102008-07-21 02:57:38 -03001441 ret = ops->vidioc_g_audio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001442 if (!ret)
1443 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1444 "mode=0x%x\n", p->index,
1445 p->name, p->capability, p->mode);
1446 else
1447 dbgarg(cmd, "index=%d\n", p->index);
1448 break;
1449 }
1450 case VIDIOC_S_AUDIO:
1451 {
1452 struct v4l2_audio *p = arg;
1453
Hans Verkuila3998102008-07-21 02:57:38 -03001454 if (!ops->vidioc_s_audio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001455 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001456 if (ret_prio) {
1457 ret = ret_prio;
1458 break;
1459 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001460 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1461 "mode=0x%x\n", p->index, p->name,
1462 p->capability, p->mode);
Hans Verkuila3998102008-07-21 02:57:38 -03001463 ret = ops->vidioc_s_audio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001464 break;
1465 }
1466 case VIDIOC_ENUMAUDOUT:
1467 {
1468 struct v4l2_audioout *p = arg;
1469
Hans Verkuila3998102008-07-21 02:57:38 -03001470 if (!ops->vidioc_enumaudout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001471 break;
1472 dbgarg(cmd, "Enum for index=%d\n", p->index);
Hans Verkuila3998102008-07-21 02:57:38 -03001473 ret = ops->vidioc_enumaudout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001474 if (!ret)
1475 dbgarg2("index=%d, name=%s, capability=%d, "
1476 "mode=%d\n", p->index, p->name,
1477 p->capability, p->mode);
1478 break;
1479 }
1480 case VIDIOC_G_AUDOUT:
1481 {
1482 struct v4l2_audioout *p = arg;
1483
Hans Verkuila3998102008-07-21 02:57:38 -03001484 if (!ops->vidioc_g_audout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001485 break;
Trent Piepho337f9d22009-03-04 01:21:02 -03001486
Hans Verkuila3998102008-07-21 02:57:38 -03001487 ret = ops->vidioc_g_audout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001488 if (!ret)
1489 dbgarg2("index=%d, name=%s, capability=%d, "
1490 "mode=%d\n", p->index, p->name,
1491 p->capability, p->mode);
1492 break;
1493 }
1494 case VIDIOC_S_AUDOUT:
1495 {
1496 struct v4l2_audioout *p = arg;
1497
Hans Verkuila3998102008-07-21 02:57:38 -03001498 if (!ops->vidioc_s_audout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001499 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001500 if (ret_prio) {
1501 ret = ret_prio;
1502 break;
1503 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001504 dbgarg(cmd, "index=%d, name=%s, capability=%d, "
1505 "mode=%d\n", p->index, p->name,
1506 p->capability, p->mode);
1507
Hans Verkuila3998102008-07-21 02:57:38 -03001508 ret = ops->vidioc_s_audout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001509 break;
1510 }
1511 case VIDIOC_G_MODULATOR:
1512 {
1513 struct v4l2_modulator *p = arg;
1514
Hans Verkuila3998102008-07-21 02:57:38 -03001515 if (!ops->vidioc_g_modulator)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001516 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001517 ret = ops->vidioc_g_modulator(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001518 if (!ret)
1519 dbgarg(cmd, "index=%d, name=%s, "
1520 "capability=%d, rangelow=%d,"
1521 " rangehigh=%d, txsubchans=%d\n",
1522 p->index, p->name, p->capability,
1523 p->rangelow, p->rangehigh,
1524 p->txsubchans);
1525 break;
1526 }
1527 case VIDIOC_S_MODULATOR:
1528 {
1529 struct v4l2_modulator *p = arg;
1530
Hans Verkuila3998102008-07-21 02:57:38 -03001531 if (!ops->vidioc_s_modulator)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001532 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001533 if (ret_prio) {
1534 ret = ret_prio;
1535 break;
1536 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001537 dbgarg(cmd, "index=%d, name=%s, capability=%d, "
1538 "rangelow=%d, rangehigh=%d, txsubchans=%d\n",
1539 p->index, p->name, p->capability, p->rangelow,
1540 p->rangehigh, p->txsubchans);
Hans Verkuila3998102008-07-21 02:57:38 -03001541 ret = ops->vidioc_s_modulator(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001542 break;
1543 }
1544 case VIDIOC_G_CROP:
1545 {
1546 struct v4l2_crop *p = arg;
1547
Hans Verkuila3998102008-07-21 02:57:38 -03001548 if (!ops->vidioc_g_crop)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001549 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001550
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001551 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001552 ret = ops->vidioc_g_crop(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001553 if (!ret)
1554 dbgrect(vfd, "", &p->c);
1555 break;
1556 }
1557 case VIDIOC_S_CROP:
1558 {
1559 struct v4l2_crop *p = arg;
1560
Hans Verkuila3998102008-07-21 02:57:38 -03001561 if (!ops->vidioc_s_crop)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001562 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001563 if (ret_prio) {
1564 ret = ret_prio;
1565 break;
1566 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001567 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
1568 dbgrect(vfd, "", &p->c);
Hans Verkuila3998102008-07-21 02:57:38 -03001569 ret = ops->vidioc_s_crop(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001570 break;
1571 }
1572 case VIDIOC_CROPCAP:
1573 {
1574 struct v4l2_cropcap *p = arg;
1575
1576 /*FIXME: Should also show v4l2_fract pixelaspect */
Hans Verkuila3998102008-07-21 02:57:38 -03001577 if (!ops->vidioc_cropcap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001578 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001579
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001580 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001581 ret = ops->vidioc_cropcap(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001582 if (!ret) {
1583 dbgrect(vfd, "bounds ", &p->bounds);
1584 dbgrect(vfd, "defrect ", &p->defrect);
1585 }
1586 break;
1587 }
1588 case VIDIOC_G_JPEGCOMP:
1589 {
1590 struct v4l2_jpegcompression *p = arg;
1591
Hans Verkuila3998102008-07-21 02:57:38 -03001592 if (!ops->vidioc_g_jpegcomp)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001593 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001594
Hans Verkuila3998102008-07-21 02:57:38 -03001595 ret = ops->vidioc_g_jpegcomp(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001596 if (!ret)
1597 dbgarg(cmd, "quality=%d, APPn=%d, "
1598 "APP_len=%d, COM_len=%d, "
1599 "jpeg_markers=%d\n",
1600 p->quality, p->APPn, p->APP_len,
1601 p->COM_len, p->jpeg_markers);
1602 break;
1603 }
1604 case VIDIOC_S_JPEGCOMP:
1605 {
1606 struct v4l2_jpegcompression *p = arg;
1607
Hans Verkuila3998102008-07-21 02:57:38 -03001608 if (!ops->vidioc_g_jpegcomp)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001609 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001610 if (ret_prio) {
1611 ret = ret_prio;
1612 break;
1613 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001614 dbgarg(cmd, "quality=%d, APPn=%d, APP_len=%d, "
1615 "COM_len=%d, jpeg_markers=%d\n",
1616 p->quality, p->APPn, p->APP_len,
1617 p->COM_len, p->jpeg_markers);
Hans Verkuil93d5a302011-08-09 09:32:06 -03001618 ret = ops->vidioc_s_jpegcomp(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001619 break;
1620 }
1621 case VIDIOC_G_ENC_INDEX:
1622 {
1623 struct v4l2_enc_idx *p = arg;
1624
Hans Verkuila3998102008-07-21 02:57:38 -03001625 if (!ops->vidioc_g_enc_index)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001626 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001627 ret = ops->vidioc_g_enc_index(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001628 if (!ret)
1629 dbgarg(cmd, "entries=%d, entries_cap=%d\n",
1630 p->entries, p->entries_cap);
1631 break;
1632 }
1633 case VIDIOC_ENCODER_CMD:
1634 {
1635 struct v4l2_encoder_cmd *p = arg;
1636
Hans Verkuila3998102008-07-21 02:57:38 -03001637 if (!ops->vidioc_encoder_cmd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001638 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001639 if (ret_prio) {
1640 ret = ret_prio;
1641 break;
1642 }
Hans Verkuila3998102008-07-21 02:57:38 -03001643 ret = ops->vidioc_encoder_cmd(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001644 if (!ret)
1645 dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags);
1646 break;
1647 }
1648 case VIDIOC_TRY_ENCODER_CMD:
1649 {
1650 struct v4l2_encoder_cmd *p = arg;
1651
Hans Verkuila3998102008-07-21 02:57:38 -03001652 if (!ops->vidioc_try_encoder_cmd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001653 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001654 ret = ops->vidioc_try_encoder_cmd(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001655 if (!ret)
1656 dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags);
1657 break;
1658 }
1659 case VIDIOC_G_PARM:
1660 {
1661 struct v4l2_streamparm *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001662
Hans Verkuil93d5a302011-08-09 09:32:06 -03001663 if (!ops->vidioc_g_parm && !vfd->current_norm)
1664 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001665 if (ops->vidioc_g_parm) {
Trent Piepho34796bc2009-03-28 22:25:35 -03001666 ret = check_fmt(ops, p->type);
1667 if (ret)
1668 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001669 ret = ops->vidioc_g_parm(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001670 } else {
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001671 v4l2_std_id std = vfd->current_norm;
1672
Hans Verkuil93d5a302011-08-09 09:32:06 -03001673 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001674 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Hans Verkuil3f5e1822010-04-06 08:14:11 -03001675 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001676
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001677 ret = 0;
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001678 if (ops->vidioc_g_std)
1679 ret = ops->vidioc_g_std(file, fh, &std);
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001680 if (ret == 0)
1681 v4l2_video_std_frame_period(std,
1682 &p->parm.capture.timeperframe);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001683 }
1684
1685 dbgarg(cmd, "type=%d\n", p->type);
1686 break;
1687 }
1688 case VIDIOC_S_PARM:
1689 {
1690 struct v4l2_streamparm *p = arg;
1691
Hans Verkuila3998102008-07-21 02:57:38 -03001692 if (!ops->vidioc_s_parm)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001693 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001694 if (ret_prio) {
1695 ret = ret_prio;
1696 break;
1697 }
Trent Piepho34796bc2009-03-28 22:25:35 -03001698 ret = check_fmt(ops, p->type);
1699 if (ret)
1700 break;
1701
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001702 dbgarg(cmd, "type=%d\n", p->type);
Hans Verkuila3998102008-07-21 02:57:38 -03001703 ret = ops->vidioc_s_parm(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001704 break;
1705 }
1706 case VIDIOC_G_TUNER:
1707 {
1708 struct v4l2_tuner *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001709
Hans Verkuila3998102008-07-21 02:57:38 -03001710 if (!ops->vidioc_g_tuner)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001711 break;
1712
Hans Verkuil227690d2011-06-12 06:36:41 -03001713 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1714 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuila3998102008-07-21 02:57:38 -03001715 ret = ops->vidioc_g_tuner(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001716 if (!ret)
1717 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1718 "capability=0x%x, rangelow=%d, "
1719 "rangehigh=%d, signal=%d, afc=%d, "
1720 "rxsubchans=0x%x, audmode=%d\n",
1721 p->index, p->name, p->type,
1722 p->capability, p->rangelow,
1723 p->rangehigh, p->signal, p->afc,
1724 p->rxsubchans, p->audmode);
1725 break;
1726 }
1727 case VIDIOC_S_TUNER:
1728 {
1729 struct v4l2_tuner *p = arg;
1730
Hans Verkuila3998102008-07-21 02:57:38 -03001731 if (!ops->vidioc_s_tuner)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001732 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001733 if (ret_prio) {
1734 ret = ret_prio;
1735 break;
1736 }
Hans Verkuil227690d2011-06-12 06:36:41 -03001737 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1738 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001739 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1740 "capability=0x%x, rangelow=%d, "
1741 "rangehigh=%d, signal=%d, afc=%d, "
1742 "rxsubchans=0x%x, audmode=%d\n",
1743 p->index, p->name, p->type,
1744 p->capability, p->rangelow,
1745 p->rangehigh, p->signal, p->afc,
1746 p->rxsubchans, p->audmode);
Hans Verkuila3998102008-07-21 02:57:38 -03001747 ret = ops->vidioc_s_tuner(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001748 break;
1749 }
1750 case VIDIOC_G_FREQUENCY:
1751 {
1752 struct v4l2_frequency *p = arg;
1753
Hans Verkuila3998102008-07-21 02:57:38 -03001754 if (!ops->vidioc_g_frequency)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001755 break;
1756
Hans Verkuil227690d2011-06-12 06:36:41 -03001757 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1758 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuila3998102008-07-21 02:57:38 -03001759 ret = ops->vidioc_g_frequency(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001760 if (!ret)
1761 dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n",
1762 p->tuner, p->type, p->frequency);
1763 break;
1764 }
1765 case VIDIOC_S_FREQUENCY:
1766 {
1767 struct v4l2_frequency *p = arg;
1768
Hans Verkuila3998102008-07-21 02:57:38 -03001769 if (!ops->vidioc_s_frequency)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001770 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001771 if (ret_prio) {
1772 ret = ret_prio;
1773 break;
1774 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001775 dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n",
1776 p->tuner, p->type, p->frequency);
Hans Verkuila3998102008-07-21 02:57:38 -03001777 ret = ops->vidioc_s_frequency(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001778 break;
1779 }
1780 case VIDIOC_G_SLICED_VBI_CAP:
1781 {
1782 struct v4l2_sliced_vbi_cap *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001783
Hans Verkuila3998102008-07-21 02:57:38 -03001784 if (!ops->vidioc_g_sliced_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001785 break;
Trent Piepho19c96e42009-03-04 01:21:02 -03001786
1787 /* Clear up to type, everything after type is zerod already */
1788 memset(p, 0, offsetof(struct v4l2_sliced_vbi_cap, type));
1789
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001790 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001791 ret = ops->vidioc_g_sliced_vbi_cap(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001792 if (!ret)
1793 dbgarg2("service_set=%d\n", p->service_set);
1794 break;
1795 }
1796 case VIDIOC_LOG_STATUS:
1797 {
Hans Verkuila3998102008-07-21 02:57:38 -03001798 if (!ops->vidioc_log_status)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001799 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001800 ret = ops->vidioc_log_status(file, fh);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001801 break;
1802 }
1803#ifdef CONFIG_VIDEO_ADV_DEBUG
1804 case VIDIOC_DBG_G_REGISTER:
1805 {
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001806 struct v4l2_dbg_register *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001807
Hans Verkuila1198cc2011-01-08 09:53:32 -03001808 if (ops->vidioc_g_register) {
1809 if (!capable(CAP_SYS_ADMIN))
1810 ret = -EPERM;
1811 else
1812 ret = ops->vidioc_g_register(file, fh, p);
1813 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001814 break;
1815 }
1816 case VIDIOC_DBG_S_REGISTER:
1817 {
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001818 struct v4l2_dbg_register *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001819
Hans Verkuila1198cc2011-01-08 09:53:32 -03001820 if (ops->vidioc_s_register) {
1821 if (!capable(CAP_SYS_ADMIN))
1822 ret = -EPERM;
1823 else
1824 ret = ops->vidioc_s_register(file, fh, p);
1825 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001826 break;
1827 }
1828#endif
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001829 case VIDIOC_DBG_G_CHIP_IDENT:
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001830 {
Hans Verkuilaecde8b2008-12-30 07:14:19 -03001831 struct v4l2_dbg_chip_ident *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001832
Hans Verkuila3998102008-07-21 02:57:38 -03001833 if (!ops->vidioc_g_chip_ident)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001834 break;
Hans Verkuil80b36e02009-02-07 11:00:02 -03001835 p->ident = V4L2_IDENT_NONE;
1836 p->revision = 0;
Hans Verkuila3998102008-07-21 02:57:38 -03001837 ret = ops->vidioc_g_chip_ident(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001838 if (!ret)
1839 dbgarg(cmd, "chip_ident=%u, revision=0x%x\n", p->ident, p->revision);
1840 break;
1841 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001842 case VIDIOC_S_HW_FREQ_SEEK:
1843 {
1844 struct v4l2_hw_freq_seek *p = arg;
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001845 enum v4l2_tuner_type type;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001846
Hans Verkuila3998102008-07-21 02:57:38 -03001847 if (!ops->vidioc_s_hw_freq_seek)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001848 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001849 if (ret_prio) {
1850 ret = ret_prio;
1851 break;
1852 }
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001853 type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1854 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001855 dbgarg(cmd,
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001856 "tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u\n",
1857 p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing);
1858 if (p->type != type)
1859 ret = -EINVAL;
1860 else
1861 ret = ops->vidioc_s_hw_freq_seek(file, fh, p);
Hans Verkuila3998102008-07-21 02:57:38 -03001862 break;
1863 }
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001864 case VIDIOC_ENUM_FRAMESIZES:
1865 {
1866 struct v4l2_frmsizeenum *p = arg;
1867
1868 if (!ops->vidioc_enum_framesizes)
1869 break;
1870
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001871 ret = ops->vidioc_enum_framesizes(file, fh, p);
1872 dbgarg(cmd,
Mauro Carvalho Chehabd1afe422009-06-21 22:37:12 -03001873 "index=%d, pixelformat=%c%c%c%c, type=%d ",
1874 p->index,
1875 (p->pixel_format & 0xff),
1876 (p->pixel_format >> 8) & 0xff,
1877 (p->pixel_format >> 16) & 0xff,
1878 (p->pixel_format >> 24) & 0xff,
1879 p->type);
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001880 switch (p->type) {
1881 case V4L2_FRMSIZE_TYPE_DISCRETE:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001882 dbgarg3("width = %d, height=%d\n",
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001883 p->discrete.width, p->discrete.height);
1884 break;
1885 case V4L2_FRMSIZE_TYPE_STEPWISE:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001886 dbgarg3("min %dx%d, max %dx%d, step %dx%d\n",
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001887 p->stepwise.min_width, p->stepwise.min_height,
1888 p->stepwise.step_width, p->stepwise.step_height,
1889 p->stepwise.max_width, p->stepwise.max_height);
1890 break;
1891 case V4L2_FRMSIZE_TYPE_CONTINUOUS:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001892 dbgarg3("continuous\n");
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001893 break;
1894 default:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001895 dbgarg3("- Unknown type!\n");
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001896 }
1897
1898 break;
1899 }
1900 case VIDIOC_ENUM_FRAMEINTERVALS:
1901 {
1902 struct v4l2_frmivalenum *p = arg;
1903
1904 if (!ops->vidioc_enum_frameintervals)
1905 break;
1906
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001907 ret = ops->vidioc_enum_frameintervals(file, fh, p);
1908 dbgarg(cmd,
1909 "index=%d, pixelformat=%d, width=%d, height=%d, type=%d ",
1910 p->index, p->pixel_format,
1911 p->width, p->height, p->type);
1912 switch (p->type) {
1913 case V4L2_FRMIVAL_TYPE_DISCRETE:
1914 dbgarg2("fps=%d/%d\n",
1915 p->discrete.numerator,
1916 p->discrete.denominator);
1917 break;
1918 case V4L2_FRMIVAL_TYPE_STEPWISE:
Mauro Carvalho Chehab19585782008-11-12 01:03:02 -03001919 dbgarg2("min=%d/%d, max=%d/%d, step=%d/%d\n",
1920 p->stepwise.min.numerator,
1921 p->stepwise.min.denominator,
1922 p->stepwise.max.numerator,
1923 p->stepwise.max.denominator,
1924 p->stepwise.step.numerator,
1925 p->stepwise.step.denominator);
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001926 break;
1927 case V4L2_FRMIVAL_TYPE_CONTINUOUS:
1928 dbgarg2("continuous\n");
1929 break;
1930 default:
1931 dbgarg2("- Unknown type!\n");
1932 }
1933 break;
1934 }
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001935 case VIDIOC_ENUM_DV_PRESETS:
1936 {
1937 struct v4l2_dv_enum_preset *p = arg;
1938
1939 if (!ops->vidioc_enum_dv_presets)
1940 break;
1941
1942 ret = ops->vidioc_enum_dv_presets(file, fh, p);
1943 if (!ret)
1944 dbgarg(cmd,
1945 "index=%d, preset=%d, name=%s, width=%d,"
1946 " height=%d ",
1947 p->index, p->preset, p->name, p->width,
1948 p->height);
1949 break;
1950 }
1951 case VIDIOC_S_DV_PRESET:
1952 {
1953 struct v4l2_dv_preset *p = arg;
1954
1955 if (!ops->vidioc_s_dv_preset)
1956 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001957 if (ret_prio) {
1958 ret = ret_prio;
1959 break;
1960 }
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001961
1962 dbgarg(cmd, "preset=%d\n", p->preset);
1963 ret = ops->vidioc_s_dv_preset(file, fh, p);
1964 break;
1965 }
1966 case VIDIOC_G_DV_PRESET:
1967 {
1968 struct v4l2_dv_preset *p = arg;
1969
1970 if (!ops->vidioc_g_dv_preset)
1971 break;
1972
1973 ret = ops->vidioc_g_dv_preset(file, fh, p);
1974 if (!ret)
1975 dbgarg(cmd, "preset=%d\n", p->preset);
1976 break;
1977 }
1978 case VIDIOC_QUERY_DV_PRESET:
1979 {
1980 struct v4l2_dv_preset *p = arg;
1981
1982 if (!ops->vidioc_query_dv_preset)
1983 break;
1984
1985 ret = ops->vidioc_query_dv_preset(file, fh, p);
1986 if (!ret)
1987 dbgarg(cmd, "preset=%d\n", p->preset);
1988 break;
1989 }
1990 case VIDIOC_S_DV_TIMINGS:
1991 {
1992 struct v4l2_dv_timings *p = arg;
1993
1994 if (!ops->vidioc_s_dv_timings)
1995 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03001996 if (ret_prio) {
1997 ret = ret_prio;
1998 break;
1999 }
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03002000
2001 switch (p->type) {
2002 case V4L2_DV_BT_656_1120:
2003 dbgarg2("bt-656/1120:interlaced=%d, pixelclock=%lld,"
2004 " width=%d, height=%d, polarities=%x,"
2005 " hfrontporch=%d, hsync=%d, hbackporch=%d,"
2006 " vfrontporch=%d, vsync=%d, vbackporch=%d,"
2007 " il_vfrontporch=%d, il_vsync=%d,"
2008 " il_vbackporch=%d\n",
2009 p->bt.interlaced, p->bt.pixelclock,
2010 p->bt.width, p->bt.height, p->bt.polarities,
2011 p->bt.hfrontporch, p->bt.hsync,
2012 p->bt.hbackporch, p->bt.vfrontporch,
2013 p->bt.vsync, p->bt.vbackporch,
2014 p->bt.il_vfrontporch, p->bt.il_vsync,
2015 p->bt.il_vbackporch);
2016 ret = ops->vidioc_s_dv_timings(file, fh, p);
2017 break;
2018 default:
2019 dbgarg2("Unknown type %d!\n", p->type);
2020 break;
2021 }
2022 break;
2023 }
2024 case VIDIOC_G_DV_TIMINGS:
2025 {
2026 struct v4l2_dv_timings *p = arg;
2027
2028 if (!ops->vidioc_g_dv_timings)
2029 break;
2030
2031 ret = ops->vidioc_g_dv_timings(file, fh, p);
2032 if (!ret) {
2033 switch (p->type) {
2034 case V4L2_DV_BT_656_1120:
2035 dbgarg2("bt-656/1120:interlaced=%d,"
2036 " pixelclock=%lld,"
2037 " width=%d, height=%d, polarities=%x,"
2038 " hfrontporch=%d, hsync=%d,"
2039 " hbackporch=%d, vfrontporch=%d,"
2040 " vsync=%d, vbackporch=%d,"
2041 " il_vfrontporch=%d, il_vsync=%d,"
2042 " il_vbackporch=%d\n",
2043 p->bt.interlaced, p->bt.pixelclock,
2044 p->bt.width, p->bt.height,
2045 p->bt.polarities, p->bt.hfrontporch,
2046 p->bt.hsync, p->bt.hbackporch,
2047 p->bt.vfrontporch, p->bt.vsync,
2048 p->bt.vbackporch, p->bt.il_vfrontporch,
2049 p->bt.il_vsync, p->bt.il_vbackporch);
2050 break;
2051 default:
2052 dbgarg2("Unknown type %d!\n", p->type);
2053 break;
2054 }
2055 }
2056 break;
2057 }
Sakari Ailusd3d7c962010-03-27 11:02:10 -03002058 case VIDIOC_DQEVENT:
2059 {
2060 struct v4l2_event *ev = arg;
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03002061
Sakari Ailusd3d7c962010-03-27 11:02:10 -03002062 if (!ops->vidioc_subscribe_event)
2063 break;
2064
2065 ret = v4l2_event_dequeue(fh, ev, file->f_flags & O_NONBLOCK);
2066 if (ret < 0) {
2067 dbgarg(cmd, "no pending events?");
2068 break;
2069 }
2070 dbgarg(cmd,
2071 "pending=%d, type=0x%8.8x, sequence=%d, "
2072 "timestamp=%lu.%9.9lu ",
2073 ev->pending, ev->type, ev->sequence,
2074 ev->timestamp.tv_sec, ev->timestamp.tv_nsec);
2075 break;
2076 }
2077 case VIDIOC_SUBSCRIBE_EVENT:
2078 {
2079 struct v4l2_event_subscription *sub = arg;
2080
2081 if (!ops->vidioc_subscribe_event)
2082 break;
2083
2084 ret = ops->vidioc_subscribe_event(fh, sub);
2085 if (ret < 0) {
2086 dbgarg(cmd, "failed, ret=%ld", ret);
2087 break;
2088 }
2089 dbgarg(cmd, "type=0x%8.8x", sub->type);
2090 break;
2091 }
2092 case VIDIOC_UNSUBSCRIBE_EVENT:
2093 {
2094 struct v4l2_event_subscription *sub = arg;
2095
2096 if (!ops->vidioc_unsubscribe_event)
2097 break;
2098
2099 ret = ops->vidioc_unsubscribe_event(fh, sub);
2100 if (ret < 0) {
2101 dbgarg(cmd, "failed, ret=%ld", ret);
2102 break;
2103 }
2104 dbgarg(cmd, "type=0x%8.8x", sub->type);
2105 break;
2106 }
Hans Verkuila3998102008-07-21 02:57:38 -03002107 default:
Hans Verkuila3998102008-07-21 02:57:38 -03002108 if (!ops->vidioc_default)
2109 break;
Hans Verkuil93d5a302011-08-09 09:32:06 -03002110 ret = ops->vidioc_default(file, fh, ret_prio >= 0, cmd, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002111 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002112 } /* switch */
2113
2114 if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) {
2115 if (ret < 0) {
2116 v4l_print_ioctl(vfd->name, cmd);
Hans Verkuil069b7472008-12-30 07:04:34 -03002117 printk(KERN_CONT " error %ld\n", ret);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002118 }
2119 }
2120
2121 return ret;
2122}
2123
Trent Piepho19c96e42009-03-04 01:21:02 -03002124/* In some cases, only a few fields are used as input, i.e. when the app sets
2125 * "index" and then the driver fills in the rest of the structure for the thing
2126 * with that index. We only need to copy up the first non-input field. */
2127static unsigned long cmd_input_size(unsigned int cmd)
2128{
2129 /* Size of structure up to and including 'field' */
Hans Verkuil9f1a6932009-03-08 10:35:23 -03002130#define CMDINSIZE(cmd, type, field) \
2131 case VIDIOC_##cmd: \
2132 return offsetof(struct v4l2_##type, field) + \
2133 sizeof(((struct v4l2_##type *)0)->field);
Trent Piepho19c96e42009-03-04 01:21:02 -03002134
Hans Verkuil9f1a6932009-03-08 10:35:23 -03002135 switch (cmd) {
Trent Piepho19c96e42009-03-04 01:21:02 -03002136 CMDINSIZE(ENUM_FMT, fmtdesc, type);
2137 CMDINSIZE(G_FMT, format, type);
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002138 CMDINSIZE(QUERYBUF, buffer, length);
Trent Piepho19c96e42009-03-04 01:21:02 -03002139 CMDINSIZE(G_PARM, streamparm, type);
2140 CMDINSIZE(ENUMSTD, standard, index);
2141 CMDINSIZE(ENUMINPUT, input, index);
2142 CMDINSIZE(G_CTRL, control, id);
2143 CMDINSIZE(G_TUNER, tuner, index);
2144 CMDINSIZE(QUERYCTRL, queryctrl, id);
2145 CMDINSIZE(QUERYMENU, querymenu, index);
2146 CMDINSIZE(ENUMOUTPUT, output, index);
2147 CMDINSIZE(G_MODULATOR, modulator, index);
2148 CMDINSIZE(G_FREQUENCY, frequency, tuner);
2149 CMDINSIZE(CROPCAP, cropcap, type);
2150 CMDINSIZE(G_CROP, crop, type);
2151 CMDINSIZE(ENUMAUDIO, audio, index);
2152 CMDINSIZE(ENUMAUDOUT, audioout, index);
2153 CMDINSIZE(ENCODER_CMD, encoder_cmd, flags);
2154 CMDINSIZE(TRY_ENCODER_CMD, encoder_cmd, flags);
2155 CMDINSIZE(G_SLICED_VBI_CAP, sliced_vbi_cap, type);
2156 CMDINSIZE(ENUM_FRAMESIZES, frmsizeenum, pixel_format);
2157 CMDINSIZE(ENUM_FRAMEINTERVALS, frmivalenum, height);
2158 default:
2159 return _IOC_SIZE(cmd);
2160 }
2161}
2162
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002163static int check_array_args(unsigned int cmd, void *parg, size_t *array_size,
2164 void * __user *user_ptr, void ***kernel_ptr)
2165{
2166 int ret = 0;
2167
2168 switch (cmd) {
2169 case VIDIOC_QUERYBUF:
2170 case VIDIOC_QBUF:
2171 case VIDIOC_DQBUF: {
2172 struct v4l2_buffer *buf = parg;
2173
2174 if (V4L2_TYPE_IS_MULTIPLANAR(buf->type) && buf->length > 0) {
2175 if (buf->length > VIDEO_MAX_PLANES) {
2176 ret = -EINVAL;
2177 break;
2178 }
2179 *user_ptr = (void __user *)buf->m.planes;
Hans Petter Selasky2ef40372011-05-23 08:13:06 -03002180 *kernel_ptr = (void *)&buf->m.planes;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002181 *array_size = sizeof(struct v4l2_plane) * buf->length;
2182 ret = 1;
2183 }
2184 break;
2185 }
2186
2187 case VIDIOC_S_EXT_CTRLS:
2188 case VIDIOC_G_EXT_CTRLS:
2189 case VIDIOC_TRY_EXT_CTRLS: {
2190 struct v4l2_ext_controls *ctrls = parg;
2191
2192 if (ctrls->count != 0) {
2193 *user_ptr = (void __user *)ctrls->controls;
Hans Petter Selasky2ef40372011-05-23 08:13:06 -03002194 *kernel_ptr = (void *)&ctrls->controls;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002195 *array_size = sizeof(struct v4l2_ext_control)
2196 * ctrls->count;
2197 ret = 1;
2198 }
2199 break;
2200 }
2201 }
2202
2203 return ret;
2204}
2205
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002206long
2207video_usercopy(struct file *file, unsigned int cmd, unsigned long arg,
2208 v4l2_kioctl func)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002209{
2210 char sbuf[128];
2211 void *mbuf = NULL;
Hans Verkuil1d94aa32010-04-06 08:12:21 -03002212 void *parg = (void *)arg;
Hans Verkuil069b7472008-12-30 07:04:34 -03002213 long err = -EINVAL;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002214 bool has_array_args;
2215 size_t array_size = 0;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002216 void __user *user_ptr = NULL;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002217 void **kernel_ptr = NULL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002218
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002219 /* Copy arguments into temp kernel buffer */
Trent Piepho337f9d22009-03-04 01:21:02 -03002220 if (_IOC_DIR(cmd) != _IOC_NONE) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002221 if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
2222 parg = sbuf;
2223 } else {
2224 /* too big to allocate from stack */
2225 mbuf = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL);
2226 if (NULL == mbuf)
2227 return -ENOMEM;
2228 parg = mbuf;
2229 }
2230
2231 err = -EFAULT;
Trent Piepho19c96e42009-03-04 01:21:02 -03002232 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2233 unsigned long n = cmd_input_size(cmd);
2234
2235 if (copy_from_user(parg, (void __user *)arg, n))
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002236 goto out;
Trent Piepho19c96e42009-03-04 01:21:02 -03002237
2238 /* zero out anything we don't copy from userspace */
2239 if (n < _IOC_SIZE(cmd))
2240 memset((u8 *)parg + n, 0, _IOC_SIZE(cmd) - n);
Trent Piepho337f9d22009-03-04 01:21:02 -03002241 } else {
2242 /* read-only ioctl */
2243 memset(parg, 0, _IOC_SIZE(cmd));
Trent Piepho19c96e42009-03-04 01:21:02 -03002244 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002245 }
2246
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002247 err = check_array_args(cmd, parg, &array_size, &user_ptr, &kernel_ptr);
2248 if (err < 0)
2249 goto out;
2250 has_array_args = err;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002251
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002252 if (has_array_args) {
2253 /*
2254 * When adding new types of array args, make sure that the
2255 * parent argument to ioctl (which contains the pointer to the
2256 * array) fits into sbuf (so that mbuf will still remain
2257 * unused up to here).
2258 */
2259 mbuf = kmalloc(array_size, GFP_KERNEL);
2260 err = -ENOMEM;
2261 if (NULL == mbuf)
2262 goto out_array_args;
2263 err = -EFAULT;
2264 if (copy_from_user(mbuf, user_ptr, array_size))
2265 goto out_array_args;
2266 *kernel_ptr = mbuf;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002267 }
2268
2269 /* Handles IOCTL */
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002270 err = func(file, cmd, parg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002271 if (err == -ENOIOCTLCMD)
2272 err = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002273
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002274 if (has_array_args) {
2275 *kernel_ptr = user_ptr;
2276 if (copy_to_user(user_ptr, mbuf, array_size))
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002277 err = -EFAULT;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002278 goto out_array_args;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002279 }
2280 if (err < 0)
2281 goto out;
2282
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002283out_array_args:
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002284 /* Copy results into user buffer */
2285 switch (_IOC_DIR(cmd)) {
2286 case _IOC_READ:
2287 case (_IOC_WRITE | _IOC_READ):
2288 if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
2289 err = -EFAULT;
2290 break;
2291 }
2292
2293out:
2294 kfree(mbuf);
2295 return err;
2296}
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002297EXPORT_SYMBOL(video_usercopy);
2298
2299long video_ioctl2(struct file *file,
2300 unsigned int cmd, unsigned long arg)
2301{
2302 return video_usercopy(file, cmd, arg, __video_do_ioctl);
2303}
Mauro Carvalho Chehab8a522c92008-10-21 11:58:39 -03002304EXPORT_SYMBOL(video_ioctl2);