4 * Backward Compatibility Layer
6 * Support subroutines for providing V4L2 drivers with backward
7 * compatibility with applications using the old API.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 * Author: Bill Dirks <bill@thedirks.org>
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/types.h>
24 #include <linux/kernel.h>
25 #include <linux/sched.h>
28 #include <linux/file.h>
29 #include <linux/string.h>
30 #include <linux/errno.h>
31 #include <linux/slab.h>
32 #include <linux/videodev.h>
33 #include <media/v4l2-common.h>
35 #include <asm/uaccess.h>
36 #include <asm/system.h>
37 #include <asm/pgtable.h>
40 #include <linux/kmod.h>
43 static unsigned int debug
= 0;
44 module_param(debug
, int, 0644);
45 MODULE_PARM_DESC(debug
,"enable debug messages");
46 MODULE_AUTHOR("Bill Dirks");
47 MODULE_DESCRIPTION("v4l(1) compatibility layer for v4l2 drivers.");
48 MODULE_LICENSE("GPL");
50 #define dprintk(fmt, arg...) if (debug) \
51 printk(KERN_DEBUG "v4l1-compat: " fmt , ## arg)
54 * I O C T L T R A N S L A T I O N
56 * From here on down is the code for translating the numerous
57 * ioctl commands from the old API to the new API.
61 get_v4l_control(struct inode
*inode
,
66 struct v4l2_queryctrl qctrl2
;
67 struct v4l2_control ctrl2
;
71 err
= drv(inode
, file
, VIDIOC_QUERYCTRL
, &qctrl2
);
73 dprintk("VIDIOC_QUERYCTRL: %d\n",err
);
75 !(qctrl2
.flags
& V4L2_CTRL_FLAG_DISABLED
))
78 err
= drv(inode
, file
, VIDIOC_G_CTRL
, &ctrl2
);
80 dprintk("VIDIOC_G_CTRL: %d\n",err
);
83 return ((ctrl2
.value
- qctrl2
.minimum
) * 65535
84 + (qctrl2
.maximum
- qctrl2
.minimum
) / 2)
85 / (qctrl2
.maximum
- qctrl2
.minimum
);
91 set_v4l_control(struct inode
*inode
,
97 struct v4l2_queryctrl qctrl2
;
98 struct v4l2_control ctrl2
;
102 err
= drv(inode
, file
, VIDIOC_QUERYCTRL
, &qctrl2
);
104 dprintk("VIDIOC_QUERYCTRL: %d\n",err
);
106 !(qctrl2
.flags
& V4L2_CTRL_FLAG_DISABLED
) &&
107 !(qctrl2
.flags
& V4L2_CTRL_FLAG_GRABBED
))
113 if (value
&& qctrl2
.type
== V4L2_CTRL_TYPE_BOOLEAN
)
115 ctrl2
.id
= qctrl2
.id
;
117 (value
* (qctrl2
.maximum
- qctrl2
.minimum
)
120 ctrl2
.value
+= qctrl2
.minimum
;
121 err
= drv(inode
, file
, VIDIOC_S_CTRL
, &ctrl2
);
123 dprintk("VIDIOC_S_CTRL: %d\n",err
);
128 /* ----------------------------------------------------------------- */
130 static int palette2pixelformat
[] = {
131 [VIDEO_PALETTE_GREY
] = V4L2_PIX_FMT_GREY
,
132 [VIDEO_PALETTE_RGB555
] = V4L2_PIX_FMT_RGB555
,
133 [VIDEO_PALETTE_RGB565
] = V4L2_PIX_FMT_RGB565
,
134 [VIDEO_PALETTE_RGB24
] = V4L2_PIX_FMT_BGR24
,
135 [VIDEO_PALETTE_RGB32
] = V4L2_PIX_FMT_BGR32
,
136 /* yuv packed pixel */
137 [VIDEO_PALETTE_YUYV
] = V4L2_PIX_FMT_YUYV
,
138 [VIDEO_PALETTE_YUV422
] = V4L2_PIX_FMT_YUYV
,
139 [VIDEO_PALETTE_UYVY
] = V4L2_PIX_FMT_UYVY
,
141 [VIDEO_PALETTE_YUV410P
] = V4L2_PIX_FMT_YUV410
,
142 [VIDEO_PALETTE_YUV420
] = V4L2_PIX_FMT_YUV420
,
143 [VIDEO_PALETTE_YUV420P
] = V4L2_PIX_FMT_YUV420
,
144 [VIDEO_PALETTE_YUV411P
] = V4L2_PIX_FMT_YUV411P
,
145 [VIDEO_PALETTE_YUV422P
] = V4L2_PIX_FMT_YUV422P
,
149 palette_to_pixelformat(unsigned int palette
)
151 if (palette
< ARRAY_SIZE(palette2pixelformat
))
152 return palette2pixelformat
[palette
];
158 pixelformat_to_palette(int pixelformat
)
163 case V4L2_PIX_FMT_GREY
:
164 palette
= VIDEO_PALETTE_GREY
;
166 case V4L2_PIX_FMT_RGB555
:
167 palette
= VIDEO_PALETTE_RGB555
;
169 case V4L2_PIX_FMT_RGB565
:
170 palette
= VIDEO_PALETTE_RGB565
;
172 case V4L2_PIX_FMT_BGR24
:
173 palette
= VIDEO_PALETTE_RGB24
;
175 case V4L2_PIX_FMT_BGR32
:
176 palette
= VIDEO_PALETTE_RGB32
;
178 /* yuv packed pixel */
179 case V4L2_PIX_FMT_YUYV
:
180 palette
= VIDEO_PALETTE_YUYV
;
182 case V4L2_PIX_FMT_UYVY
:
183 palette
= VIDEO_PALETTE_UYVY
;
186 case V4L2_PIX_FMT_YUV410
:
187 palette
= VIDEO_PALETTE_YUV420
;
189 case V4L2_PIX_FMT_YUV420
:
190 palette
= VIDEO_PALETTE_YUV420
;
192 case V4L2_PIX_FMT_YUV411P
:
193 palette
= VIDEO_PALETTE_YUV411P
;
195 case V4L2_PIX_FMT_YUV422P
:
196 palette
= VIDEO_PALETTE_YUV422P
;
202 /* ----------------------------------------------------------------- */
204 static int poll_one(struct file
*file
)
208 struct poll_wqueues pwq
;
214 set_current_state(TASK_INTERRUPTIBLE
);
215 mask
= file
->f_op
->poll(file
, table
);
219 if (signal_pending(current
)) {
220 retval
= -ERESTARTSYS
;
225 set_current_state(TASK_RUNNING
);
230 static int count_inputs(struct inode
*inode
,
234 struct v4l2_input input2
;
238 memset(&input2
,0,sizeof(input2
));
240 if (0 != drv(inode
,file
,VIDIOC_ENUMINPUT
, &input2
))
246 static int check_size(struct inode
*inode
,
249 int *maxw
, int *maxh
)
251 struct v4l2_fmtdesc desc2
;
252 struct v4l2_format fmt2
;
254 memset(&desc2
,0,sizeof(desc2
));
255 memset(&fmt2
,0,sizeof(fmt2
));
257 desc2
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
258 if (0 != drv(inode
,file
,VIDIOC_ENUM_FMT
, &desc2
))
261 fmt2
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
262 fmt2
.fmt
.pix
.width
= 10000;
263 fmt2
.fmt
.pix
.height
= 10000;
264 fmt2
.fmt
.pix
.pixelformat
= desc2
.pixelformat
;
265 if (0 != drv(inode
,file
,VIDIOC_TRY_FMT
, &fmt2
))
268 *maxw
= fmt2
.fmt
.pix
.width
;
269 *maxh
= fmt2
.fmt
.pix
.height
;
275 /* ----------------------------------------------------------------- */
278 * This function is exported.
281 v4l_compat_translate_ioctl(struct inode
*inode
,
287 struct v4l2_capability
*cap2
= NULL
;
288 struct v4l2_format
*fmt2
= NULL
;
289 enum v4l2_buf_type captype
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
291 struct v4l2_framebuffer fbuf2
;
292 struct v4l2_input input2
;
293 struct v4l2_tuner tun2
;
294 struct v4l2_standard std2
;
295 struct v4l2_frequency freq2
;
296 struct v4l2_audio aud2
;
297 struct v4l2_queryctrl qctrl2
;
298 struct v4l2_buffer buf2
;
303 case VIDIOCGCAP
: /* capability */
305 struct video_capability
*cap
= arg
;
307 cap2
= kzalloc(sizeof(*cap2
),GFP_KERNEL
);
308 memset(cap
, 0, sizeof(*cap
));
309 memset(&fbuf2
, 0, sizeof(fbuf2
));
311 err
= drv(inode
, file
, VIDIOC_QUERYCAP
, cap2
);
313 dprintk("VIDIOCGCAP / VIDIOC_QUERYCAP: %d\n",err
);
316 if (cap2
->capabilities
& V4L2_CAP_VIDEO_OVERLAY
) {
317 err
= drv(inode
, file
, VIDIOC_G_FBUF
, &fbuf2
);
319 dprintk("VIDIOCGCAP / VIDIOC_G_FBUF: %d\n",err
);
320 memset(&fbuf2
, 0, sizeof(fbuf2
));
325 memcpy(cap
->name
, cap2
->card
,
326 min(sizeof(cap
->name
), sizeof(cap2
->card
)));
327 cap
->name
[sizeof(cap
->name
) - 1] = 0;
328 if (cap2
->capabilities
& V4L2_CAP_VIDEO_CAPTURE
)
329 cap
->type
|= VID_TYPE_CAPTURE
;
330 if (cap2
->capabilities
& V4L2_CAP_TUNER
)
331 cap
->type
|= VID_TYPE_TUNER
;
332 if (cap2
->capabilities
& V4L2_CAP_VBI_CAPTURE
)
333 cap
->type
|= VID_TYPE_TELETEXT
;
334 if (cap2
->capabilities
& V4L2_CAP_VIDEO_OVERLAY
)
335 cap
->type
|= VID_TYPE_OVERLAY
;
336 if (fbuf2
.capability
& V4L2_FBUF_CAP_LIST_CLIPPING
)
337 cap
->type
|= VID_TYPE_CLIPPING
;
339 cap
->channels
= count_inputs(inode
,file
,drv
);
340 check_size(inode
,file
,drv
,
341 &cap
->maxwidth
,&cap
->maxheight
);
342 cap
->audios
= 0; /* FIXME */
343 cap
->minwidth
= 48; /* FIXME */
344 cap
->minheight
= 32; /* FIXME */
347 case VIDIOCGFBUF
: /* get frame buffer */
349 struct video_buffer
*buffer
= arg
;
351 memset(buffer
, 0, sizeof(*buffer
));
352 memset(&fbuf2
, 0, sizeof(fbuf2
));
354 err
= drv(inode
, file
, VIDIOC_G_FBUF
, &fbuf2
);
356 dprintk("VIDIOCGFBUF / VIDIOC_G_FBUF: %d\n",err
);
359 buffer
->base
= fbuf2
.base
;
360 buffer
->height
= fbuf2
.fmt
.height
;
361 buffer
->width
= fbuf2
.fmt
.width
;
363 switch (fbuf2
.fmt
.pixelformat
) {
364 case V4L2_PIX_FMT_RGB332
:
367 case V4L2_PIX_FMT_RGB555
:
370 case V4L2_PIX_FMT_RGB565
:
373 case V4L2_PIX_FMT_BGR24
:
376 case V4L2_PIX_FMT_BGR32
:
382 if (fbuf2
.fmt
.bytesperline
) {
383 buffer
->bytesperline
= fbuf2
.fmt
.bytesperline
;
384 if (!buffer
->depth
&& buffer
->width
)
385 buffer
->depth
= ((fbuf2
.fmt
.bytesperline
<<3)
386 + (buffer
->width
-1) )
389 buffer
->bytesperline
=
390 (buffer
->width
* buffer
->depth
+ 7) & 7;
391 buffer
->bytesperline
>>= 3;
395 case VIDIOCSFBUF
: /* set frame buffer */
397 struct video_buffer
*buffer
= arg
;
399 memset(&fbuf2
, 0, sizeof(fbuf2
));
400 fbuf2
.base
= buffer
->base
;
401 fbuf2
.fmt
.height
= buffer
->height
;
402 fbuf2
.fmt
.width
= buffer
->width
;
403 switch (buffer
->depth
) {
405 fbuf2
.fmt
.pixelformat
= V4L2_PIX_FMT_RGB332
;
408 fbuf2
.fmt
.pixelformat
= V4L2_PIX_FMT_RGB555
;
411 fbuf2
.fmt
.pixelformat
= V4L2_PIX_FMT_RGB565
;
414 fbuf2
.fmt
.pixelformat
= V4L2_PIX_FMT_BGR24
;
417 fbuf2
.fmt
.pixelformat
= V4L2_PIX_FMT_BGR32
;
420 fbuf2
.fmt
.bytesperline
= buffer
->bytesperline
;
421 err
= drv(inode
, file
, VIDIOC_S_FBUF
, &fbuf2
);
423 dprintk("VIDIOCSFBUF / VIDIOC_S_FBUF: %d\n",err
);
426 case VIDIOCGWIN
: /* get window or capture dimensions */
428 struct video_window
*win
= arg
;
430 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
431 memset(win
,0,sizeof(*win
));
433 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_OVERLAY
;
434 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
436 dprintk("VIDIOCGWIN / VIDIOC_G_WIN: %d\n",err
);
438 win
->x
= fmt2
->fmt
.win
.w
.left
;
439 win
->y
= fmt2
->fmt
.win
.w
.top
;
440 win
->width
= fmt2
->fmt
.win
.w
.width
;
441 win
->height
= fmt2
->fmt
.win
.w
.height
;
442 win
->chromakey
= fmt2
->fmt
.win
.chromakey
;
448 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
449 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
451 dprintk("VIDIOCGWIN / VIDIOC_G_FMT: %d\n",err
);
456 win
->width
= fmt2
->fmt
.pix
.width
;
457 win
->height
= fmt2
->fmt
.pix
.height
;
463 case VIDIOCSWIN
: /* set window and/or capture dimensions */
465 struct video_window
*win
= arg
;
468 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
469 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
470 drv(inode
, file
, VIDIOC_STREAMOFF
, &fmt2
->type
);
471 err1
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
473 dprintk("VIDIOCSWIN / VIDIOC_G_FMT: %d\n",err
);
475 fmt2
->fmt
.pix
.width
= win
->width
;
476 fmt2
->fmt
.pix
.height
= win
->height
;
477 fmt2
->fmt
.pix
.field
= V4L2_FIELD_ANY
;
478 fmt2
->fmt
.pix
.bytesperline
= 0;
479 err
= drv(inode
, file
, VIDIOC_S_FMT
, fmt2
);
481 dprintk("VIDIOCSWIN / VIDIOC_S_FMT #1: %d\n",
483 win
->width
= fmt2
->fmt
.pix
.width
;
484 win
->height
= fmt2
->fmt
.pix
.height
;
487 memset(fmt2
,0,sizeof(*fmt2
));
488 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_OVERLAY
;
489 fmt2
->fmt
.win
.w
.left
= win
->x
;
490 fmt2
->fmt
.win
.w
.top
= win
->y
;
491 fmt2
->fmt
.win
.w
.width
= win
->width
;
492 fmt2
->fmt
.win
.w
.height
= win
->height
;
493 fmt2
->fmt
.win
.chromakey
= win
->chromakey
;
494 fmt2
->fmt
.win
.clips
= (void __user
*)win
->clips
;
495 fmt2
->fmt
.win
.clipcount
= win
->clipcount
;
496 err2
= drv(inode
, file
, VIDIOC_S_FMT
, fmt2
);
498 dprintk("VIDIOCSWIN / VIDIOC_S_FMT #2: %d\n",err
);
500 if (err1
!= 0 && err2
!= 0)
504 case VIDIOCCAPTURE
: /* turn on/off preview */
509 /* dirty hack time. But v4l1 has no STREAMOFF
510 * equivalent in the API, and this one at
511 * least comes close ... */
512 drv(inode
, file
, VIDIOC_STREAMOFF
, &captype
);
514 err
= drv(inode
, file
, VIDIOC_OVERLAY
, arg
);
516 dprintk("VIDIOCCAPTURE / VIDIOC_PREVIEW: %d\n",err
);
519 case VIDIOCGCHAN
: /* get input information */
521 struct video_channel
*chan
= arg
;
523 memset(&input2
,0,sizeof(input2
));
524 input2
.index
= chan
->channel
;
525 err
= drv(inode
, file
, VIDIOC_ENUMINPUT
, &input2
);
527 dprintk("VIDIOCGCHAN / VIDIOC_ENUMINPUT: "
528 "channel=%d err=%d\n",chan
->channel
,err
);
531 chan
->channel
= input2
.index
;
532 memcpy(chan
->name
, input2
.name
,
533 min(sizeof(chan
->name
), sizeof(input2
.name
)));
534 chan
->name
[sizeof(chan
->name
) - 1] = 0;
535 chan
->tuners
= (input2
.type
== V4L2_INPUT_TYPE_TUNER
) ? 1 : 0;
536 chan
->flags
= (chan
->tuners
) ? VIDEO_VC_TUNER
: 0;
537 switch (input2
.type
) {
538 case V4L2_INPUT_TYPE_TUNER
:
539 chan
->type
= VIDEO_TYPE_TV
;
542 case V4L2_INPUT_TYPE_CAMERA
:
543 chan
->type
= VIDEO_TYPE_CAMERA
;
547 err
= drv(inode
, file
, VIDIOC_G_STD
, &sid
);
549 dprintk("VIDIOCGCHAN / VIDIOC_G_STD: %d\n",err
);
551 if (sid
& V4L2_STD_PAL
)
552 chan
->norm
= VIDEO_MODE_PAL
;
553 if (sid
& V4L2_STD_NTSC
)
554 chan
->norm
= VIDEO_MODE_NTSC
;
555 if (sid
& V4L2_STD_SECAM
)
556 chan
->norm
= VIDEO_MODE_SECAM
;
560 case VIDIOCSCHAN
: /* set input */
562 struct video_channel
*chan
= arg
;
565 err
= drv(inode
, file
, VIDIOC_S_INPUT
, &chan
->channel
);
567 dprintk("VIDIOCSCHAN / VIDIOC_S_INPUT: %d\n",err
);
568 switch (chan
->norm
) {
572 case VIDEO_MODE_NTSC
:
575 case VIDEO_MODE_SECAM
:
576 sid
= V4L2_STD_SECAM
;
580 err
= drv(inode
, file
, VIDIOC_S_STD
, &sid
);
582 dprintk("VIDIOCSCHAN / VIDIOC_S_STD: %d\n",err
);
586 case VIDIOCGPICT
: /* get tone controls & partial capture format */
588 struct video_picture
*pict
= arg
;
590 pict
->brightness
= get_v4l_control(inode
, file
,
591 V4L2_CID_BRIGHTNESS
,drv
);
592 pict
->hue
= get_v4l_control(inode
, file
,
594 pict
->contrast
= get_v4l_control(inode
, file
,
595 V4L2_CID_CONTRAST
, drv
);
596 pict
->colour
= get_v4l_control(inode
, file
,
597 V4L2_CID_SATURATION
, drv
);
598 pict
->whiteness
= get_v4l_control(inode
, file
,
599 V4L2_CID_WHITENESS
, drv
);
601 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
602 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
603 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
605 dprintk("VIDIOCGPICT / VIDIOC_G_FMT: %d\n",err
);
609 pict
->depth
= ((fmt2
->fmt
.pix
.bytesperline
<<3)
610 + (fmt2
->fmt
.pix
.width
-1) )
611 /fmt2
->fmt
.pix
.width
;
612 pict
->palette
= pixelformat_to_palette(
613 fmt2
->fmt
.pix
.pixelformat
);
616 case VIDIOCSPICT
: /* set tone controls & partial capture format */
618 struct video_picture
*pict
= arg
;
619 memset(&fbuf2
, 0, sizeof(fbuf2
));
621 set_v4l_control(inode
, file
,
622 V4L2_CID_BRIGHTNESS
, pict
->brightness
, drv
);
623 set_v4l_control(inode
, file
,
624 V4L2_CID_HUE
, pict
->hue
, drv
);
625 set_v4l_control(inode
, file
,
626 V4L2_CID_CONTRAST
, pict
->contrast
, drv
);
627 set_v4l_control(inode
, file
,
628 V4L2_CID_SATURATION
, pict
->colour
, drv
);
629 set_v4l_control(inode
, file
,
630 V4L2_CID_WHITENESS
, pict
->whiteness
, drv
);
632 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
633 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
634 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
636 dprintk("VIDIOCSPICT / VIDIOC_G_FMT: %d\n",err
);
637 if (fmt2
->fmt
.pix
.pixelformat
!=
638 palette_to_pixelformat(pict
->palette
)) {
639 fmt2
->fmt
.pix
.pixelformat
= palette_to_pixelformat(
641 err
= drv(inode
, file
, VIDIOC_S_FMT
, fmt2
);
643 dprintk("VIDIOCSPICT / VIDIOC_S_FMT: %d\n",err
);
646 err
= drv(inode
, file
, VIDIOC_G_FBUF
, &fbuf2
);
648 dprintk("VIDIOCSPICT / VIDIOC_G_FBUF: %d\n",err
);
649 if (fbuf2
.fmt
.pixelformat
!=
650 palette_to_pixelformat(pict
->palette
)) {
651 fbuf2
.fmt
.pixelformat
= palette_to_pixelformat(
653 err
= drv(inode
, file
, VIDIOC_S_FBUF
, &fbuf2
);
655 dprintk("VIDIOCSPICT / VIDIOC_S_FBUF: %d\n",err
);
656 err
= 0; /* likely fails for non-root */
660 case VIDIOCGTUNER
: /* get tuner information */
662 struct video_tuner
*tun
= arg
;
664 memset(&tun2
,0,sizeof(tun2
));
665 err
= drv(inode
, file
, VIDIOC_G_TUNER
, &tun2
);
667 dprintk("VIDIOCGTUNER / VIDIOC_G_TUNER: %d\n",err
);
670 memcpy(tun
->name
, tun2
.name
,
671 min(sizeof(tun
->name
), sizeof(tun2
.name
)));
672 tun
->name
[sizeof(tun
->name
) - 1] = 0;
673 tun
->rangelow
= tun2
.rangelow
;
674 tun
->rangehigh
= tun2
.rangehigh
;
676 tun
->mode
= VIDEO_MODE_AUTO
;
678 for (i
= 0; i
< 64; i
++) {
679 memset(&std2
,0,sizeof(std2
));
681 if (0 != drv(inode
, file
, VIDIOC_ENUMSTD
, &std2
))
683 if (std2
.id
& V4L2_STD_PAL
)
684 tun
->flags
|= VIDEO_TUNER_PAL
;
685 if (std2
.id
& V4L2_STD_NTSC
)
686 tun
->flags
|= VIDEO_TUNER_NTSC
;
687 if (std2
.id
& V4L2_STD_SECAM
)
688 tun
->flags
|= VIDEO_TUNER_SECAM
;
691 err
= drv(inode
, file
, VIDIOC_G_STD
, &sid
);
693 dprintk("VIDIOCGTUNER / VIDIOC_G_STD: %d\n",err
);
695 if (sid
& V4L2_STD_PAL
)
696 tun
->mode
= VIDEO_MODE_PAL
;
697 if (sid
& V4L2_STD_NTSC
)
698 tun
->mode
= VIDEO_MODE_NTSC
;
699 if (sid
& V4L2_STD_SECAM
)
700 tun
->mode
= VIDEO_MODE_SECAM
;
703 if (tun2
.capability
& V4L2_TUNER_CAP_LOW
)
704 tun
->flags
|= VIDEO_TUNER_LOW
;
705 if (tun2
.rxsubchans
& V4L2_TUNER_SUB_STEREO
)
706 tun
->flags
|= VIDEO_TUNER_STEREO_ON
;
707 tun
->signal
= tun2
.signal
;
710 case VIDIOCSTUNER
: /* select a tuner input */
712 struct video_tuner
*tun
= arg
;
714 memset(&t
,0,sizeof(t
));
718 err
= drv(inode
, file
, VIDIOC_S_INPUT
, &t
);
720 dprintk("VIDIOCSTUNER / VIDIOC_S_INPUT: %d\n",err
);
724 case VIDIOCGFREQ
: /* get frequency */
726 unsigned long *freq
= arg
;
727 memset(&freq2
,0,sizeof(freq2
));
730 err
= drv(inode
, file
, VIDIOC_G_FREQUENCY
, &freq2
);
732 dprintk("VIDIOCGFREQ / VIDIOC_G_FREQUENCY: %d\n",err
);
734 *freq
= freq2
.frequency
;
737 case VIDIOCSFREQ
: /* set frequency */
739 unsigned long *freq
= arg
;
740 memset(&freq2
,0,sizeof(freq2
));
742 drv(inode
, file
, VIDIOC_G_FREQUENCY
, &freq2
);
743 freq2
.frequency
= *freq
;
744 err
= drv(inode
, file
, VIDIOC_S_FREQUENCY
, &freq2
);
746 dprintk("VIDIOCSFREQ / VIDIOC_S_FREQUENCY: %d\n",err
);
749 case VIDIOCGAUDIO
: /* get audio properties/controls */
751 struct video_audio
*aud
= arg
;
752 memset(&aud2
,0,sizeof(aud2
));
754 err
= drv(inode
, file
, VIDIOC_G_AUDIO
, &aud2
);
756 dprintk("VIDIOCGAUDIO / VIDIOC_G_AUDIO: %d\n",err
);
759 memcpy(aud
->name
, aud2
.name
,
760 min(sizeof(aud
->name
), sizeof(aud2
.name
)));
761 aud
->name
[sizeof(aud
->name
) - 1] = 0;
762 aud
->audio
= aud2
.index
;
764 i
= get_v4l_control(inode
, file
, V4L2_CID_AUDIO_VOLUME
, drv
);
767 aud
->flags
|= VIDEO_AUDIO_VOLUME
;
769 i
= get_v4l_control(inode
, file
, V4L2_CID_AUDIO_BASS
, drv
);
772 aud
->flags
|= VIDEO_AUDIO_BASS
;
774 i
= get_v4l_control(inode
, file
, V4L2_CID_AUDIO_TREBLE
, drv
);
777 aud
->flags
|= VIDEO_AUDIO_TREBLE
;
779 i
= get_v4l_control(inode
, file
, V4L2_CID_AUDIO_BALANCE
, drv
);
782 aud
->flags
|= VIDEO_AUDIO_BALANCE
;
784 i
= get_v4l_control(inode
, file
, V4L2_CID_AUDIO_MUTE
, drv
);
787 aud
->flags
|= VIDEO_AUDIO_MUTE
;
788 aud
->flags
|= VIDEO_AUDIO_MUTABLE
;
791 qctrl2
.id
= V4L2_CID_AUDIO_VOLUME
;
792 if (drv(inode
, file
, VIDIOC_QUERYCTRL
, &qctrl2
) == 0 &&
793 !(qctrl2
.flags
& V4L2_CTRL_FLAG_DISABLED
))
794 aud
->step
= qctrl2
.step
;
797 memset(&tun2
,0,sizeof(tun2
));
798 err
= drv(inode
, file
, VIDIOC_G_TUNER
, &tun2
);
800 dprintk("VIDIOCGAUDIO / VIDIOC_G_TUNER: %d\n",err
);
805 if (tun2
.rxsubchans
& V4L2_TUNER_SUB_LANG2
)
806 aud
->mode
= VIDEO_SOUND_LANG1
| VIDEO_SOUND_LANG2
;
807 else if (tun2
.rxsubchans
& V4L2_TUNER_SUB_STEREO
)
808 aud
->mode
= VIDEO_SOUND_STEREO
;
809 else if (tun2
.rxsubchans
& V4L2_TUNER_SUB_MONO
)
810 aud
->mode
= VIDEO_SOUND_MONO
;
813 case VIDIOCSAUDIO
: /* set audio controls */
815 struct video_audio
*aud
= arg
;
817 memset(&aud2
,0,sizeof(aud2
));
818 memset(&tun2
,0,sizeof(tun2
));
820 aud2
.index
= aud
->audio
;
821 err
= drv(inode
, file
, VIDIOC_S_AUDIO
, &aud2
);
823 dprintk("VIDIOCSAUDIO / VIDIOC_S_AUDIO: %d\n",err
);
827 set_v4l_control(inode
, file
, V4L2_CID_AUDIO_VOLUME
,
829 set_v4l_control(inode
, file
, V4L2_CID_AUDIO_BASS
,
831 set_v4l_control(inode
, file
, V4L2_CID_AUDIO_TREBLE
,
833 set_v4l_control(inode
, file
, V4L2_CID_AUDIO_BALANCE
,
835 set_v4l_control(inode
, file
, V4L2_CID_AUDIO_MUTE
,
836 !!(aud
->flags
& VIDEO_AUDIO_MUTE
), drv
);
838 err
= drv(inode
, file
, VIDIOC_G_TUNER
, &tun2
);
840 dprintk("VIDIOCSAUDIO / VIDIOC_G_TUNER: %d\n",err
);
844 case VIDEO_SOUND_MONO
:
845 case VIDEO_SOUND_LANG1
:
846 tun2
.audmode
= V4L2_TUNER_MODE_MONO
;
848 case VIDEO_SOUND_STEREO
:
849 tun2
.audmode
= V4L2_TUNER_MODE_STEREO
;
851 case VIDEO_SOUND_LANG2
:
852 tun2
.audmode
= V4L2_TUNER_MODE_LANG2
;
855 err
= drv(inode
, file
, VIDIOC_S_TUNER
, &tun2
);
857 dprintk("VIDIOCSAUDIO / VIDIOC_S_TUNER: %d\n",err
);
862 case VIDIOCMCAPTURE
: /* capture a frame */
864 struct video_mmap
*mm
= arg
;
866 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
867 memset(&buf2
,0,sizeof(buf2
));
869 fmt2
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
870 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
872 dprintk("VIDIOCMCAPTURE / VIDIOC_G_FMT: %d\n",err
);
875 if (mm
->width
!= fmt2
->fmt
.pix
.width
||
876 mm
->height
!= fmt2
->fmt
.pix
.height
||
877 palette_to_pixelformat(mm
->format
) !=
878 fmt2
->fmt
.pix
.pixelformat
)
879 {/* New capture format... */
880 fmt2
->fmt
.pix
.width
= mm
->width
;
881 fmt2
->fmt
.pix
.height
= mm
->height
;
882 fmt2
->fmt
.pix
.pixelformat
=
883 palette_to_pixelformat(mm
->format
);
884 fmt2
->fmt
.pix
.field
= V4L2_FIELD_ANY
;
885 fmt2
->fmt
.pix
.bytesperline
= 0;
886 err
= drv(inode
, file
, VIDIOC_S_FMT
, fmt2
);
888 dprintk("VIDIOCMCAPTURE / VIDIOC_S_FMT: %d\n",err
);
892 buf2
.index
= mm
->frame
;
893 buf2
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
894 err
= drv(inode
, file
, VIDIOC_QUERYBUF
, &buf2
);
896 dprintk("VIDIOCMCAPTURE / VIDIOC_QUERYBUF: %d\n",err
);
899 err
= drv(inode
, file
, VIDIOC_QBUF
, &buf2
);
901 dprintk("VIDIOCMCAPTURE / VIDIOC_QBUF: %d\n",err
);
904 err
= drv(inode
, file
, VIDIOC_STREAMON
, &captype
);
906 dprintk("VIDIOCMCAPTURE / VIDIOC_STREAMON: %d\n",err
);
909 case VIDIOCSYNC
: /* wait for a frame */
913 memset(&buf2
,0,sizeof(buf2
));
915 buf2
.type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
916 err
= drv(inode
, file
, VIDIOC_QUERYBUF
, &buf2
);
919 dprintk("VIDIOCSYNC / VIDIOC_QUERYBUF: %d\n",err
);
922 if (!(buf2
.flags
& V4L2_BUF_FLAG_MAPPED
)) {
923 /* Buffer is not mapped */
928 /* make sure capture actually runs so we don't block forever */
929 err
= drv(inode
, file
, VIDIOC_STREAMON
, &captype
);
931 dprintk("VIDIOCSYNC / VIDIOC_STREAMON: %d\n",err
);
935 /* Loop as long as the buffer is queued, but not done */
937 (V4L2_BUF_FLAG_QUEUED
| V4L2_BUF_FLAG_DONE
))
938 == V4L2_BUF_FLAG_QUEUED
)
940 err
= poll_one(file
);
941 if (err
< 0 || /* error or sleep was interrupted */
942 err
== 0) /* timeout? Shouldn't occur. */
944 err
= drv(inode
, file
, VIDIOC_QUERYBUF
, &buf2
);
946 dprintk("VIDIOCSYNC / VIDIOC_QUERYBUF: %d\n",err
);
948 if (!(buf2
.flags
& V4L2_BUF_FLAG_DONE
)) /* not done */
951 err
= drv(inode
, file
, VIDIOC_DQBUF
, &buf2
);
953 dprintk("VIDIOCSYNC / VIDIOC_DQBUF: %d\n",err
);
954 } while (err
== 0 && buf2
.index
!= *i
);
958 case VIDIOCGVBIFMT
: /* query VBI data capture format */
960 struct vbi_format
*fmt
= arg
;
962 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
963 fmt2
->type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
965 err
= drv(inode
, file
, VIDIOC_G_FMT
, fmt2
);
967 dprintk("VIDIOCGVBIFMT / VIDIOC_G_FMT: %d\n", err
);
970 if (fmt2
->fmt
.vbi
.sample_format
!= V4L2_PIX_FMT_GREY
) {
974 memset(fmt
, 0, sizeof(*fmt
));
975 fmt
->samples_per_line
= fmt2
->fmt
.vbi
.samples_per_line
;
976 fmt
->sampling_rate
= fmt2
->fmt
.vbi
.sampling_rate
;
977 fmt
->sample_format
= VIDEO_PALETTE_RAW
;
978 fmt
->start
[0] = fmt2
->fmt
.vbi
.start
[0];
979 fmt
->count
[0] = fmt2
->fmt
.vbi
.count
[0];
980 fmt
->start
[1] = fmt2
->fmt
.vbi
.start
[1];
981 fmt
->count
[1] = fmt2
->fmt
.vbi
.count
[1];
982 fmt
->flags
= fmt2
->fmt
.vbi
.flags
& 0x03;
987 struct vbi_format
*fmt
= arg
;
989 if (VIDEO_PALETTE_RAW
!= fmt
->sample_format
) {
994 fmt2
= kzalloc(sizeof(*fmt2
),GFP_KERNEL
);
996 fmt2
->type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
997 fmt2
->fmt
.vbi
.samples_per_line
= fmt
->samples_per_line
;
998 fmt2
->fmt
.vbi
.sampling_rate
= fmt
->sampling_rate
;
999 fmt2
->fmt
.vbi
.sample_format
= V4L2_PIX_FMT_GREY
;
1000 fmt2
->fmt
.vbi
.start
[0] = fmt
->start
[0];
1001 fmt2
->fmt
.vbi
.count
[0] = fmt
->count
[0];
1002 fmt2
->fmt
.vbi
.start
[1] = fmt
->start
[1];
1003 fmt2
->fmt
.vbi
.count
[1] = fmt
->count
[1];
1004 fmt2
->fmt
.vbi
.flags
= fmt
->flags
;
1005 err
= drv(inode
, file
, VIDIOC_TRY_FMT
, fmt2
);
1007 dprintk("VIDIOCSVBIFMT / VIDIOC_TRY_FMT: %d\n", err
);
1011 if (fmt2
->fmt
.vbi
.samples_per_line
!= fmt
->samples_per_line
||
1012 fmt2
->fmt
.vbi
.sampling_rate
!= fmt
->sampling_rate
||
1013 fmt2
->fmt
.vbi
.sample_format
!= V4L2_PIX_FMT_GREY
||
1014 fmt2
->fmt
.vbi
.start
[0] != fmt
->start
[0] ||
1015 fmt2
->fmt
.vbi
.count
[0] != fmt
->count
[0] ||
1016 fmt2
->fmt
.vbi
.start
[1] != fmt
->start
[1] ||
1017 fmt2
->fmt
.vbi
.count
[1] != fmt
->count
[1] ||
1018 fmt2
->fmt
.vbi
.flags
!= fmt
->flags
) {
1022 err
= drv(inode
, file
, VIDIOC_S_FMT
, fmt2
);
1024 dprintk("VIDIOCSVBIFMT / VIDIOC_S_FMT: %d\n", err
);
1038 EXPORT_SYMBOL(v4l_compat_translate_ioctl
);