blob: 48b94fcb6a2500e1d44d7b6768c21f60edf90bcb [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 Verkuil35ea11f2008-07-20 08:12:02 -030058struct std_descr {
59 v4l2_std_id std;
60 const char *descr;
61};
62
63static const struct std_descr standards[] = {
64 { V4L2_STD_NTSC, "NTSC" },
65 { V4L2_STD_NTSC_M, "NTSC-M" },
66 { V4L2_STD_NTSC_M_JP, "NTSC-M-JP" },
67 { V4L2_STD_NTSC_M_KR, "NTSC-M-KR" },
68 { V4L2_STD_NTSC_443, "NTSC-443" },
69 { V4L2_STD_PAL, "PAL" },
70 { V4L2_STD_PAL_BG, "PAL-BG" },
71 { V4L2_STD_PAL_B, "PAL-B" },
72 { V4L2_STD_PAL_B1, "PAL-B1" },
73 { V4L2_STD_PAL_G, "PAL-G" },
74 { V4L2_STD_PAL_H, "PAL-H" },
75 { V4L2_STD_PAL_I, "PAL-I" },
76 { V4L2_STD_PAL_DK, "PAL-DK" },
77 { V4L2_STD_PAL_D, "PAL-D" },
78 { V4L2_STD_PAL_D1, "PAL-D1" },
79 { V4L2_STD_PAL_K, "PAL-K" },
80 { V4L2_STD_PAL_M, "PAL-M" },
81 { V4L2_STD_PAL_N, "PAL-N" },
82 { V4L2_STD_PAL_Nc, "PAL-Nc" },
83 { V4L2_STD_PAL_60, "PAL-60" },
84 { V4L2_STD_SECAM, "SECAM" },
85 { V4L2_STD_SECAM_B, "SECAM-B" },
86 { V4L2_STD_SECAM_G, "SECAM-G" },
87 { V4L2_STD_SECAM_H, "SECAM-H" },
88 { V4L2_STD_SECAM_DK, "SECAM-DK" },
89 { V4L2_STD_SECAM_D, "SECAM-D" },
90 { V4L2_STD_SECAM_K, "SECAM-K" },
91 { V4L2_STD_SECAM_K1, "SECAM-K1" },
92 { V4L2_STD_SECAM_L, "SECAM-L" },
93 { V4L2_STD_SECAM_LC, "SECAM-Lc" },
94 { 0, "Unknown" }
95};
96
97/* video4linux standard ID conversion to standard name
98 */
99const char *v4l2_norm_to_name(v4l2_std_id id)
100{
101 u32 myid = id;
102 int i;
103
104 /* HACK: ppc32 architecture doesn't have __ucmpdi2 function to handle
105 64 bit comparations. So, on that architecture, with some gcc
106 variants, compilation fails. Currently, the max value is 30bit wide.
107 */
108 BUG_ON(myid != id);
109
110 for (i = 0; standards[i].std; i++)
111 if (myid == standards[i].std)
112 break;
113 return standards[i].descr;
114}
115EXPORT_SYMBOL(v4l2_norm_to_name);
116
Trent Piepho51f0b8d52009-03-04 01:21:02 -0300117/* Returns frame period for the given standard */
118void v4l2_video_std_frame_period(int id, struct v4l2_fract *frameperiod)
119{
120 if (id & V4L2_STD_525_60) {
121 frameperiod->numerator = 1001;
122 frameperiod->denominator = 30000;
123 } else {
124 frameperiod->numerator = 1;
125 frameperiod->denominator = 25;
126 }
127}
128EXPORT_SYMBOL(v4l2_video_std_frame_period);
129
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300130/* Fill in the fields of a v4l2_standard structure according to the
131 'id' and 'transmission' parameters. Returns negative on error. */
132int v4l2_video_std_construct(struct v4l2_standard *vs,
133 int id, const char *name)
134{
Trent Piepho51f0b8d52009-03-04 01:21:02 -0300135 vs->id = id;
136 v4l2_video_std_frame_period(id, &vs->frameperiod);
137 vs->framelines = (id & V4L2_STD_525_60) ? 525 : 625;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300138 strlcpy(vs->name, name, sizeof(vs->name));
139 return 0;
140}
141EXPORT_SYMBOL(v4l2_video_std_construct);
142
143/* ----------------------------------------------------------------- */
144/* some arrays for pretty-printing debug messages of enum types */
145
146const char *v4l2_field_names[] = {
147 [V4L2_FIELD_ANY] = "any",
148 [V4L2_FIELD_NONE] = "none",
149 [V4L2_FIELD_TOP] = "top",
150 [V4L2_FIELD_BOTTOM] = "bottom",
151 [V4L2_FIELD_INTERLACED] = "interlaced",
152 [V4L2_FIELD_SEQ_TB] = "seq-tb",
153 [V4L2_FIELD_SEQ_BT] = "seq-bt",
154 [V4L2_FIELD_ALTERNATE] = "alternate",
155 [V4L2_FIELD_INTERLACED_TB] = "interlaced-tb",
156 [V4L2_FIELD_INTERLACED_BT] = "interlaced-bt",
157};
158EXPORT_SYMBOL(v4l2_field_names);
159
160const char *v4l2_type_names[] = {
161 [V4L2_BUF_TYPE_VIDEO_CAPTURE] = "vid-cap",
162 [V4L2_BUF_TYPE_VIDEO_OVERLAY] = "vid-overlay",
163 [V4L2_BUF_TYPE_VIDEO_OUTPUT] = "vid-out",
164 [V4L2_BUF_TYPE_VBI_CAPTURE] = "vbi-cap",
165 [V4L2_BUF_TYPE_VBI_OUTPUT] = "vbi-out",
166 [V4L2_BUF_TYPE_SLICED_VBI_CAPTURE] = "sliced-vbi-cap",
167 [V4L2_BUF_TYPE_SLICED_VBI_OUTPUT] = "sliced-vbi-out",
168 [V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY] = "vid-out-overlay",
Pawel Osciakf8f39142010-07-29 14:44:25 -0300169 [V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE] = "vid-cap-mplane",
170 [V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE] = "vid-out-mplane",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300171};
172EXPORT_SYMBOL(v4l2_type_names);
173
174static const char *v4l2_memory_names[] = {
175 [V4L2_MEMORY_MMAP] = "mmap",
176 [V4L2_MEMORY_USERPTR] = "userptr",
177 [V4L2_MEMORY_OVERLAY] = "overlay",
178};
179
180#define prt_names(a, arr) ((((a) >= 0) && ((a) < ARRAY_SIZE(arr))) ? \
181 arr[a] : "unknown")
182
183/* ------------------------------------------------------------------ */
184/* debug help functions */
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300185static const char *v4l2_ioctls[] = {
186 [_IOC_NR(VIDIOC_QUERYCAP)] = "VIDIOC_QUERYCAP",
187 [_IOC_NR(VIDIOC_RESERVED)] = "VIDIOC_RESERVED",
188 [_IOC_NR(VIDIOC_ENUM_FMT)] = "VIDIOC_ENUM_FMT",
189 [_IOC_NR(VIDIOC_G_FMT)] = "VIDIOC_G_FMT",
190 [_IOC_NR(VIDIOC_S_FMT)] = "VIDIOC_S_FMT",
191 [_IOC_NR(VIDIOC_REQBUFS)] = "VIDIOC_REQBUFS",
192 [_IOC_NR(VIDIOC_QUERYBUF)] = "VIDIOC_QUERYBUF",
193 [_IOC_NR(VIDIOC_G_FBUF)] = "VIDIOC_G_FBUF",
194 [_IOC_NR(VIDIOC_S_FBUF)] = "VIDIOC_S_FBUF",
195 [_IOC_NR(VIDIOC_OVERLAY)] = "VIDIOC_OVERLAY",
196 [_IOC_NR(VIDIOC_QBUF)] = "VIDIOC_QBUF",
197 [_IOC_NR(VIDIOC_DQBUF)] = "VIDIOC_DQBUF",
198 [_IOC_NR(VIDIOC_STREAMON)] = "VIDIOC_STREAMON",
199 [_IOC_NR(VIDIOC_STREAMOFF)] = "VIDIOC_STREAMOFF",
200 [_IOC_NR(VIDIOC_G_PARM)] = "VIDIOC_G_PARM",
201 [_IOC_NR(VIDIOC_S_PARM)] = "VIDIOC_S_PARM",
202 [_IOC_NR(VIDIOC_G_STD)] = "VIDIOC_G_STD",
203 [_IOC_NR(VIDIOC_S_STD)] = "VIDIOC_S_STD",
204 [_IOC_NR(VIDIOC_ENUMSTD)] = "VIDIOC_ENUMSTD",
205 [_IOC_NR(VIDIOC_ENUMINPUT)] = "VIDIOC_ENUMINPUT",
206 [_IOC_NR(VIDIOC_G_CTRL)] = "VIDIOC_G_CTRL",
207 [_IOC_NR(VIDIOC_S_CTRL)] = "VIDIOC_S_CTRL",
208 [_IOC_NR(VIDIOC_G_TUNER)] = "VIDIOC_G_TUNER",
209 [_IOC_NR(VIDIOC_S_TUNER)] = "VIDIOC_S_TUNER",
210 [_IOC_NR(VIDIOC_G_AUDIO)] = "VIDIOC_G_AUDIO",
211 [_IOC_NR(VIDIOC_S_AUDIO)] = "VIDIOC_S_AUDIO",
212 [_IOC_NR(VIDIOC_QUERYCTRL)] = "VIDIOC_QUERYCTRL",
213 [_IOC_NR(VIDIOC_QUERYMENU)] = "VIDIOC_QUERYMENU",
214 [_IOC_NR(VIDIOC_G_INPUT)] = "VIDIOC_G_INPUT",
215 [_IOC_NR(VIDIOC_S_INPUT)] = "VIDIOC_S_INPUT",
216 [_IOC_NR(VIDIOC_G_OUTPUT)] = "VIDIOC_G_OUTPUT",
217 [_IOC_NR(VIDIOC_S_OUTPUT)] = "VIDIOC_S_OUTPUT",
218 [_IOC_NR(VIDIOC_ENUMOUTPUT)] = "VIDIOC_ENUMOUTPUT",
219 [_IOC_NR(VIDIOC_G_AUDOUT)] = "VIDIOC_G_AUDOUT",
220 [_IOC_NR(VIDIOC_S_AUDOUT)] = "VIDIOC_S_AUDOUT",
221 [_IOC_NR(VIDIOC_G_MODULATOR)] = "VIDIOC_G_MODULATOR",
222 [_IOC_NR(VIDIOC_S_MODULATOR)] = "VIDIOC_S_MODULATOR",
223 [_IOC_NR(VIDIOC_G_FREQUENCY)] = "VIDIOC_G_FREQUENCY",
224 [_IOC_NR(VIDIOC_S_FREQUENCY)] = "VIDIOC_S_FREQUENCY",
225 [_IOC_NR(VIDIOC_CROPCAP)] = "VIDIOC_CROPCAP",
226 [_IOC_NR(VIDIOC_G_CROP)] = "VIDIOC_G_CROP",
227 [_IOC_NR(VIDIOC_S_CROP)] = "VIDIOC_S_CROP",
228 [_IOC_NR(VIDIOC_G_JPEGCOMP)] = "VIDIOC_G_JPEGCOMP",
229 [_IOC_NR(VIDIOC_S_JPEGCOMP)] = "VIDIOC_S_JPEGCOMP",
230 [_IOC_NR(VIDIOC_QUERYSTD)] = "VIDIOC_QUERYSTD",
231 [_IOC_NR(VIDIOC_TRY_FMT)] = "VIDIOC_TRY_FMT",
232 [_IOC_NR(VIDIOC_ENUMAUDIO)] = "VIDIOC_ENUMAUDIO",
233 [_IOC_NR(VIDIOC_ENUMAUDOUT)] = "VIDIOC_ENUMAUDOUT",
234 [_IOC_NR(VIDIOC_G_PRIORITY)] = "VIDIOC_G_PRIORITY",
235 [_IOC_NR(VIDIOC_S_PRIORITY)] = "VIDIOC_S_PRIORITY",
236 [_IOC_NR(VIDIOC_G_SLICED_VBI_CAP)] = "VIDIOC_G_SLICED_VBI_CAP",
237 [_IOC_NR(VIDIOC_LOG_STATUS)] = "VIDIOC_LOG_STATUS",
238 [_IOC_NR(VIDIOC_G_EXT_CTRLS)] = "VIDIOC_G_EXT_CTRLS",
239 [_IOC_NR(VIDIOC_S_EXT_CTRLS)] = "VIDIOC_S_EXT_CTRLS",
240 [_IOC_NR(VIDIOC_TRY_EXT_CTRLS)] = "VIDIOC_TRY_EXT_CTRLS",
241#if 1
242 [_IOC_NR(VIDIOC_ENUM_FRAMESIZES)] = "VIDIOC_ENUM_FRAMESIZES",
243 [_IOC_NR(VIDIOC_ENUM_FRAMEINTERVALS)] = "VIDIOC_ENUM_FRAMEINTERVALS",
244 [_IOC_NR(VIDIOC_G_ENC_INDEX)] = "VIDIOC_G_ENC_INDEX",
245 [_IOC_NR(VIDIOC_ENCODER_CMD)] = "VIDIOC_ENCODER_CMD",
246 [_IOC_NR(VIDIOC_TRY_ENCODER_CMD)] = "VIDIOC_TRY_ENCODER_CMD",
247
248 [_IOC_NR(VIDIOC_DBG_S_REGISTER)] = "VIDIOC_DBG_S_REGISTER",
249 [_IOC_NR(VIDIOC_DBG_G_REGISTER)] = "VIDIOC_DBG_G_REGISTER",
250
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300251 [_IOC_NR(VIDIOC_DBG_G_CHIP_IDENT)] = "VIDIOC_DBG_G_CHIP_IDENT",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300252 [_IOC_NR(VIDIOC_S_HW_FREQ_SEEK)] = "VIDIOC_S_HW_FREQ_SEEK",
253#endif
Muralidharan Karicherib6456c02009-11-19 12:00:31 -0300254 [_IOC_NR(VIDIOC_ENUM_DV_PRESETS)] = "VIDIOC_ENUM_DV_PRESETS",
255 [_IOC_NR(VIDIOC_S_DV_PRESET)] = "VIDIOC_S_DV_PRESET",
256 [_IOC_NR(VIDIOC_G_DV_PRESET)] = "VIDIOC_G_DV_PRESET",
257 [_IOC_NR(VIDIOC_QUERY_DV_PRESET)] = "VIDIOC_QUERY_DV_PRESET",
258 [_IOC_NR(VIDIOC_S_DV_TIMINGS)] = "VIDIOC_S_DV_TIMINGS",
259 [_IOC_NR(VIDIOC_G_DV_TIMINGS)] = "VIDIOC_G_DV_TIMINGS",
Sakari Ailusfda10212010-02-24 19:19:05 -0300260 [_IOC_NR(VIDIOC_DQEVENT)] = "VIDIOC_DQEVENT",
261 [_IOC_NR(VIDIOC_SUBSCRIBE_EVENT)] = "VIDIOC_SUBSCRIBE_EVENT",
262 [_IOC_NR(VIDIOC_UNSUBSCRIBE_EVENT)] = "VIDIOC_UNSUBSCRIBE_EVENT",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300263};
264#define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls)
265
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300266/* Common ioctl debug function. This function can be used by
267 external ioctl messages as well as internal V4L ioctl */
268void v4l_printk_ioctl(unsigned int cmd)
269{
270 char *dir, *type;
271
272 switch (_IOC_TYPE(cmd)) {
273 case 'd':
Hans Verkuil78a3b4d2009-04-01 03:41:09 -0300274 type = "v4l2_int";
275 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300276 case 'V':
277 if (_IOC_NR(cmd) >= V4L2_IOCTLS) {
278 type = "v4l2";
279 break;
280 }
281 printk("%s", v4l2_ioctls[_IOC_NR(cmd)]);
282 return;
283 default:
284 type = "unknown";
285 }
286
287 switch (_IOC_DIR(cmd)) {
288 case _IOC_NONE: dir = "--"; break;
289 case _IOC_READ: dir = "r-"; break;
290 case _IOC_WRITE: dir = "-w"; break;
291 case _IOC_READ | _IOC_WRITE: dir = "rw"; break;
292 default: dir = "*ERR*"; break;
293 }
294 printk("%s ioctl '%c', dir=%s, #%d (0x%08x)",
295 type, _IOC_TYPE(cmd), dir, _IOC_NR(cmd), cmd);
296}
297EXPORT_SYMBOL(v4l_printk_ioctl);
298
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300299static void dbgbuf(unsigned int cmd, struct video_device *vfd,
300 struct v4l2_buffer *p)
301{
302 struct v4l2_timecode *tc = &p->timecode;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300303 struct v4l2_plane *plane;
304 int i;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300305
306 dbgarg(cmd, "%02ld:%02d:%02d.%08ld index=%d, type=%s, "
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300307 "flags=0x%08d, field=%0d, sequence=%d, memory=%s\n",
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300308 p->timestamp.tv_sec / 3600,
309 (int)(p->timestamp.tv_sec / 60) % 60,
310 (int)(p->timestamp.tv_sec % 60),
Alexander Beregalovb0459792008-09-03 16:47:38 -0300311 (long)p->timestamp.tv_usec,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300312 p->index,
313 prt_names(p->type, v4l2_type_names),
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300314 p->flags, p->field, p->sequence,
315 prt_names(p->memory, v4l2_memory_names));
316
317 if (V4L2_TYPE_IS_MULTIPLANAR(p->type) && p->m.planes) {
318 for (i = 0; i < p->length; ++i) {
319 plane = &p->m.planes[i];
320 dbgarg2("plane %d: bytesused=%d, data_offset=0x%08x "
321 "offset/userptr=0x%08lx, length=%d\n",
322 i, plane->bytesused, plane->data_offset,
323 plane->m.userptr, plane->length);
324 }
325 } else {
326 dbgarg2("bytesused=%d, offset/userptr=0x%08lx, length=%d\n",
327 p->bytesused, p->m.userptr, p->length);
328 }
329
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300330 dbgarg2("timecode=%02d:%02d:%02d type=%d, "
331 "flags=0x%08d, frames=%d, userbits=0x%08x\n",
332 tc->hours, tc->minutes, tc->seconds,
333 tc->type, tc->flags, tc->frames, *(__u32 *)tc->userbits);
334}
335
336static inline void dbgrect(struct video_device *vfd, char *s,
337 struct v4l2_rect *r)
338{
339 dbgarg2("%sRect start at %dx%d, size=%dx%d\n", s, r->left, r->top,
340 r->width, r->height);
341};
342
343static inline void v4l_print_pix_fmt(struct video_device *vfd,
344 struct v4l2_pix_format *fmt)
345{
346 dbgarg2("width=%d, height=%d, format=%c%c%c%c, field=%s, "
347 "bytesperline=%d sizeimage=%d, colorspace=%d\n",
348 fmt->width, fmt->height,
349 (fmt->pixelformat & 0xff),
350 (fmt->pixelformat >> 8) & 0xff,
351 (fmt->pixelformat >> 16) & 0xff,
352 (fmt->pixelformat >> 24) & 0xff,
353 prt_names(fmt->field, v4l2_field_names),
354 fmt->bytesperline, fmt->sizeimage, fmt->colorspace);
355};
356
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300357static inline void v4l_print_pix_fmt_mplane(struct video_device *vfd,
358 struct v4l2_pix_format_mplane *fmt)
359{
360 int i;
361
362 dbgarg2("width=%d, height=%d, format=%c%c%c%c, field=%s, "
363 "colorspace=%d, num_planes=%d\n",
364 fmt->width, fmt->height,
365 (fmt->pixelformat & 0xff),
366 (fmt->pixelformat >> 8) & 0xff,
367 (fmt->pixelformat >> 16) & 0xff,
368 (fmt->pixelformat >> 24) & 0xff,
369 prt_names(fmt->field, v4l2_field_names),
370 fmt->colorspace, fmt->num_planes);
371
372 for (i = 0; i < fmt->num_planes; ++i)
373 dbgarg2("plane %d: bytesperline=%d sizeimage=%d\n", i,
374 fmt->plane_fmt[i].bytesperline,
375 fmt->plane_fmt[i].sizeimage);
376}
377
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300378static inline void v4l_print_ext_ctrls(unsigned int cmd,
379 struct video_device *vfd, struct v4l2_ext_controls *c, int show_vals)
380{
381 __u32 i;
382
383 if (!(vfd->debug & V4L2_DEBUG_IOCTL_ARG))
384 return;
385 dbgarg(cmd, "");
386 printk(KERN_CONT "class=0x%x", c->ctrl_class);
387 for (i = 0; i < c->count; i++) {
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300388 if (show_vals && !c->controls[i].size)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300389 printk(KERN_CONT " id/val=0x%x/0x%x",
390 c->controls[i].id, c->controls[i].value);
391 else
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300392 printk(KERN_CONT " id=0x%x,size=%u",
393 c->controls[i].id, c->controls[i].size);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300394 }
395 printk(KERN_CONT "\n");
396};
397
398static inline int check_ext_ctrls(struct v4l2_ext_controls *c, int allow_priv)
399{
400 __u32 i;
401
402 /* zero the reserved fields */
403 c->reserved[0] = c->reserved[1] = 0;
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300404 for (i = 0; i < c->count; i++)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300405 c->controls[i].reserved2[0] = 0;
Hans Verkuil6b5a9492009-08-11 18:47:18 -0300406
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300407 /* V4L2_CID_PRIVATE_BASE cannot be used as control class
408 when using extended controls.
409 Only when passed in through VIDIOC_G_CTRL and VIDIOC_S_CTRL
410 is it allowed for backwards compatibility.
411 */
412 if (!allow_priv && c->ctrl_class == V4L2_CID_PRIVATE_BASE)
413 return 0;
414 /* Check that all controls are from the same control class. */
415 for (i = 0; i < c->count; i++) {
416 if (V4L2_CTRL_ID2CLASS(c->controls[i].id) != c->ctrl_class) {
417 c->error_idx = i;
418 return 0;
419 }
420 }
421 return 1;
422}
423
Hans Verkuila3998102008-07-21 02:57:38 -0300424static int check_fmt(const struct v4l2_ioctl_ops *ops, enum v4l2_buf_type type)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300425{
Hans Verkuila3998102008-07-21 02:57:38 -0300426 if (ops == NULL)
427 return -EINVAL;
428
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300429 switch (type) {
430 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300431 if (ops->vidioc_g_fmt_vid_cap ||
432 ops->vidioc_g_fmt_vid_cap_mplane)
433 return 0;
434 break;
435 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
436 if (ops->vidioc_g_fmt_vid_cap_mplane)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300437 return 0;
438 break;
439 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho1175d612009-04-30 21:03:34 -0300440 if (ops->vidioc_g_fmt_vid_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300441 return 0;
442 break;
443 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300444 if (ops->vidioc_g_fmt_vid_out ||
445 ops->vidioc_g_fmt_vid_out_mplane)
446 return 0;
447 break;
448 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
449 if (ops->vidioc_g_fmt_vid_out_mplane)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300450 return 0;
451 break;
452 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho1175d612009-04-30 21:03:34 -0300453 if (ops->vidioc_g_fmt_vid_out_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300454 return 0;
455 break;
456 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho1175d612009-04-30 21:03:34 -0300457 if (ops->vidioc_g_fmt_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300458 return 0;
459 break;
460 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho1175d612009-04-30 21:03:34 -0300461 if (ops->vidioc_g_fmt_vbi_out)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300462 return 0;
463 break;
464 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho1175d612009-04-30 21:03:34 -0300465 if (ops->vidioc_g_fmt_sliced_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300466 return 0;
467 break;
468 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho1175d612009-04-30 21:03:34 -0300469 if (ops->vidioc_g_fmt_sliced_vbi_out)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300470 return 0;
471 break;
472 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho1175d612009-04-30 21:03:34 -0300473 if (ops->vidioc_g_fmt_type_private)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300474 return 0;
475 break;
476 }
477 return -EINVAL;
478}
479
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300480/**
481 * fmt_sp_to_mp() - Convert a single-plane format to its multi-planar 1-plane
482 * equivalent
483 */
484static int fmt_sp_to_mp(const struct v4l2_format *f_sp,
485 struct v4l2_format *f_mp)
486{
487 struct v4l2_pix_format_mplane *pix_mp = &f_mp->fmt.pix_mp;
488 const struct v4l2_pix_format *pix = &f_sp->fmt.pix;
489
490 if (f_sp->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
491 f_mp->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
492 else if (f_sp->type == V4L2_BUF_TYPE_VIDEO_OUTPUT)
493 f_mp->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
494 else
495 return -EINVAL;
496
497 pix_mp->width = pix->width;
498 pix_mp->height = pix->height;
499 pix_mp->pixelformat = pix->pixelformat;
500 pix_mp->field = pix->field;
501 pix_mp->colorspace = pix->colorspace;
502 pix_mp->num_planes = 1;
503 pix_mp->plane_fmt[0].sizeimage = pix->sizeimage;
504 pix_mp->plane_fmt[0].bytesperline = pix->bytesperline;
505
506 return 0;
507}
508
509/**
510 * fmt_mp_to_sp() - Convert a multi-planar 1-plane format to its single-planar
511 * equivalent
512 */
513static int fmt_mp_to_sp(const struct v4l2_format *f_mp,
514 struct v4l2_format *f_sp)
515{
516 const struct v4l2_pix_format_mplane *pix_mp = &f_mp->fmt.pix_mp;
517 struct v4l2_pix_format *pix = &f_sp->fmt.pix;
518
519 if (f_mp->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE)
520 f_sp->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
521 else if (f_mp->type == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
522 f_sp->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
523 else
524 return -EINVAL;
525
526 pix->width = pix_mp->width;
527 pix->height = pix_mp->height;
528 pix->pixelformat = pix_mp->pixelformat;
529 pix->field = pix_mp->field;
530 pix->colorspace = pix_mp->colorspace;
531 pix->sizeimage = pix_mp->plane_fmt[0].sizeimage;
532 pix->bytesperline = pix_mp->plane_fmt[0].bytesperline;
533
534 return 0;
535}
536
Hans Verkuil069b7472008-12-30 07:04:34 -0300537static long __video_do_ioctl(struct file *file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300538 unsigned int cmd, void *arg)
539{
540 struct video_device *vfd = video_devdata(file);
Hans Verkuila3998102008-07-21 02:57:38 -0300541 const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops;
Hans Verkuild5fbf322008-10-18 13:39:53 -0300542 void *fh = file->private_data;
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300543 struct v4l2_fh *vfh = NULL;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300544 struct v4l2_format f_copy;
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300545 int use_fh_prio = 0;
Hans Verkuil069b7472008-12-30 07:04:34 -0300546 long ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300547
Hans Verkuil6a717882010-04-06 15:56:08 -0300548 if (ops == NULL) {
549 printk(KERN_WARNING "videodev: \"%s\" has no ioctl_ops.\n",
550 vfd->name);
551 return -EINVAL;
552 }
553
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300554 if ((vfd->debug & V4L2_DEBUG_IOCTL) &&
555 !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) {
556 v4l_print_ioctl(vfd->name, cmd);
557 printk(KERN_CONT "\n");
558 }
559
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300560 if (test_bit(V4L2_FL_USES_V4L2_FH, &vfd->flags)) {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300561 vfh = file->private_data;
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300562 use_fh_prio = test_bit(V4L2_FL_USE_FH_PRIO, &vfd->flags);
563 }
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300564
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300565 if (use_fh_prio) {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300566 switch (cmd) {
567 case VIDIOC_S_CTRL:
568 case VIDIOC_S_STD:
569 case VIDIOC_S_INPUT:
570 case VIDIOC_S_OUTPUT:
571 case VIDIOC_S_TUNER:
572 case VIDIOC_S_FREQUENCY:
573 case VIDIOC_S_FMT:
574 case VIDIOC_S_CROP:
575 case VIDIOC_S_AUDIO:
576 case VIDIOC_S_AUDOUT:
577 case VIDIOC_S_EXT_CTRLS:
578 case VIDIOC_S_FBUF:
579 case VIDIOC_S_PRIORITY:
580 case VIDIOC_S_DV_PRESET:
581 case VIDIOC_S_DV_TIMINGS:
582 case VIDIOC_S_JPEGCOMP:
583 case VIDIOC_S_MODULATOR:
584 case VIDIOC_S_PARM:
585 case VIDIOC_S_HW_FREQ_SEEK:
586 case VIDIOC_ENCODER_CMD:
587 case VIDIOC_OVERLAY:
588 case VIDIOC_REQBUFS:
589 case VIDIOC_STREAMON:
590 case VIDIOC_STREAMOFF:
591 ret = v4l2_prio_check(vfd->prio, vfh->prio);
592 if (ret)
593 goto exit_prio;
594 ret = -EINVAL;
595 break;
596 }
597 }
598
Hans Verkuil6a717882010-04-06 15:56:08 -0300599 switch (cmd) {
Hans Verkuila3998102008-07-21 02:57:38 -0300600
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300601 /* --- capabilities ------------------------------------------ */
602 case VIDIOC_QUERYCAP:
603 {
604 struct v4l2_capability *cap = (struct v4l2_capability *)arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300605
Hans Verkuila3998102008-07-21 02:57:38 -0300606 if (!ops->vidioc_querycap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300607 break;
608
Mauro Carvalho Chehabae6db512011-06-24 13:14:14 -0300609 cap->version = LINUX_VERSION_CODE;
Hans Verkuila3998102008-07-21 02:57:38 -0300610 ret = ops->vidioc_querycap(file, fh, cap);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300611 if (!ret)
612 dbgarg(cmd, "driver=%s, card=%s, bus=%s, "
613 "version=0x%08x, "
614 "capabilities=0x%08x\n",
615 cap->driver, cap->card, cap->bus_info,
616 cap->version,
617 cap->capabilities);
618 break;
619 }
620
621 /* --- priority ------------------------------------------ */
622 case VIDIOC_G_PRIORITY:
623 {
624 enum v4l2_priority *p = arg;
625
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300626 if (ops->vidioc_g_priority) {
627 ret = ops->vidioc_g_priority(file, fh, p);
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300628 } else if (use_fh_prio) {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300629 *p = v4l2_prio_max(&vfd->v4l2_dev->prio);
630 ret = 0;
631 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300632 if (!ret)
633 dbgarg(cmd, "priority is %d\n", *p);
634 break;
635 }
636 case VIDIOC_S_PRIORITY:
637 {
638 enum v4l2_priority *p = arg;
639
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300640 if (!ops->vidioc_s_priority && !use_fh_prio)
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300641 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300642 dbgarg(cmd, "setting priority to %d\n", *p);
Hans Verkuil99cd47bc2011-03-11 19:00:56 -0300643 if (ops->vidioc_s_priority)
644 ret = ops->vidioc_s_priority(file, fh, *p);
645 else
646 ret = v4l2_prio_change(&vfd->v4l2_dev->prio, &vfh->prio, *p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300647 break;
648 }
649
650 /* --- capture ioctls ---------------------------------------- */
651 case VIDIOC_ENUM_FMT:
652 {
653 struct v4l2_fmtdesc *f = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300654
Trent Piepho19c96e42009-03-04 01:21:02 -0300655 switch (f->type) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300656 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Hans Verkuila3998102008-07-21 02:57:38 -0300657 if (ops->vidioc_enum_fmt_vid_cap)
658 ret = ops->vidioc_enum_fmt_vid_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300659 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300660 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
661 if (ops->vidioc_enum_fmt_vid_cap_mplane)
662 ret = ops->vidioc_enum_fmt_vid_cap_mplane(file,
663 fh, f);
664 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300665 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Hans Verkuila3998102008-07-21 02:57:38 -0300666 if (ops->vidioc_enum_fmt_vid_overlay)
667 ret = ops->vidioc_enum_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300668 fh, f);
669 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300670 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Hans Verkuila3998102008-07-21 02:57:38 -0300671 if (ops->vidioc_enum_fmt_vid_out)
672 ret = ops->vidioc_enum_fmt_vid_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300673 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300674 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
675 if (ops->vidioc_enum_fmt_vid_out_mplane)
676 ret = ops->vidioc_enum_fmt_vid_out_mplane(file,
677 fh, f);
678 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300679 case V4L2_BUF_TYPE_PRIVATE:
Hans Verkuila3998102008-07-21 02:57:38 -0300680 if (ops->vidioc_enum_fmt_type_private)
681 ret = ops->vidioc_enum_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300682 fh, f);
683 break;
684 default:
685 break;
686 }
687 if (!ret)
688 dbgarg(cmd, "index=%d, type=%d, flags=%d, "
689 "pixelformat=%c%c%c%c, description='%s'\n",
690 f->index, f->type, f->flags,
691 (f->pixelformat & 0xff),
692 (f->pixelformat >> 8) & 0xff,
693 (f->pixelformat >> 16) & 0xff,
694 (f->pixelformat >> 24) & 0xff,
695 f->description);
696 break;
697 }
698 case VIDIOC_G_FMT:
699 {
700 struct v4l2_format *f = (struct v4l2_format *)arg;
701
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300702 /* FIXME: Should be one dump per type */
703 dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names));
704
705 switch (f->type) {
706 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300707 if (ops->vidioc_g_fmt_vid_cap) {
Hans Verkuila3998102008-07-21 02:57:38 -0300708 ret = ops->vidioc_g_fmt_vid_cap(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300709 } else if (ops->vidioc_g_fmt_vid_cap_mplane) {
710 if (fmt_sp_to_mp(f, &f_copy))
711 break;
712 ret = ops->vidioc_g_fmt_vid_cap_mplane(file, fh,
713 &f_copy);
714 if (ret)
715 break;
716
717 /* Driver is currently in multi-planar format,
718 * we can't return it in single-planar API*/
719 if (f_copy.fmt.pix_mp.num_planes > 1) {
720 ret = -EBUSY;
721 break;
722 }
723
724 ret = fmt_mp_to_sp(&f_copy, f);
725 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300726 if (!ret)
727 v4l_print_pix_fmt(vfd, &f->fmt.pix);
728 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300729 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
730 if (ops->vidioc_g_fmt_vid_cap_mplane) {
731 ret = ops->vidioc_g_fmt_vid_cap_mplane(file,
732 fh, f);
733 } else if (ops->vidioc_g_fmt_vid_cap) {
734 if (fmt_mp_to_sp(f, &f_copy))
735 break;
736 ret = ops->vidioc_g_fmt_vid_cap(file,
737 fh, &f_copy);
738 if (ret)
739 break;
740
741 ret = fmt_sp_to_mp(&f_copy, f);
742 }
743 if (!ret)
744 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
745 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300746 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Hans Verkuila3998102008-07-21 02:57:38 -0300747 if (ops->vidioc_g_fmt_vid_overlay)
748 ret = ops->vidioc_g_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300749 fh, f);
750 break;
751 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300752 if (ops->vidioc_g_fmt_vid_out) {
Hans Verkuila3998102008-07-21 02:57:38 -0300753 ret = ops->vidioc_g_fmt_vid_out(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300754 } else if (ops->vidioc_g_fmt_vid_out_mplane) {
755 if (fmt_sp_to_mp(f, &f_copy))
756 break;
757 ret = ops->vidioc_g_fmt_vid_out_mplane(file, fh,
758 &f_copy);
759 if (ret)
760 break;
761
762 /* Driver is currently in multi-planar format,
763 * we can't return it in single-planar API*/
764 if (f_copy.fmt.pix_mp.num_planes > 1) {
765 ret = -EBUSY;
766 break;
767 }
768
769 ret = fmt_mp_to_sp(&f_copy, f);
770 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300771 if (!ret)
772 v4l_print_pix_fmt(vfd, &f->fmt.pix);
773 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300774 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
775 if (ops->vidioc_g_fmt_vid_out_mplane) {
776 ret = ops->vidioc_g_fmt_vid_out_mplane(file,
777 fh, f);
778 } else if (ops->vidioc_g_fmt_vid_out) {
779 if (fmt_mp_to_sp(f, &f_copy))
780 break;
781 ret = ops->vidioc_g_fmt_vid_out(file,
782 fh, &f_copy);
783 if (ret)
784 break;
785
786 ret = fmt_sp_to_mp(&f_copy, f);
787 }
788 if (!ret)
789 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
790 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300791 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Hans Verkuila3998102008-07-21 02:57:38 -0300792 if (ops->vidioc_g_fmt_vid_out_overlay)
793 ret = ops->vidioc_g_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300794 fh, f);
795 break;
796 case V4L2_BUF_TYPE_VBI_CAPTURE:
Hans Verkuila3998102008-07-21 02:57:38 -0300797 if (ops->vidioc_g_fmt_vbi_cap)
798 ret = ops->vidioc_g_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300799 break;
800 case V4L2_BUF_TYPE_VBI_OUTPUT:
Hans Verkuila3998102008-07-21 02:57:38 -0300801 if (ops->vidioc_g_fmt_vbi_out)
802 ret = ops->vidioc_g_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300803 break;
804 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Hans Verkuila3998102008-07-21 02:57:38 -0300805 if (ops->vidioc_g_fmt_sliced_vbi_cap)
806 ret = ops->vidioc_g_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300807 fh, f);
808 break;
809 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Hans Verkuila3998102008-07-21 02:57:38 -0300810 if (ops->vidioc_g_fmt_sliced_vbi_out)
811 ret = ops->vidioc_g_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300812 fh, f);
813 break;
814 case V4L2_BUF_TYPE_PRIVATE:
Hans Verkuila3998102008-07-21 02:57:38 -0300815 if (ops->vidioc_g_fmt_type_private)
816 ret = ops->vidioc_g_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300817 fh, f);
818 break;
819 }
820
821 break;
822 }
823 case VIDIOC_S_FMT:
824 {
825 struct v4l2_format *f = (struct v4l2_format *)arg;
826
827 /* FIXME: Should be one dump per type */
828 dbgarg(cmd, "type=%s\n", prt_names(f->type, v4l2_type_names));
829
830 switch (f->type) {
831 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300832 CLEAR_AFTER_FIELD(f, fmt.pix);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300833 v4l_print_pix_fmt(vfd, &f->fmt.pix);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300834 if (ops->vidioc_s_fmt_vid_cap) {
Hans Verkuila3998102008-07-21 02:57:38 -0300835 ret = ops->vidioc_s_fmt_vid_cap(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300836 } else if (ops->vidioc_s_fmt_vid_cap_mplane) {
837 if (fmt_sp_to_mp(f, &f_copy))
838 break;
839 ret = ops->vidioc_s_fmt_vid_cap_mplane(file, fh,
840 &f_copy);
841 if (ret)
842 break;
843
844 if (f_copy.fmt.pix_mp.num_planes > 1) {
845 /* Drivers shouldn't adjust from 1-plane
846 * to more than 1-plane formats */
847 ret = -EBUSY;
848 WARN_ON(1);
849 break;
850 }
851
852 ret = fmt_mp_to_sp(&f_copy, f);
853 }
854 break;
855 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
856 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
857 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
858 if (ops->vidioc_s_fmt_vid_cap_mplane) {
859 ret = ops->vidioc_s_fmt_vid_cap_mplane(file,
860 fh, f);
861 } else if (ops->vidioc_s_fmt_vid_cap &&
862 f->fmt.pix_mp.num_planes == 1) {
863 if (fmt_mp_to_sp(f, &f_copy))
864 break;
865 ret = ops->vidioc_s_fmt_vid_cap(file,
866 fh, &f_copy);
867 if (ret)
868 break;
869
870 ret = fmt_sp_to_mp(&f_copy, f);
871 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300872 break;
873 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300874 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -0300875 if (ops->vidioc_s_fmt_vid_overlay)
876 ret = ops->vidioc_s_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300877 fh, f);
878 break;
879 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300880 CLEAR_AFTER_FIELD(f, fmt.pix);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300881 v4l_print_pix_fmt(vfd, &f->fmt.pix);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300882 if (ops->vidioc_s_fmt_vid_out) {
Hans Verkuila3998102008-07-21 02:57:38 -0300883 ret = ops->vidioc_s_fmt_vid_out(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300884 } else if (ops->vidioc_s_fmt_vid_out_mplane) {
885 if (fmt_sp_to_mp(f, &f_copy))
886 break;
887 ret = ops->vidioc_s_fmt_vid_out_mplane(file, fh,
888 &f_copy);
889 if (ret)
890 break;
891
892 if (f_copy.fmt.pix_mp.num_planes > 1) {
893 /* Drivers shouldn't adjust from 1-plane
894 * to more than 1-plane formats */
895 ret = -EBUSY;
896 WARN_ON(1);
897 break;
898 }
899
900 ret = fmt_mp_to_sp(&f_copy, f);
901 }
902 break;
903 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
904 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
905 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
906 if (ops->vidioc_s_fmt_vid_out_mplane) {
907 ret = ops->vidioc_s_fmt_vid_out_mplane(file,
908 fh, f);
909 } else if (ops->vidioc_s_fmt_vid_out &&
910 f->fmt.pix_mp.num_planes == 1) {
911 if (fmt_mp_to_sp(f, &f_copy))
912 break;
913 ret = ops->vidioc_s_fmt_vid_out(file,
914 fh, &f_copy);
915 if (ret)
916 break;
917
918 ret = fmt_mp_to_sp(&f_copy, f);
919 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300920 break;
921 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300922 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -0300923 if (ops->vidioc_s_fmt_vid_out_overlay)
924 ret = ops->vidioc_s_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300925 fh, f);
926 break;
927 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300928 CLEAR_AFTER_FIELD(f, fmt.vbi);
Hans Verkuila3998102008-07-21 02:57:38 -0300929 if (ops->vidioc_s_fmt_vbi_cap)
930 ret = ops->vidioc_s_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300931 break;
932 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300933 CLEAR_AFTER_FIELD(f, fmt.vbi);
Hans Verkuila3998102008-07-21 02:57:38 -0300934 if (ops->vidioc_s_fmt_vbi_out)
935 ret = ops->vidioc_s_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300936 break;
937 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300938 CLEAR_AFTER_FIELD(f, fmt.sliced);
Hans Verkuila3998102008-07-21 02:57:38 -0300939 if (ops->vidioc_s_fmt_sliced_vbi_cap)
940 ret = ops->vidioc_s_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300941 fh, f);
942 break;
943 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300944 CLEAR_AFTER_FIELD(f, fmt.sliced);
Hans Verkuila3998102008-07-21 02:57:38 -0300945 if (ops->vidioc_s_fmt_sliced_vbi_out)
946 ret = ops->vidioc_s_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300947 fh, f);
948 break;
949 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300950 /* CLEAR_AFTER_FIELD(f, fmt.raw_data); <- does nothing */
Hans Verkuila3998102008-07-21 02:57:38 -0300951 if (ops->vidioc_s_fmt_type_private)
952 ret = ops->vidioc_s_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300953 fh, f);
954 break;
955 }
956 break;
957 }
958 case VIDIOC_TRY_FMT:
959 {
960 struct v4l2_format *f = (struct v4l2_format *)arg;
961
962 /* FIXME: Should be one dump per type */
963 dbgarg(cmd, "type=%s\n", prt_names(f->type,
964 v4l2_type_names));
965 switch (f->type) {
966 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -0300967 CLEAR_AFTER_FIELD(f, fmt.pix);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300968 if (ops->vidioc_try_fmt_vid_cap) {
Hans Verkuila3998102008-07-21 02:57:38 -0300969 ret = ops->vidioc_try_fmt_vid_cap(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300970 } else if (ops->vidioc_try_fmt_vid_cap_mplane) {
971 if (fmt_sp_to_mp(f, &f_copy))
972 break;
973 ret = ops->vidioc_try_fmt_vid_cap_mplane(file,
974 fh, &f_copy);
975 if (ret)
976 break;
977
978 if (f_copy.fmt.pix_mp.num_planes > 1) {
979 /* Drivers shouldn't adjust from 1-plane
980 * to more than 1-plane formats */
981 ret = -EBUSY;
982 WARN_ON(1);
983 break;
984 }
985 ret = fmt_mp_to_sp(&f_copy, f);
986 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -0300987 if (!ret)
988 v4l_print_pix_fmt(vfd, &f->fmt.pix);
989 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -0300990 case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
991 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
992 if (ops->vidioc_try_fmt_vid_cap_mplane) {
993 ret = ops->vidioc_try_fmt_vid_cap_mplane(file,
994 fh, f);
995 } else if (ops->vidioc_try_fmt_vid_cap &&
996 f->fmt.pix_mp.num_planes == 1) {
997 if (fmt_mp_to_sp(f, &f_copy))
998 break;
999 ret = ops->vidioc_try_fmt_vid_cap(file,
1000 fh, &f_copy);
1001 if (ret)
1002 break;
1003
1004 ret = fmt_sp_to_mp(&f_copy, f);
1005 }
1006 if (!ret)
1007 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
1008 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001009 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001010 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -03001011 if (ops->vidioc_try_fmt_vid_overlay)
1012 ret = ops->vidioc_try_fmt_vid_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001013 fh, f);
1014 break;
1015 case V4L2_BUF_TYPE_VIDEO_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001016 CLEAR_AFTER_FIELD(f, fmt.pix);
Pawel Osciakd14e6d72010-12-23 04:15:27 -03001017 if (ops->vidioc_try_fmt_vid_out) {
Hans Verkuila3998102008-07-21 02:57:38 -03001018 ret = ops->vidioc_try_fmt_vid_out(file, fh, f);
Pawel Osciakd14e6d72010-12-23 04:15:27 -03001019 } else if (ops->vidioc_try_fmt_vid_out_mplane) {
1020 if (fmt_sp_to_mp(f, &f_copy))
1021 break;
1022 ret = ops->vidioc_try_fmt_vid_out_mplane(file,
1023 fh, &f_copy);
1024 if (ret)
1025 break;
1026
1027 if (f_copy.fmt.pix_mp.num_planes > 1) {
1028 /* Drivers shouldn't adjust from 1-plane
1029 * to more than 1-plane formats */
1030 ret = -EBUSY;
1031 WARN_ON(1);
1032 break;
1033 }
1034 ret = fmt_mp_to_sp(&f_copy, f);
1035 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001036 if (!ret)
1037 v4l_print_pix_fmt(vfd, &f->fmt.pix);
1038 break;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03001039 case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
1040 CLEAR_AFTER_FIELD(f, fmt.pix_mp);
1041 if (ops->vidioc_try_fmt_vid_out_mplane) {
1042 ret = ops->vidioc_try_fmt_vid_out_mplane(file,
1043 fh, f);
1044 } else if (ops->vidioc_try_fmt_vid_out &&
1045 f->fmt.pix_mp.num_planes == 1) {
1046 if (fmt_mp_to_sp(f, &f_copy))
1047 break;
1048 ret = ops->vidioc_try_fmt_vid_out(file,
1049 fh, &f_copy);
1050 if (ret)
1051 break;
1052
1053 ret = fmt_sp_to_mp(&f_copy, f);
1054 }
1055 if (!ret)
1056 v4l_print_pix_fmt_mplane(vfd, &f->fmt.pix_mp);
1057 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001058 case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001059 CLEAR_AFTER_FIELD(f, fmt.win);
Hans Verkuila3998102008-07-21 02:57:38 -03001060 if (ops->vidioc_try_fmt_vid_out_overlay)
1061 ret = ops->vidioc_try_fmt_vid_out_overlay(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001062 fh, f);
1063 break;
1064 case V4L2_BUF_TYPE_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001065 CLEAR_AFTER_FIELD(f, fmt.vbi);
Hans Verkuila3998102008-07-21 02:57:38 -03001066 if (ops->vidioc_try_fmt_vbi_cap)
1067 ret = ops->vidioc_try_fmt_vbi_cap(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001068 break;
1069 case V4L2_BUF_TYPE_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001070 CLEAR_AFTER_FIELD(f, fmt.vbi);
Hans Verkuila3998102008-07-21 02:57:38 -03001071 if (ops->vidioc_try_fmt_vbi_out)
1072 ret = ops->vidioc_try_fmt_vbi_out(file, fh, f);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001073 break;
1074 case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001075 CLEAR_AFTER_FIELD(f, fmt.sliced);
Hans Verkuila3998102008-07-21 02:57:38 -03001076 if (ops->vidioc_try_fmt_sliced_vbi_cap)
1077 ret = ops->vidioc_try_fmt_sliced_vbi_cap(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001078 fh, f);
1079 break;
1080 case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001081 CLEAR_AFTER_FIELD(f, fmt.sliced);
Hans Verkuila3998102008-07-21 02:57:38 -03001082 if (ops->vidioc_try_fmt_sliced_vbi_out)
1083 ret = ops->vidioc_try_fmt_sliced_vbi_out(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001084 fh, f);
1085 break;
1086 case V4L2_BUF_TYPE_PRIVATE:
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001087 /* CLEAR_AFTER_FIELD(f, fmt.raw_data); <- does nothing */
Hans Verkuila3998102008-07-21 02:57:38 -03001088 if (ops->vidioc_try_fmt_type_private)
1089 ret = ops->vidioc_try_fmt_type_private(file,
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001090 fh, f);
1091 break;
1092 }
1093
1094 break;
1095 }
1096 /* FIXME: Those buf reqs could be handled here,
1097 with some changes on videobuf to allow its header to be included at
1098 videodev2.h or being merged at videodev2.
1099 */
1100 case VIDIOC_REQBUFS:
1101 {
1102 struct v4l2_requestbuffers *p = arg;
1103
Hans Verkuila3998102008-07-21 02:57:38 -03001104 if (!ops->vidioc_reqbufs)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001105 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001106 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001107 if (ret)
1108 break;
1109
Trent Piepho7ecc0cf2009-04-30 21:03:34 -03001110 if (p->type < V4L2_BUF_TYPE_PRIVATE)
1111 CLEAR_AFTER_FIELD(p, memory);
1112
Hans Verkuila3998102008-07-21 02:57:38 -03001113 ret = ops->vidioc_reqbufs(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001114 dbgarg(cmd, "count=%d, type=%s, memory=%s\n",
1115 p->count,
1116 prt_names(p->type, v4l2_type_names),
1117 prt_names(p->memory, v4l2_memory_names));
1118 break;
1119 }
1120 case VIDIOC_QUERYBUF:
1121 {
1122 struct v4l2_buffer *p = arg;
1123
Hans Verkuila3998102008-07-21 02:57:38 -03001124 if (!ops->vidioc_querybuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001125 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001126 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001127 if (ret)
1128 break;
1129
Hans Verkuila3998102008-07-21 02:57:38 -03001130 ret = ops->vidioc_querybuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001131 if (!ret)
1132 dbgbuf(cmd, vfd, p);
1133 break;
1134 }
1135 case VIDIOC_QBUF:
1136 {
1137 struct v4l2_buffer *p = arg;
1138
Hans Verkuila3998102008-07-21 02:57:38 -03001139 if (!ops->vidioc_qbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001140 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001141 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001142 if (ret)
1143 break;
1144
Hans Verkuila3998102008-07-21 02:57:38 -03001145 ret = ops->vidioc_qbuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001146 if (!ret)
1147 dbgbuf(cmd, vfd, p);
1148 break;
1149 }
1150 case VIDIOC_DQBUF:
1151 {
1152 struct v4l2_buffer *p = arg;
1153
Hans Verkuila3998102008-07-21 02:57:38 -03001154 if (!ops->vidioc_dqbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001155 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001156 ret = check_fmt(ops, p->type);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001157 if (ret)
1158 break;
1159
Hans Verkuila3998102008-07-21 02:57:38 -03001160 ret = ops->vidioc_dqbuf(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001161 if (!ret)
1162 dbgbuf(cmd, vfd, p);
1163 break;
1164 }
1165 case VIDIOC_OVERLAY:
1166 {
1167 int *i = arg;
1168
Hans Verkuila3998102008-07-21 02:57:38 -03001169 if (!ops->vidioc_overlay)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001170 break;
1171 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -03001172 ret = ops->vidioc_overlay(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001173 break;
1174 }
1175 case VIDIOC_G_FBUF:
1176 {
1177 struct v4l2_framebuffer *p = arg;
1178
Hans Verkuila3998102008-07-21 02:57:38 -03001179 if (!ops->vidioc_g_fbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001180 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001181 ret = ops->vidioc_g_fbuf(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001182 if (!ret) {
1183 dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n",
1184 p->capability, p->flags,
1185 (unsigned long)p->base);
1186 v4l_print_pix_fmt(vfd, &p->fmt);
1187 }
1188 break;
1189 }
1190 case VIDIOC_S_FBUF:
1191 {
1192 struct v4l2_framebuffer *p = arg;
1193
Hans Verkuila3998102008-07-21 02:57:38 -03001194 if (!ops->vidioc_s_fbuf)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001195 break;
1196 dbgarg(cmd, "capability=0x%x, flags=%d, base=0x%08lx\n",
1197 p->capability, p->flags, (unsigned long)p->base);
1198 v4l_print_pix_fmt(vfd, &p->fmt);
Hans Verkuila3998102008-07-21 02:57:38 -03001199 ret = ops->vidioc_s_fbuf(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001200 break;
1201 }
1202 case VIDIOC_STREAMON:
1203 {
1204 enum v4l2_buf_type i = *(int *)arg;
1205
Hans Verkuila3998102008-07-21 02:57:38 -03001206 if (!ops->vidioc_streamon)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001207 break;
1208 dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001209 ret = ops->vidioc_streamon(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001210 break;
1211 }
1212 case VIDIOC_STREAMOFF:
1213 {
1214 enum v4l2_buf_type i = *(int *)arg;
1215
Hans Verkuila3998102008-07-21 02:57:38 -03001216 if (!ops->vidioc_streamoff)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001217 break;
1218 dbgarg(cmd, "type=%s\n", prt_names(i, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001219 ret = ops->vidioc_streamoff(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001220 break;
1221 }
1222 /* ---------- tv norms ---------- */
1223 case VIDIOC_ENUMSTD:
1224 {
1225 struct v4l2_standard *p = arg;
1226 v4l2_std_id id = vfd->tvnorms, curr_id = 0;
1227 unsigned int index = p->index, i, j = 0;
1228 const char *descr = "";
1229
1230 /* Return norm array in a canonical way */
1231 for (i = 0; i <= index && id; i++) {
1232 /* last std value in the standards array is 0, so this
1233 while always ends there since (id & 0) == 0. */
1234 while ((id & standards[j].std) != standards[j].std)
1235 j++;
1236 curr_id = standards[j].std;
1237 descr = standards[j].descr;
1238 j++;
1239 if (curr_id == 0)
1240 break;
1241 if (curr_id != V4L2_STD_PAL &&
1242 curr_id != V4L2_STD_SECAM &&
1243 curr_id != V4L2_STD_NTSC)
1244 id &= ~curr_id;
1245 }
1246 if (i <= index)
Hans Verkuil3f5e1822010-04-06 08:14:11 -03001247 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001248
1249 v4l2_video_std_construct(p, curr_id, descr);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001250
1251 dbgarg(cmd, "index=%d, id=0x%Lx, name=%s, fps=%d/%d, "
1252 "framelines=%d\n", p->index,
1253 (unsigned long long)p->id, p->name,
1254 p->frameperiod.numerator,
1255 p->frameperiod.denominator,
1256 p->framelines);
1257
1258 ret = 0;
1259 break;
1260 }
1261 case VIDIOC_G_STD:
1262 {
1263 v4l2_std_id *id = arg;
1264
1265 ret = 0;
1266 /* Calls the specific handler */
Hans Verkuila3998102008-07-21 02:57:38 -03001267 if (ops->vidioc_g_std)
1268 ret = ops->vidioc_g_std(file, fh, id);
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001269 else if (vfd->current_norm)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001270 *id = vfd->current_norm;
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001271 else
1272 ret = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001273
1274 if (!ret)
1275 dbgarg(cmd, "std=0x%08Lx\n", (long long unsigned)*id);
1276 break;
1277 }
1278 case VIDIOC_S_STD:
1279 {
1280 v4l2_std_id *id = arg, norm;
1281
1282 dbgarg(cmd, "std=%08Lx\n", (long long unsigned)*id);
1283
1284 norm = (*id) & vfd->tvnorms;
1285 if (vfd->tvnorms && !norm) /* Check if std is supported */
1286 break;
1287
1288 /* Calls the specific handler */
Hans Verkuila3998102008-07-21 02:57:38 -03001289 if (ops->vidioc_s_std)
1290 ret = ops->vidioc_s_std(file, fh, &norm);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001291 else
1292 ret = -EINVAL;
1293
1294 /* Updates standard information */
1295 if (ret >= 0)
1296 vfd->current_norm = norm;
1297 break;
1298 }
1299 case VIDIOC_QUERYSTD:
1300 {
1301 v4l2_std_id *p = arg;
1302
Hans Verkuila3998102008-07-21 02:57:38 -03001303 if (!ops->vidioc_querystd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001304 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001305 ret = ops->vidioc_querystd(file, fh, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001306 if (!ret)
1307 dbgarg(cmd, "detected std=%08Lx\n",
1308 (unsigned long long)*p);
1309 break;
1310 }
1311 /* ------ input switching ---------- */
1312 /* FIXME: Inputs can be handled inside videodev2 */
1313 case VIDIOC_ENUMINPUT:
1314 {
1315 struct v4l2_input *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001316
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001317 /*
1318 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
1319 * CAP_STD here based on ioctl handler provided by the
1320 * driver. If the driver doesn't support these
1321 * for a specific input, it must override these flags.
1322 */
1323 if (ops->vidioc_s_std)
1324 p->capabilities |= V4L2_IN_CAP_STD;
1325 if (ops->vidioc_s_dv_preset)
1326 p->capabilities |= V4L2_IN_CAP_PRESETS;
1327 if (ops->vidioc_s_dv_timings)
1328 p->capabilities |= V4L2_IN_CAP_CUSTOM_TIMINGS;
1329
Hans Verkuila3998102008-07-21 02:57:38 -03001330 if (!ops->vidioc_enum_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001331 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001332
Hans Verkuila3998102008-07-21 02:57:38 -03001333 ret = ops->vidioc_enum_input(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001334 if (!ret)
1335 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1336 "audioset=%d, "
1337 "tuner=%d, std=%08Lx, status=%d\n",
1338 p->index, p->name, p->type, p->audioset,
1339 p->tuner,
1340 (unsigned long long)p->std,
1341 p->status);
1342 break;
1343 }
1344 case VIDIOC_G_INPUT:
1345 {
1346 unsigned int *i = arg;
1347
Hans Verkuila3998102008-07-21 02:57:38 -03001348 if (!ops->vidioc_g_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001349 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001350 ret = ops->vidioc_g_input(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001351 if (!ret)
1352 dbgarg(cmd, "value=%d\n", *i);
1353 break;
1354 }
1355 case VIDIOC_S_INPUT:
1356 {
1357 unsigned int *i = arg;
1358
Hans Verkuila3998102008-07-21 02:57:38 -03001359 if (!ops->vidioc_s_input)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001360 break;
1361 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -03001362 ret = ops->vidioc_s_input(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001363 break;
1364 }
1365
1366 /* ------ output switching ---------- */
1367 case VIDIOC_ENUMOUTPUT:
1368 {
1369 struct v4l2_output *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001370
Hans Verkuila3998102008-07-21 02:57:38 -03001371 if (!ops->vidioc_enum_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001372 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001373
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03001374 /*
1375 * We set the flags for CAP_PRESETS, CAP_CUSTOM_TIMINGS &
1376 * CAP_STD here based on ioctl handler provided by the
1377 * driver. If the driver doesn't support these
1378 * for a specific output, it must override these flags.
1379 */
1380 if (ops->vidioc_s_std)
1381 p->capabilities |= V4L2_OUT_CAP_STD;
1382 if (ops->vidioc_s_dv_preset)
1383 p->capabilities |= V4L2_OUT_CAP_PRESETS;
1384 if (ops->vidioc_s_dv_timings)
1385 p->capabilities |= V4L2_OUT_CAP_CUSTOM_TIMINGS;
1386
Hans Verkuila3998102008-07-21 02:57:38 -03001387 ret = ops->vidioc_enum_output(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001388 if (!ret)
1389 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1390 "audioset=0x%x, "
1391 "modulator=%d, std=0x%08Lx\n",
1392 p->index, p->name, p->type, p->audioset,
1393 p->modulator, (unsigned long long)p->std);
1394 break;
1395 }
1396 case VIDIOC_G_OUTPUT:
1397 {
1398 unsigned int *i = arg;
1399
Hans Verkuila3998102008-07-21 02:57:38 -03001400 if (!ops->vidioc_g_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001401 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001402 ret = ops->vidioc_g_output(file, fh, i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001403 if (!ret)
1404 dbgarg(cmd, "value=%d\n", *i);
1405 break;
1406 }
1407 case VIDIOC_S_OUTPUT:
1408 {
1409 unsigned int *i = arg;
1410
Hans Verkuila3998102008-07-21 02:57:38 -03001411 if (!ops->vidioc_s_output)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001412 break;
1413 dbgarg(cmd, "value=%d\n", *i);
Hans Verkuila3998102008-07-21 02:57:38 -03001414 ret = ops->vidioc_s_output(file, fh, *i);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001415 break;
1416 }
1417
1418 /* --- controls ---------------------------------------------- */
1419 case VIDIOC_QUERYCTRL:
1420 {
1421 struct v4l2_queryctrl *p = arg;
1422
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001423 if (vfd->ctrl_handler)
1424 ret = v4l2_queryctrl(vfd->ctrl_handler, p);
1425 else if (ops->vidioc_queryctrl)
1426 ret = ops->vidioc_queryctrl(file, fh, p);
1427 else
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001428 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001429 if (!ret)
1430 dbgarg(cmd, "id=0x%x, type=%d, name=%s, min/max=%d/%d, "
1431 "step=%d, default=%d, flags=0x%08x\n",
1432 p->id, p->type, p->name,
1433 p->minimum, p->maximum,
1434 p->step, p->default_value, p->flags);
1435 else
1436 dbgarg(cmd, "id=0x%x\n", p->id);
1437 break;
1438 }
1439 case VIDIOC_G_CTRL:
1440 {
1441 struct v4l2_control *p = arg;
1442
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001443 if (vfd->ctrl_handler)
1444 ret = v4l2_g_ctrl(vfd->ctrl_handler, p);
1445 else if (ops->vidioc_g_ctrl)
Hans Verkuila3998102008-07-21 02:57:38 -03001446 ret = ops->vidioc_g_ctrl(file, fh, p);
1447 else if (ops->vidioc_g_ext_ctrls) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001448 struct v4l2_ext_controls ctrls;
1449 struct v4l2_ext_control ctrl;
1450
1451 ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id);
1452 ctrls.count = 1;
1453 ctrls.controls = &ctrl;
1454 ctrl.id = p->id;
1455 ctrl.value = p->value;
1456 if (check_ext_ctrls(&ctrls, 1)) {
Hans Verkuila3998102008-07-21 02:57:38 -03001457 ret = ops->vidioc_g_ext_ctrls(file, fh, &ctrls);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001458 if (ret == 0)
1459 p->value = ctrl.value;
1460 }
1461 } else
1462 break;
1463 if (!ret)
1464 dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value);
1465 else
1466 dbgarg(cmd, "id=0x%x\n", p->id);
1467 break;
1468 }
1469 case VIDIOC_S_CTRL:
1470 {
1471 struct v4l2_control *p = arg;
1472 struct v4l2_ext_controls ctrls;
1473 struct v4l2_ext_control ctrl;
1474
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001475 if (!vfd->ctrl_handler &&
1476 !ops->vidioc_s_ctrl && !ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001477 break;
1478
1479 dbgarg(cmd, "id=0x%x, value=%d\n", p->id, p->value);
1480
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001481 if (vfd->ctrl_handler) {
1482 ret = v4l2_s_ctrl(vfd->ctrl_handler, p);
1483 break;
1484 }
Hans Verkuila3998102008-07-21 02:57:38 -03001485 if (ops->vidioc_s_ctrl) {
1486 ret = ops->vidioc_s_ctrl(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001487 break;
1488 }
Hans Verkuila3998102008-07-21 02:57:38 -03001489 if (!ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001490 break;
1491
1492 ctrls.ctrl_class = V4L2_CTRL_ID2CLASS(p->id);
1493 ctrls.count = 1;
1494 ctrls.controls = &ctrl;
1495 ctrl.id = p->id;
1496 ctrl.value = p->value;
1497 if (check_ext_ctrls(&ctrls, 1))
Hans Verkuila3998102008-07-21 02:57:38 -03001498 ret = ops->vidioc_s_ext_ctrls(file, fh, &ctrls);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001499 break;
1500 }
1501 case VIDIOC_G_EXT_CTRLS:
1502 {
1503 struct v4l2_ext_controls *p = arg;
1504
1505 p->error_idx = p->count;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001506 if (vfd->ctrl_handler)
1507 ret = v4l2_g_ext_ctrls(vfd->ctrl_handler, p);
1508 else if (ops->vidioc_g_ext_ctrls && check_ext_ctrls(p, 0))
Hans Verkuila3998102008-07-21 02:57:38 -03001509 ret = ops->vidioc_g_ext_ctrls(file, fh, p);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001510 else
1511 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001512 v4l_print_ext_ctrls(cmd, vfd, p, !ret);
1513 break;
1514 }
1515 case VIDIOC_S_EXT_CTRLS:
1516 {
1517 struct v4l2_ext_controls *p = arg;
1518
1519 p->error_idx = p->count;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001520 if (!vfd->ctrl_handler && !ops->vidioc_s_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001521 break;
1522 v4l_print_ext_ctrls(cmd, vfd, p, 1);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001523 if (vfd->ctrl_handler)
1524 ret = v4l2_s_ext_ctrls(vfd->ctrl_handler, p);
1525 else if (check_ext_ctrls(p, 0))
Hans Verkuila3998102008-07-21 02:57:38 -03001526 ret = ops->vidioc_s_ext_ctrls(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001527 break;
1528 }
1529 case VIDIOC_TRY_EXT_CTRLS:
1530 {
1531 struct v4l2_ext_controls *p = arg;
1532
1533 p->error_idx = p->count;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001534 if (!vfd->ctrl_handler && !ops->vidioc_try_ext_ctrls)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001535 break;
1536 v4l_print_ext_ctrls(cmd, vfd, p, 1);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001537 if (vfd->ctrl_handler)
1538 ret = v4l2_try_ext_ctrls(vfd->ctrl_handler, p);
1539 else if (check_ext_ctrls(p, 0))
Hans Verkuila3998102008-07-21 02:57:38 -03001540 ret = ops->vidioc_try_ext_ctrls(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001541 break;
1542 }
1543 case VIDIOC_QUERYMENU:
1544 {
1545 struct v4l2_querymenu *p = arg;
1546
Hans Verkuil11bbc1c2010-05-16 09:24:06 -03001547 if (vfd->ctrl_handler)
1548 ret = v4l2_querymenu(vfd->ctrl_handler, p);
1549 else if (ops->vidioc_querymenu)
1550 ret = ops->vidioc_querymenu(file, fh, p);
1551 else
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001552 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001553 if (!ret)
1554 dbgarg(cmd, "id=0x%x, index=%d, name=%s\n",
1555 p->id, p->index, p->name);
1556 else
1557 dbgarg(cmd, "id=0x%x, index=%d\n",
1558 p->id, p->index);
1559 break;
1560 }
1561 /* --- audio ---------------------------------------------- */
1562 case VIDIOC_ENUMAUDIO:
1563 {
1564 struct v4l2_audio *p = arg;
1565
Hans Verkuila3998102008-07-21 02:57:38 -03001566 if (!ops->vidioc_enumaudio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001567 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001568 ret = ops->vidioc_enumaudio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001569 if (!ret)
1570 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1571 "mode=0x%x\n", p->index, p->name,
1572 p->capability, p->mode);
1573 else
1574 dbgarg(cmd, "index=%d\n", p->index);
1575 break;
1576 }
1577 case VIDIOC_G_AUDIO:
1578 {
1579 struct v4l2_audio *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001580
Hans Verkuila3998102008-07-21 02:57:38 -03001581 if (!ops->vidioc_g_audio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001582 break;
1583
Hans Verkuila3998102008-07-21 02:57:38 -03001584 ret = ops->vidioc_g_audio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001585 if (!ret)
1586 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1587 "mode=0x%x\n", p->index,
1588 p->name, p->capability, p->mode);
1589 else
1590 dbgarg(cmd, "index=%d\n", p->index);
1591 break;
1592 }
1593 case VIDIOC_S_AUDIO:
1594 {
1595 struct v4l2_audio *p = arg;
1596
Hans Verkuila3998102008-07-21 02:57:38 -03001597 if (!ops->vidioc_s_audio)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001598 break;
1599 dbgarg(cmd, "index=%d, name=%s, capability=0x%x, "
1600 "mode=0x%x\n", p->index, p->name,
1601 p->capability, p->mode);
Hans Verkuila3998102008-07-21 02:57:38 -03001602 ret = ops->vidioc_s_audio(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001603 break;
1604 }
1605 case VIDIOC_ENUMAUDOUT:
1606 {
1607 struct v4l2_audioout *p = arg;
1608
Hans Verkuila3998102008-07-21 02:57:38 -03001609 if (!ops->vidioc_enumaudout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001610 break;
1611 dbgarg(cmd, "Enum for index=%d\n", p->index);
Hans Verkuila3998102008-07-21 02:57:38 -03001612 ret = ops->vidioc_enumaudout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001613 if (!ret)
1614 dbgarg2("index=%d, name=%s, capability=%d, "
1615 "mode=%d\n", p->index, p->name,
1616 p->capability, p->mode);
1617 break;
1618 }
1619 case VIDIOC_G_AUDOUT:
1620 {
1621 struct v4l2_audioout *p = arg;
1622
Hans Verkuila3998102008-07-21 02:57:38 -03001623 if (!ops->vidioc_g_audout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001624 break;
Trent Piepho337f9d22009-03-04 01:21:02 -03001625
Hans Verkuila3998102008-07-21 02:57:38 -03001626 ret = ops->vidioc_g_audout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001627 if (!ret)
1628 dbgarg2("index=%d, name=%s, capability=%d, "
1629 "mode=%d\n", p->index, p->name,
1630 p->capability, p->mode);
1631 break;
1632 }
1633 case VIDIOC_S_AUDOUT:
1634 {
1635 struct v4l2_audioout *p = arg;
1636
Hans Verkuila3998102008-07-21 02:57:38 -03001637 if (!ops->vidioc_s_audout)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001638 break;
1639 dbgarg(cmd, "index=%d, name=%s, capability=%d, "
1640 "mode=%d\n", p->index, p->name,
1641 p->capability, p->mode);
1642
Hans Verkuila3998102008-07-21 02:57:38 -03001643 ret = ops->vidioc_s_audout(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001644 break;
1645 }
1646 case VIDIOC_G_MODULATOR:
1647 {
1648 struct v4l2_modulator *p = arg;
1649
Hans Verkuila3998102008-07-21 02:57:38 -03001650 if (!ops->vidioc_g_modulator)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001651 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001652 ret = ops->vidioc_g_modulator(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001653 if (!ret)
1654 dbgarg(cmd, "index=%d, name=%s, "
1655 "capability=%d, rangelow=%d,"
1656 " rangehigh=%d, txsubchans=%d\n",
1657 p->index, p->name, p->capability,
1658 p->rangelow, p->rangehigh,
1659 p->txsubchans);
1660 break;
1661 }
1662 case VIDIOC_S_MODULATOR:
1663 {
1664 struct v4l2_modulator *p = arg;
1665
Hans Verkuila3998102008-07-21 02:57:38 -03001666 if (!ops->vidioc_s_modulator)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001667 break;
1668 dbgarg(cmd, "index=%d, name=%s, capability=%d, "
1669 "rangelow=%d, rangehigh=%d, txsubchans=%d\n",
1670 p->index, p->name, p->capability, p->rangelow,
1671 p->rangehigh, p->txsubchans);
Hans Verkuila3998102008-07-21 02:57:38 -03001672 ret = ops->vidioc_s_modulator(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001673 break;
1674 }
1675 case VIDIOC_G_CROP:
1676 {
1677 struct v4l2_crop *p = arg;
1678
Hans Verkuila3998102008-07-21 02:57:38 -03001679 if (!ops->vidioc_g_crop)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001680 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001681
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001682 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001683 ret = ops->vidioc_g_crop(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001684 if (!ret)
1685 dbgrect(vfd, "", &p->c);
1686 break;
1687 }
1688 case VIDIOC_S_CROP:
1689 {
1690 struct v4l2_crop *p = arg;
1691
Hans Verkuila3998102008-07-21 02:57:38 -03001692 if (!ops->vidioc_s_crop)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001693 break;
1694 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
1695 dbgrect(vfd, "", &p->c);
Hans Verkuila3998102008-07-21 02:57:38 -03001696 ret = ops->vidioc_s_crop(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001697 break;
1698 }
1699 case VIDIOC_CROPCAP:
1700 {
1701 struct v4l2_cropcap *p = arg;
1702
1703 /*FIXME: Should also show v4l2_fract pixelaspect */
Hans Verkuila3998102008-07-21 02:57:38 -03001704 if (!ops->vidioc_cropcap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001705 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001706
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001707 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001708 ret = ops->vidioc_cropcap(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001709 if (!ret) {
1710 dbgrect(vfd, "bounds ", &p->bounds);
1711 dbgrect(vfd, "defrect ", &p->defrect);
1712 }
1713 break;
1714 }
1715 case VIDIOC_G_JPEGCOMP:
1716 {
1717 struct v4l2_jpegcompression *p = arg;
1718
Hans Verkuila3998102008-07-21 02:57:38 -03001719 if (!ops->vidioc_g_jpegcomp)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001720 break;
Mauro Carvalho Chehaba56a18c2008-11-11 21:15:03 -03001721
Hans Verkuila3998102008-07-21 02:57:38 -03001722 ret = ops->vidioc_g_jpegcomp(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001723 if (!ret)
1724 dbgarg(cmd, "quality=%d, APPn=%d, "
1725 "APP_len=%d, COM_len=%d, "
1726 "jpeg_markers=%d\n",
1727 p->quality, p->APPn, p->APP_len,
1728 p->COM_len, p->jpeg_markers);
1729 break;
1730 }
1731 case VIDIOC_S_JPEGCOMP:
1732 {
1733 struct v4l2_jpegcompression *p = arg;
1734
Hans Verkuila3998102008-07-21 02:57:38 -03001735 if (!ops->vidioc_g_jpegcomp)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001736 break;
1737 dbgarg(cmd, "quality=%d, APPn=%d, APP_len=%d, "
1738 "COM_len=%d, jpeg_markers=%d\n",
1739 p->quality, p->APPn, p->APP_len,
1740 p->COM_len, p->jpeg_markers);
Hans Verkuila3998102008-07-21 02:57:38 -03001741 ret = ops->vidioc_s_jpegcomp(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001742 break;
1743 }
1744 case VIDIOC_G_ENC_INDEX:
1745 {
1746 struct v4l2_enc_idx *p = arg;
1747
Hans Verkuila3998102008-07-21 02:57:38 -03001748 if (!ops->vidioc_g_enc_index)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001749 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001750 ret = ops->vidioc_g_enc_index(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001751 if (!ret)
1752 dbgarg(cmd, "entries=%d, entries_cap=%d\n",
1753 p->entries, p->entries_cap);
1754 break;
1755 }
1756 case VIDIOC_ENCODER_CMD:
1757 {
1758 struct v4l2_encoder_cmd *p = arg;
1759
Hans Verkuila3998102008-07-21 02:57:38 -03001760 if (!ops->vidioc_encoder_cmd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001761 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001762 ret = ops->vidioc_encoder_cmd(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001763 if (!ret)
1764 dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags);
1765 break;
1766 }
1767 case VIDIOC_TRY_ENCODER_CMD:
1768 {
1769 struct v4l2_encoder_cmd *p = arg;
1770
Hans Verkuila3998102008-07-21 02:57:38 -03001771 if (!ops->vidioc_try_encoder_cmd)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001772 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001773 ret = ops->vidioc_try_encoder_cmd(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001774 if (!ret)
1775 dbgarg(cmd, "cmd=%d, flags=%x\n", p->cmd, p->flags);
1776 break;
1777 }
1778 case VIDIOC_G_PARM:
1779 {
1780 struct v4l2_streamparm *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001781
Hans Verkuila3998102008-07-21 02:57:38 -03001782 if (ops->vidioc_g_parm) {
Trent Piepho34796bc2009-03-28 22:25:35 -03001783 ret = check_fmt(ops, p->type);
1784 if (ret)
1785 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001786 ret = ops->vidioc_g_parm(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001787 } else {
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001788 v4l2_std_id std = vfd->current_norm;
1789
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001790 if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
Hans Verkuil3f5e1822010-04-06 08:14:11 -03001791 break;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001792
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001793 ret = 0;
Hans Verkuil9bedc7f2009-08-07 07:28:16 -03001794 if (ops->vidioc_g_std)
1795 ret = ops->vidioc_g_std(file, fh, &std);
1796 else if (std == 0)
1797 ret = -EINVAL;
1798 if (ret == 0)
1799 v4l2_video_std_frame_period(std,
1800 &p->parm.capture.timeperframe);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001801 }
1802
1803 dbgarg(cmd, "type=%d\n", p->type);
1804 break;
1805 }
1806 case VIDIOC_S_PARM:
1807 {
1808 struct v4l2_streamparm *p = arg;
1809
Hans Verkuila3998102008-07-21 02:57:38 -03001810 if (!ops->vidioc_s_parm)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001811 break;
Trent Piepho34796bc2009-03-28 22:25:35 -03001812 ret = check_fmt(ops, p->type);
1813 if (ret)
1814 break;
1815
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001816 dbgarg(cmd, "type=%d\n", p->type);
Hans Verkuila3998102008-07-21 02:57:38 -03001817 ret = ops->vidioc_s_parm(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001818 break;
1819 }
1820 case VIDIOC_G_TUNER:
1821 {
1822 struct v4l2_tuner *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001823
Hans Verkuila3998102008-07-21 02:57:38 -03001824 if (!ops->vidioc_g_tuner)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001825 break;
1826
Hans Verkuil227690d2011-06-12 06:36:41 -03001827 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1828 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuila3998102008-07-21 02:57:38 -03001829 ret = ops->vidioc_g_tuner(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001830 if (!ret)
1831 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1832 "capability=0x%x, rangelow=%d, "
1833 "rangehigh=%d, signal=%d, afc=%d, "
1834 "rxsubchans=0x%x, audmode=%d\n",
1835 p->index, p->name, p->type,
1836 p->capability, p->rangelow,
1837 p->rangehigh, p->signal, p->afc,
1838 p->rxsubchans, p->audmode);
1839 break;
1840 }
1841 case VIDIOC_S_TUNER:
1842 {
1843 struct v4l2_tuner *p = arg;
1844
Hans Verkuila3998102008-07-21 02:57:38 -03001845 if (!ops->vidioc_s_tuner)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001846 break;
Hans Verkuil227690d2011-06-12 06:36:41 -03001847 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1848 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001849 dbgarg(cmd, "index=%d, name=%s, type=%d, "
1850 "capability=0x%x, rangelow=%d, "
1851 "rangehigh=%d, signal=%d, afc=%d, "
1852 "rxsubchans=0x%x, audmode=%d\n",
1853 p->index, p->name, p->type,
1854 p->capability, p->rangelow,
1855 p->rangehigh, p->signal, p->afc,
1856 p->rxsubchans, p->audmode);
Hans Verkuila3998102008-07-21 02:57:38 -03001857 ret = ops->vidioc_s_tuner(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001858 break;
1859 }
1860 case VIDIOC_G_FREQUENCY:
1861 {
1862 struct v4l2_frequency *p = arg;
1863
Hans Verkuila3998102008-07-21 02:57:38 -03001864 if (!ops->vidioc_g_frequency)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001865 break;
1866
Hans Verkuil227690d2011-06-12 06:36:41 -03001867 p->type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1868 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuila3998102008-07-21 02:57:38 -03001869 ret = ops->vidioc_g_frequency(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001870 if (!ret)
1871 dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n",
1872 p->tuner, p->type, p->frequency);
1873 break;
1874 }
1875 case VIDIOC_S_FREQUENCY:
1876 {
1877 struct v4l2_frequency *p = arg;
1878
Hans Verkuila3998102008-07-21 02:57:38 -03001879 if (!ops->vidioc_s_frequency)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001880 break;
1881 dbgarg(cmd, "tuner=%d, type=%d, frequency=%d\n",
1882 p->tuner, p->type, p->frequency);
Hans Verkuila3998102008-07-21 02:57:38 -03001883 ret = ops->vidioc_s_frequency(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001884 break;
1885 }
1886 case VIDIOC_G_SLICED_VBI_CAP:
1887 {
1888 struct v4l2_sliced_vbi_cap *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001889
Hans Verkuila3998102008-07-21 02:57:38 -03001890 if (!ops->vidioc_g_sliced_vbi_cap)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001891 break;
Trent Piepho19c96e42009-03-04 01:21:02 -03001892
1893 /* Clear up to type, everything after type is zerod already */
1894 memset(p, 0, offsetof(struct v4l2_sliced_vbi_cap, type));
1895
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001896 dbgarg(cmd, "type=%s\n", prt_names(p->type, v4l2_type_names));
Hans Verkuila3998102008-07-21 02:57:38 -03001897 ret = ops->vidioc_g_sliced_vbi_cap(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001898 if (!ret)
1899 dbgarg2("service_set=%d\n", p->service_set);
1900 break;
1901 }
1902 case VIDIOC_LOG_STATUS:
1903 {
Hans Verkuila3998102008-07-21 02:57:38 -03001904 if (!ops->vidioc_log_status)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001905 break;
Hans Verkuila3998102008-07-21 02:57:38 -03001906 ret = ops->vidioc_log_status(file, fh);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001907 break;
1908 }
1909#ifdef CONFIG_VIDEO_ADV_DEBUG
1910 case VIDIOC_DBG_G_REGISTER:
1911 {
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001912 struct v4l2_dbg_register *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001913
Hans Verkuila1198cc2011-01-08 09:53:32 -03001914 if (ops->vidioc_g_register) {
1915 if (!capable(CAP_SYS_ADMIN))
1916 ret = -EPERM;
1917 else
1918 ret = ops->vidioc_g_register(file, fh, p);
1919 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001920 break;
1921 }
1922 case VIDIOC_DBG_S_REGISTER:
1923 {
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001924 struct v4l2_dbg_register *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001925
Hans Verkuila1198cc2011-01-08 09:53:32 -03001926 if (ops->vidioc_s_register) {
1927 if (!capable(CAP_SYS_ADMIN))
1928 ret = -EPERM;
1929 else
1930 ret = ops->vidioc_s_register(file, fh, p);
1931 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001932 break;
1933 }
1934#endif
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001935 case VIDIOC_DBG_G_CHIP_IDENT:
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001936 {
Hans Verkuilaecde8b52008-12-30 07:14:19 -03001937 struct v4l2_dbg_chip_ident *p = arg;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001938
Hans Verkuila3998102008-07-21 02:57:38 -03001939 if (!ops->vidioc_g_chip_ident)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001940 break;
Hans Verkuil80b36e02009-02-07 11:00:02 -03001941 p->ident = V4L2_IDENT_NONE;
1942 p->revision = 0;
Hans Verkuila3998102008-07-21 02:57:38 -03001943 ret = ops->vidioc_g_chip_ident(file, fh, p);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001944 if (!ret)
1945 dbgarg(cmd, "chip_ident=%u, revision=0x%x\n", p->ident, p->revision);
1946 break;
1947 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001948 case VIDIOC_S_HW_FREQ_SEEK:
1949 {
1950 struct v4l2_hw_freq_seek *p = arg;
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001951 enum v4l2_tuner_type type;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001952
Hans Verkuila3998102008-07-21 02:57:38 -03001953 if (!ops->vidioc_s_hw_freq_seek)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001954 break;
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001955 type = (vfd->vfl_type == VFL_TYPE_RADIO) ?
1956 V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03001957 dbgarg(cmd,
Hans Verkuila6cf90a2011-06-14 04:03:26 -03001958 "tuner=%u, type=%u, seek_upward=%u, wrap_around=%u, spacing=%u\n",
1959 p->tuner, p->type, p->seek_upward, p->wrap_around, p->spacing);
1960 if (p->type != type)
1961 ret = -EINVAL;
1962 else
1963 ret = ops->vidioc_s_hw_freq_seek(file, fh, p);
Hans Verkuila3998102008-07-21 02:57:38 -03001964 break;
1965 }
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001966 case VIDIOC_ENUM_FRAMESIZES:
1967 {
1968 struct v4l2_frmsizeenum *p = arg;
1969
1970 if (!ops->vidioc_enum_framesizes)
1971 break;
1972
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001973 ret = ops->vidioc_enum_framesizes(file, fh, p);
1974 dbgarg(cmd,
Mauro Carvalho Chehabd1afe422009-06-21 22:37:12 -03001975 "index=%d, pixelformat=%c%c%c%c, type=%d ",
1976 p->index,
1977 (p->pixel_format & 0xff),
1978 (p->pixel_format >> 8) & 0xff,
1979 (p->pixel_format >> 16) & 0xff,
1980 (p->pixel_format >> 24) & 0xff,
1981 p->type);
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001982 switch (p->type) {
1983 case V4L2_FRMSIZE_TYPE_DISCRETE:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001984 dbgarg3("width = %d, height=%d\n",
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001985 p->discrete.width, p->discrete.height);
1986 break;
1987 case V4L2_FRMSIZE_TYPE_STEPWISE:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001988 dbgarg3("min %dx%d, max %dx%d, step %dx%d\n",
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001989 p->stepwise.min_width, p->stepwise.min_height,
1990 p->stepwise.step_width, p->stepwise.step_height,
1991 p->stepwise.max_width, p->stepwise.max_height);
1992 break;
1993 case V4L2_FRMSIZE_TYPE_CONTINUOUS:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001994 dbgarg3("continuous\n");
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001995 break;
1996 default:
Mauro Carvalho Chehabd33fbcb2009-07-02 17:07:32 -03001997 dbgarg3("- Unknown type!\n");
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03001998 }
1999
2000 break;
2001 }
2002 case VIDIOC_ENUM_FRAMEINTERVALS:
2003 {
2004 struct v4l2_frmivalenum *p = arg;
2005
2006 if (!ops->vidioc_enum_frameintervals)
2007 break;
2008
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03002009 ret = ops->vidioc_enum_frameintervals(file, fh, p);
2010 dbgarg(cmd,
2011 "index=%d, pixelformat=%d, width=%d, height=%d, type=%d ",
2012 p->index, p->pixel_format,
2013 p->width, p->height, p->type);
2014 switch (p->type) {
2015 case V4L2_FRMIVAL_TYPE_DISCRETE:
2016 dbgarg2("fps=%d/%d\n",
2017 p->discrete.numerator,
2018 p->discrete.denominator);
2019 break;
2020 case V4L2_FRMIVAL_TYPE_STEPWISE:
Mauro Carvalho Chehab19585782008-11-12 01:03:02 -03002021 dbgarg2("min=%d/%d, max=%d/%d, step=%d/%d\n",
2022 p->stepwise.min.numerator,
2023 p->stepwise.min.denominator,
2024 p->stepwise.max.numerator,
2025 p->stepwise.max.denominator,
2026 p->stepwise.step.numerator,
2027 p->stepwise.step.denominator);
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03002028 break;
2029 case V4L2_FRMIVAL_TYPE_CONTINUOUS:
2030 dbgarg2("continuous\n");
2031 break;
2032 default:
2033 dbgarg2("- Unknown type!\n");
2034 }
2035 break;
2036 }
Muralidharan Karicherib6456c02009-11-19 12:00:31 -03002037 case VIDIOC_ENUM_DV_PRESETS:
2038 {
2039 struct v4l2_dv_enum_preset *p = arg;
2040
2041 if (!ops->vidioc_enum_dv_presets)
2042 break;
2043
2044 ret = ops->vidioc_enum_dv_presets(file, fh, p);
2045 if (!ret)
2046 dbgarg(cmd,
2047 "index=%d, preset=%d, name=%s, width=%d,"
2048 " height=%d ",
2049 p->index, p->preset, p->name, p->width,
2050 p->height);
2051 break;
2052 }
2053 case VIDIOC_S_DV_PRESET:
2054 {
2055 struct v4l2_dv_preset *p = arg;
2056
2057 if (!ops->vidioc_s_dv_preset)
2058 break;
2059
2060 dbgarg(cmd, "preset=%d\n", p->preset);
2061 ret = ops->vidioc_s_dv_preset(file, fh, p);
2062 break;
2063 }
2064 case VIDIOC_G_DV_PRESET:
2065 {
2066 struct v4l2_dv_preset *p = arg;
2067
2068 if (!ops->vidioc_g_dv_preset)
2069 break;
2070
2071 ret = ops->vidioc_g_dv_preset(file, fh, p);
2072 if (!ret)
2073 dbgarg(cmd, "preset=%d\n", p->preset);
2074 break;
2075 }
2076 case VIDIOC_QUERY_DV_PRESET:
2077 {
2078 struct v4l2_dv_preset *p = arg;
2079
2080 if (!ops->vidioc_query_dv_preset)
2081 break;
2082
2083 ret = ops->vidioc_query_dv_preset(file, fh, p);
2084 if (!ret)
2085 dbgarg(cmd, "preset=%d\n", p->preset);
2086 break;
2087 }
2088 case VIDIOC_S_DV_TIMINGS:
2089 {
2090 struct v4l2_dv_timings *p = arg;
2091
2092 if (!ops->vidioc_s_dv_timings)
2093 break;
2094
2095 switch (p->type) {
2096 case V4L2_DV_BT_656_1120:
2097 dbgarg2("bt-656/1120:interlaced=%d, pixelclock=%lld,"
2098 " width=%d, height=%d, polarities=%x,"
2099 " hfrontporch=%d, hsync=%d, hbackporch=%d,"
2100 " vfrontporch=%d, vsync=%d, vbackporch=%d,"
2101 " il_vfrontporch=%d, il_vsync=%d,"
2102 " il_vbackporch=%d\n",
2103 p->bt.interlaced, p->bt.pixelclock,
2104 p->bt.width, p->bt.height, p->bt.polarities,
2105 p->bt.hfrontporch, p->bt.hsync,
2106 p->bt.hbackporch, p->bt.vfrontporch,
2107 p->bt.vsync, p->bt.vbackporch,
2108 p->bt.il_vfrontporch, p->bt.il_vsync,
2109 p->bt.il_vbackporch);
2110 ret = ops->vidioc_s_dv_timings(file, fh, p);
2111 break;
2112 default:
2113 dbgarg2("Unknown type %d!\n", p->type);
2114 break;
2115 }
2116 break;
2117 }
2118 case VIDIOC_G_DV_TIMINGS:
2119 {
2120 struct v4l2_dv_timings *p = arg;
2121
2122 if (!ops->vidioc_g_dv_timings)
2123 break;
2124
2125 ret = ops->vidioc_g_dv_timings(file, fh, p);
2126 if (!ret) {
2127 switch (p->type) {
2128 case V4L2_DV_BT_656_1120:
2129 dbgarg2("bt-656/1120:interlaced=%d,"
2130 " pixelclock=%lld,"
2131 " width=%d, height=%d, polarities=%x,"
2132 " hfrontporch=%d, hsync=%d,"
2133 " hbackporch=%d, vfrontporch=%d,"
2134 " vsync=%d, vbackporch=%d,"
2135 " il_vfrontporch=%d, il_vsync=%d,"
2136 " il_vbackporch=%d\n",
2137 p->bt.interlaced, p->bt.pixelclock,
2138 p->bt.width, p->bt.height,
2139 p->bt.polarities, p->bt.hfrontporch,
2140 p->bt.hsync, p->bt.hbackporch,
2141 p->bt.vfrontporch, p->bt.vsync,
2142 p->bt.vbackporch, p->bt.il_vfrontporch,
2143 p->bt.il_vsync, p->bt.il_vbackporch);
2144 break;
2145 default:
2146 dbgarg2("Unknown type %d!\n", p->type);
2147 break;
2148 }
2149 }
2150 break;
2151 }
Sakari Ailusd3d7c962010-03-27 11:02:10 -03002152 case VIDIOC_DQEVENT:
2153 {
2154 struct v4l2_event *ev = arg;
Mauro Carvalho Chehab74d83fa2008-11-11 21:13:47 -03002155
Sakari Ailusd3d7c962010-03-27 11:02:10 -03002156 if (!ops->vidioc_subscribe_event)
2157 break;
2158
2159 ret = v4l2_event_dequeue(fh, ev, file->f_flags & O_NONBLOCK);
2160 if (ret < 0) {
2161 dbgarg(cmd, "no pending events?");
2162 break;
2163 }
2164 dbgarg(cmd,
2165 "pending=%d, type=0x%8.8x, sequence=%d, "
2166 "timestamp=%lu.%9.9lu ",
2167 ev->pending, ev->type, ev->sequence,
2168 ev->timestamp.tv_sec, ev->timestamp.tv_nsec);
2169 break;
2170 }
2171 case VIDIOC_SUBSCRIBE_EVENT:
2172 {
2173 struct v4l2_event_subscription *sub = arg;
2174
2175 if (!ops->vidioc_subscribe_event)
2176 break;
2177
2178 ret = ops->vidioc_subscribe_event(fh, sub);
2179 if (ret < 0) {
2180 dbgarg(cmd, "failed, ret=%ld", ret);
2181 break;
2182 }
2183 dbgarg(cmd, "type=0x%8.8x", sub->type);
2184 break;
2185 }
2186 case VIDIOC_UNSUBSCRIBE_EVENT:
2187 {
2188 struct v4l2_event_subscription *sub = arg;
2189
2190 if (!ops->vidioc_unsubscribe_event)
2191 break;
2192
2193 ret = ops->vidioc_unsubscribe_event(fh, sub);
2194 if (ret < 0) {
2195 dbgarg(cmd, "failed, ret=%ld", ret);
2196 break;
2197 }
2198 dbgarg(cmd, "type=0x%8.8x", sub->type);
2199 break;
2200 }
Hans Verkuila3998102008-07-21 02:57:38 -03002201 default:
2202 {
Hans Verkuil99cd47bc2011-03-11 19:00:56 -03002203 bool valid_prio = true;
2204
Hans Verkuila3998102008-07-21 02:57:38 -03002205 if (!ops->vidioc_default)
2206 break;
Hans Verkuilb1a873a2011-03-22 10:14:07 -03002207 if (use_fh_prio)
Hans Verkuil99cd47bc2011-03-11 19:00:56 -03002208 valid_prio = v4l2_prio_check(vfd->prio, vfh->prio) >= 0;
2209 ret = ops->vidioc_default(file, fh, valid_prio, cmd, arg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002210 break;
2211 }
2212 } /* switch */
2213
Hans Verkuil99cd47bc2011-03-11 19:00:56 -03002214exit_prio:
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002215 if (vfd->debug & V4L2_DEBUG_IOCTL_ARG) {
2216 if (ret < 0) {
2217 v4l_print_ioctl(vfd->name, cmd);
Hans Verkuil069b7472008-12-30 07:04:34 -03002218 printk(KERN_CONT " error %ld\n", ret);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002219 }
2220 }
2221
2222 return ret;
2223}
2224
Trent Piepho19c96e42009-03-04 01:21:02 -03002225/* In some cases, only a few fields are used as input, i.e. when the app sets
2226 * "index" and then the driver fills in the rest of the structure for the thing
2227 * with that index. We only need to copy up the first non-input field. */
2228static unsigned long cmd_input_size(unsigned int cmd)
2229{
2230 /* Size of structure up to and including 'field' */
Hans Verkuil9f1a6932009-03-08 10:35:23 -03002231#define CMDINSIZE(cmd, type, field) \
2232 case VIDIOC_##cmd: \
2233 return offsetof(struct v4l2_##type, field) + \
2234 sizeof(((struct v4l2_##type *)0)->field);
Trent Piepho19c96e42009-03-04 01:21:02 -03002235
Hans Verkuil9f1a6932009-03-08 10:35:23 -03002236 switch (cmd) {
Trent Piepho19c96e42009-03-04 01:21:02 -03002237 CMDINSIZE(ENUM_FMT, fmtdesc, type);
2238 CMDINSIZE(G_FMT, format, type);
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002239 CMDINSIZE(QUERYBUF, buffer, length);
Trent Piepho19c96e42009-03-04 01:21:02 -03002240 CMDINSIZE(G_PARM, streamparm, type);
2241 CMDINSIZE(ENUMSTD, standard, index);
2242 CMDINSIZE(ENUMINPUT, input, index);
2243 CMDINSIZE(G_CTRL, control, id);
2244 CMDINSIZE(G_TUNER, tuner, index);
2245 CMDINSIZE(QUERYCTRL, queryctrl, id);
2246 CMDINSIZE(QUERYMENU, querymenu, index);
2247 CMDINSIZE(ENUMOUTPUT, output, index);
2248 CMDINSIZE(G_MODULATOR, modulator, index);
2249 CMDINSIZE(G_FREQUENCY, frequency, tuner);
2250 CMDINSIZE(CROPCAP, cropcap, type);
2251 CMDINSIZE(G_CROP, crop, type);
2252 CMDINSIZE(ENUMAUDIO, audio, index);
2253 CMDINSIZE(ENUMAUDOUT, audioout, index);
2254 CMDINSIZE(ENCODER_CMD, encoder_cmd, flags);
2255 CMDINSIZE(TRY_ENCODER_CMD, encoder_cmd, flags);
2256 CMDINSIZE(G_SLICED_VBI_CAP, sliced_vbi_cap, type);
2257 CMDINSIZE(ENUM_FRAMESIZES, frmsizeenum, pixel_format);
2258 CMDINSIZE(ENUM_FRAMEINTERVALS, frmivalenum, height);
2259 default:
2260 return _IOC_SIZE(cmd);
2261 }
2262}
2263
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002264static int check_array_args(unsigned int cmd, void *parg, size_t *array_size,
2265 void * __user *user_ptr, void ***kernel_ptr)
2266{
2267 int ret = 0;
2268
2269 switch (cmd) {
2270 case VIDIOC_QUERYBUF:
2271 case VIDIOC_QBUF:
2272 case VIDIOC_DQBUF: {
2273 struct v4l2_buffer *buf = parg;
2274
2275 if (V4L2_TYPE_IS_MULTIPLANAR(buf->type) && buf->length > 0) {
2276 if (buf->length > VIDEO_MAX_PLANES) {
2277 ret = -EINVAL;
2278 break;
2279 }
2280 *user_ptr = (void __user *)buf->m.planes;
Hans Petter Selasky2ef40372011-05-23 08:13:06 -03002281 *kernel_ptr = (void *)&buf->m.planes;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002282 *array_size = sizeof(struct v4l2_plane) * buf->length;
2283 ret = 1;
2284 }
2285 break;
2286 }
2287
2288 case VIDIOC_S_EXT_CTRLS:
2289 case VIDIOC_G_EXT_CTRLS:
2290 case VIDIOC_TRY_EXT_CTRLS: {
2291 struct v4l2_ext_controls *ctrls = parg;
2292
2293 if (ctrls->count != 0) {
2294 *user_ptr = (void __user *)ctrls->controls;
Hans Petter Selasky2ef40372011-05-23 08:13:06 -03002295 *kernel_ptr = (void *)&ctrls->controls;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002296 *array_size = sizeof(struct v4l2_ext_control)
2297 * ctrls->count;
2298 ret = 1;
2299 }
2300 break;
2301 }
2302 }
2303
2304 return ret;
2305}
2306
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002307long
2308video_usercopy(struct file *file, unsigned int cmd, unsigned long arg,
2309 v4l2_kioctl func)
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002310{
2311 char sbuf[128];
2312 void *mbuf = NULL;
Hans Verkuil1d94aa32010-04-06 08:12:21 -03002313 void *parg = (void *)arg;
Hans Verkuil069b7472008-12-30 07:04:34 -03002314 long err = -EINVAL;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002315 bool has_array_args;
2316 size_t array_size = 0;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002317 void __user *user_ptr = NULL;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002318 void **kernel_ptr = NULL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002319
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002320 /* Copy arguments into temp kernel buffer */
Trent Piepho337f9d22009-03-04 01:21:02 -03002321 if (_IOC_DIR(cmd) != _IOC_NONE) {
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002322 if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
2323 parg = sbuf;
2324 } else {
2325 /* too big to allocate from stack */
2326 mbuf = kmalloc(_IOC_SIZE(cmd), GFP_KERNEL);
2327 if (NULL == mbuf)
2328 return -ENOMEM;
2329 parg = mbuf;
2330 }
2331
2332 err = -EFAULT;
Trent Piepho19c96e42009-03-04 01:21:02 -03002333 if (_IOC_DIR(cmd) & _IOC_WRITE) {
2334 unsigned long n = cmd_input_size(cmd);
2335
2336 if (copy_from_user(parg, (void __user *)arg, n))
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002337 goto out;
Trent Piepho19c96e42009-03-04 01:21:02 -03002338
2339 /* zero out anything we don't copy from userspace */
2340 if (n < _IOC_SIZE(cmd))
2341 memset((u8 *)parg + n, 0, _IOC_SIZE(cmd) - n);
Trent Piepho337f9d22009-03-04 01:21:02 -03002342 } else {
2343 /* read-only ioctl */
2344 memset(parg, 0, _IOC_SIZE(cmd));
Trent Piepho19c96e42009-03-04 01:21:02 -03002345 }
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002346 }
2347
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002348 err = check_array_args(cmd, parg, &array_size, &user_ptr, &kernel_ptr);
2349 if (err < 0)
2350 goto out;
2351 has_array_args = err;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002352
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002353 if (has_array_args) {
2354 /*
2355 * When adding new types of array args, make sure that the
2356 * parent argument to ioctl (which contains the pointer to the
2357 * array) fits into sbuf (so that mbuf will still remain
2358 * unused up to here).
2359 */
2360 mbuf = kmalloc(array_size, GFP_KERNEL);
2361 err = -ENOMEM;
2362 if (NULL == mbuf)
2363 goto out_array_args;
2364 err = -EFAULT;
2365 if (copy_from_user(mbuf, user_ptr, array_size))
2366 goto out_array_args;
2367 *kernel_ptr = mbuf;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002368 }
2369
2370 /* Handles IOCTL */
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002371 err = func(file, cmd, parg);
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002372 if (err == -ENOIOCTLCMD)
2373 err = -EINVAL;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002374
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002375 if (has_array_args) {
2376 *kernel_ptr = user_ptr;
2377 if (copy_to_user(user_ptr, mbuf, array_size))
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002378 err = -EFAULT;
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002379 goto out_array_args;
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002380 }
2381 if (err < 0)
2382 goto out;
2383
Pawel Osciakd14e6d72010-12-23 04:15:27 -03002384out_array_args:
Hans Verkuil35ea11f2008-07-20 08:12:02 -03002385 /* Copy results into user buffer */
2386 switch (_IOC_DIR(cmd)) {
2387 case _IOC_READ:
2388 case (_IOC_WRITE | _IOC_READ):
2389 if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
2390 err = -EFAULT;
2391 break;
2392 }
2393
2394out:
2395 kfree(mbuf);
2396 return err;
2397}
Laurent Pinchartfc0a8072010-07-12 11:09:41 -03002398EXPORT_SYMBOL(video_usercopy);
2399
2400long video_ioctl2(struct file *file,
2401 unsigned int cmd, unsigned long arg)
2402{
2403 return video_usercopy(file, cmd, arg, __video_do_ioctl);
2404}
Mauro Carvalho Chehab8a522c92008-10-21 11:58:39 -03002405EXPORT_SYMBOL(video_ioctl2);