2 em28xx-video.c - driver for Empia EM2800/EM2820/2840 USB
5 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
6 Markus Rechberger <mrechberger@gmail.com>
7 Mauro Carvalho Chehab <mchehab@infradead.org>
8 Sascha Sommer <saschasommer@freenet.de>
10 Some parts based on SN9C10x PC Camera Controllers GPL driver made
11 by Luca Risolia <luca.risolia@studio.unibo.it>
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/bitmap.h>
33 #include <linux/usb.h>
34 #include <linux/i2c.h>
35 #include <linux/version.h>
37 #include <linux/mutex.h>
40 #include <media/v4l2-common.h>
41 #include <media/v4l2-ioctl.h>
42 #include <media/v4l2-chip-ident.h>
43 #include <media/msp3400.h>
44 #include <media/tuner.h>
46 #define DRIVER_AUTHOR "Ludovico Cavedon <cavedon@sssup.it>, " \
47 "Markus Rechberger <mrechberger@gmail.com>, " \
48 "Mauro Carvalho Chehab <mchehab@infradead.org>, " \
49 "Sascha Sommer <saschasommer@freenet.de>"
51 #define DRIVER_DESC "Empia em28xx based USB video device driver"
52 #define EM28XX_VERSION_CODE KERNEL_VERSION(0, 1, 2)
54 #define em28xx_videodbg(fmt, arg...) do {\
56 printk(KERN_INFO "%s %s :"fmt, \
57 dev->name, __func__ , ##arg); } while (0)
59 static unsigned int isoc_debug
;
60 module_param(isoc_debug
, int, 0644);
61 MODULE_PARM_DESC(isoc_debug
, "enable debug messages [isoc transfers]");
63 #define em28xx_isocdbg(fmt, arg...) \
66 printk(KERN_INFO "%s %s :"fmt, \
67 dev->name, __func__ , ##arg); \
71 MODULE_AUTHOR(DRIVER_AUTHOR
);
72 MODULE_DESCRIPTION(DRIVER_DESC
);
73 MODULE_LICENSE("GPL");
75 static unsigned int video_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
76 static unsigned int vbi_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
77 static unsigned int radio_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
79 module_param_array(video_nr
, int, NULL
, 0444);
80 module_param_array(vbi_nr
, int, NULL
, 0444);
81 module_param_array(radio_nr
, int, NULL
, 0444);
82 MODULE_PARM_DESC(video_nr
, "video device numbers");
83 MODULE_PARM_DESC(vbi_nr
, "vbi device numbers");
84 MODULE_PARM_DESC(radio_nr
, "radio device numbers");
86 static unsigned int video_debug
;
87 module_param(video_debug
, int, 0644);
88 MODULE_PARM_DESC(video_debug
, "enable debug messages [video]");
90 /* supported video standards */
91 static struct em28xx_fmt format
[] = {
93 .name
= "16 bpp YUY2, 4:2:2, packed",
94 .fourcc
= V4L2_PIX_FMT_YUYV
,
96 .reg
= EM28XX_OUTFMT_YUV422_Y0UY1V
,
98 .name
= "16 bpp RGB 565, LE",
99 .fourcc
= V4L2_PIX_FMT_RGB565
,
101 .reg
= EM28XX_OUTFMT_RGB_16_656
,
103 .name
= "8 bpp Bayer BGBG..GRGR",
104 .fourcc
= V4L2_PIX_FMT_SBGGR8
,
106 .reg
= EM28XX_OUTFMT_RGB_8_BGBG
,
108 .name
= "8 bpp Bayer GRGR..BGBG",
109 .fourcc
= V4L2_PIX_FMT_SGRBG8
,
111 .reg
= EM28XX_OUTFMT_RGB_8_GRGR
,
113 .name
= "8 bpp Bayer GBGB..RGRG",
114 .fourcc
= V4L2_PIX_FMT_SGBRG8
,
116 .reg
= EM28XX_OUTFMT_RGB_8_GBGB
,
118 .name
= "12 bpp YUV411",
119 .fourcc
= V4L2_PIX_FMT_YUV411P
,
121 .reg
= EM28XX_OUTFMT_YUV411
,
125 /* supported controls */
126 /* Common to all boards */
127 static struct v4l2_queryctrl em28xx_qctrl
[] = {
129 .id
= V4L2_CID_AUDIO_VOLUME
,
130 .type
= V4L2_CTRL_TYPE_INTEGER
,
135 .default_value
= 0x1f,
138 .id
= V4L2_CID_AUDIO_MUTE
,
139 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
149 /* ------------------------------------------------------------------
150 DMA and thread functions
151 ------------------------------------------------------------------*/
154 * Announces that a buffer were filled and request the next
156 static inline void buffer_filled(struct em28xx
*dev
,
157 struct em28xx_dmaqueue
*dma_q
,
158 struct em28xx_buffer
*buf
)
160 /* Advice that buffer was filled */
161 em28xx_isocdbg("[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
162 buf
->vb
.state
= VIDEOBUF_DONE
;
163 buf
->vb
.field_count
++;
164 do_gettimeofday(&buf
->vb
.ts
);
166 dev
->isoc_ctl
.buf
= NULL
;
168 list_del(&buf
->vb
.queue
);
169 wake_up(&buf
->vb
.done
);
173 * Identify the buffer header type and properly handles
175 static void em28xx_copy_video(struct em28xx
*dev
,
176 struct em28xx_dmaqueue
*dma_q
,
177 struct em28xx_buffer
*buf
,
179 unsigned char *outp
, unsigned long len
)
181 void *fieldstart
, *startwrite
, *startread
;
182 int linesdone
, currlinedone
, offset
, lencopy
, remain
;
183 int bytesperline
= dev
->width
<< 1;
185 if (dma_q
->pos
+ len
> buf
->vb
.size
)
186 len
= buf
->vb
.size
- dma_q
->pos
;
188 if (p
[0] != 0x88 && p
[0] != 0x22) {
189 em28xx_isocdbg("frame is not complete\n");
197 if (dev
->progressive
)
200 /* Interlaces two half frames */
204 fieldstart
= outp
+ bytesperline
;
207 linesdone
= dma_q
->pos
/ bytesperline
;
208 currlinedone
= dma_q
->pos
% bytesperline
;
210 if (dev
->progressive
)
211 offset
= linesdone
* bytesperline
+ currlinedone
;
213 offset
= linesdone
* bytesperline
* 2 + currlinedone
;
215 startwrite
= fieldstart
+ offset
;
216 lencopy
= bytesperline
- currlinedone
;
217 lencopy
= lencopy
> remain
? remain
: lencopy
;
219 if ((char *)startwrite
+ lencopy
> (char *)outp
+ buf
->vb
.size
) {
220 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
221 ((char *)startwrite
+ lencopy
) -
222 ((char *)outp
+ buf
->vb
.size
));
223 remain
= (char *)outp
+ buf
->vb
.size
- (char *)startwrite
;
228 memcpy(startwrite
, startread
, lencopy
);
233 startwrite
+= lencopy
+ bytesperline
;
234 startread
+= lencopy
;
235 if (bytesperline
> remain
)
238 lencopy
= bytesperline
;
240 if ((char *)startwrite
+ lencopy
> (char *)outp
+
242 em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
243 ((char *)startwrite
+ lencopy
) -
244 ((char *)outp
+ buf
->vb
.size
));
245 lencopy
= remain
= (char *)outp
+ buf
->vb
.size
-
251 memcpy(startwrite
, startread
, lencopy
);
259 static inline void print_err_status(struct em28xx
*dev
,
260 int packet
, int status
)
262 char *errmsg
= "Unknown";
266 errmsg
= "unlinked synchronuously";
269 errmsg
= "unlinked asynchronuously";
272 errmsg
= "Buffer error (overrun)";
275 errmsg
= "Stalled (device not responding)";
278 errmsg
= "Babble (bad cable?)";
281 errmsg
= "Bit-stuff error (bad cable?)";
284 errmsg
= "CRC/Timeout (could be anything)";
287 errmsg
= "Device does not respond";
291 em28xx_isocdbg("URB status %d [%s].\n", status
, errmsg
);
293 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
294 packet
, status
, errmsg
);
299 * video-buf generic routine to get the next available buffer
301 static inline void get_next_buf(struct em28xx_dmaqueue
*dma_q
,
302 struct em28xx_buffer
**buf
)
304 struct em28xx
*dev
= container_of(dma_q
, struct em28xx
, vidq
);
307 if (list_empty(&dma_q
->active
)) {
308 em28xx_isocdbg("No active queue to serve\n");
309 dev
->isoc_ctl
.buf
= NULL
;
314 /* Get the next buffer */
315 *buf
= list_entry(dma_q
->active
.next
, struct em28xx_buffer
, vb
.queue
);
317 /* Cleans up buffer - Usefull for testing for frame/URB loss */
318 outp
= videobuf_to_vmalloc(&(*buf
)->vb
);
319 memset(outp
, 0, (*buf
)->vb
.size
);
321 dev
->isoc_ctl
.buf
= *buf
;
327 * Controls the isoc copy of each urb packet
329 static inline int em28xx_isoc_copy(struct em28xx
*dev
, struct urb
*urb
)
331 struct em28xx_buffer
*buf
;
332 struct em28xx_dmaqueue
*dma_q
= urb
->context
;
333 unsigned char *outp
= NULL
;
334 int i
, len
= 0, rc
= 1;
340 if ((dev
->state
& DEV_DISCONNECTED
) || (dev
->state
& DEV_MISCONFIGURED
))
343 if (urb
->status
< 0) {
344 print_err_status(dev
, -1, urb
->status
);
345 if (urb
->status
== -ENOENT
)
349 buf
= dev
->isoc_ctl
.buf
;
351 outp
= videobuf_to_vmalloc(&buf
->vb
);
353 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
354 int status
= urb
->iso_frame_desc
[i
].status
;
357 print_err_status(dev
, i
, status
);
358 if (urb
->iso_frame_desc
[i
].status
!= -EPROTO
)
362 len
= urb
->iso_frame_desc
[i
].actual_length
- 4;
364 if (urb
->iso_frame_desc
[i
].actual_length
<= 0) {
365 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
368 if (urb
->iso_frame_desc
[i
].actual_length
>
370 em28xx_isocdbg("packet bigger than packet size");
374 p
= urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
376 /* FIXME: incomplete buffer checks where removed to make
377 logic simpler. Impacts of those changes should be evaluated
379 if (p
[0] == 0x33 && p
[1] == 0x95 && p
[2] == 0x00) {
380 em28xx_isocdbg("VBI HEADER!!!\n");
381 /* FIXME: Should add vbi copy */
384 if (p
[0] == 0x22 && p
[1] == 0x5a) {
385 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p
[2],
386 len
, (p
[2] & 1) ? "odd" : "even");
388 if (dev
->progressive
|| !(p
[2] & 1)) {
390 buffer_filled(dev
, dma_q
, buf
);
391 get_next_buf(dma_q
, &buf
);
395 outp
= videobuf_to_vmalloc(&buf
->vb
);
408 em28xx_copy_video(dev
, dma_q
, buf
, p
, outp
, len
);
413 /* ------------------------------------------------------------------
415 ------------------------------------------------------------------*/
418 buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
, unsigned int *size
)
420 struct em28xx_fh
*fh
= vq
->priv_data
;
421 struct em28xx
*dev
= fh
->dev
;
422 struct v4l2_frequency f
;
424 *size
= (fh
->dev
->width
* fh
->dev
->height
* dev
->format
->depth
+ 7) >> 3;
427 *count
= EM28XX_DEF_BUF
;
429 if (*count
< EM28XX_MIN_BUF
)
430 *count
= EM28XX_MIN_BUF
;
432 /* Ask tuner to go to analog or radio mode */
433 memset(&f
, 0, sizeof(f
));
434 f
.frequency
= dev
->ctl_freq
;
435 f
.type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
437 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, &f
);
442 /* This is called *without* dev->slock held; please keep it that way */
443 static void free_buffer(struct videobuf_queue
*vq
, struct em28xx_buffer
*buf
)
445 struct em28xx_fh
*fh
= vq
->priv_data
;
446 struct em28xx
*dev
= fh
->dev
;
447 unsigned long flags
= 0;
451 /* We used to wait for the buffer to finish here, but this didn't work
452 because, as we were keeping the state as VIDEOBUF_QUEUED,
453 videobuf_queue_cancel marked it as finished for us.
454 (Also, it could wedge forever if the hardware was misconfigured.)
456 This should be safe; by the time we get here, the buffer isn't
457 queued anymore. If we ever start marking the buffers as
458 VIDEOBUF_ACTIVE, it won't be, though.
460 spin_lock_irqsave(&dev
->slock
, flags
);
461 if (dev
->isoc_ctl
.buf
== buf
)
462 dev
->isoc_ctl
.buf
= NULL
;
463 spin_unlock_irqrestore(&dev
->slock
, flags
);
465 videobuf_vmalloc_free(&buf
->vb
);
466 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
470 buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
471 enum v4l2_field field
)
473 struct em28xx_fh
*fh
= vq
->priv_data
;
474 struct em28xx_buffer
*buf
= container_of(vb
, struct em28xx_buffer
, vb
);
475 struct em28xx
*dev
= fh
->dev
;
476 int rc
= 0, urb_init
= 0;
478 buf
->vb
.size
= (fh
->dev
->width
* fh
->dev
->height
* dev
->format
->depth
+ 7) >> 3;
480 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
483 buf
->vb
.width
= dev
->width
;
484 buf
->vb
.height
= dev
->height
;
485 buf
->vb
.field
= field
;
487 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
488 rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
);
493 if (!dev
->isoc_ctl
.num_bufs
)
497 rc
= em28xx_init_isoc(dev
, EM28XX_NUM_PACKETS
,
498 EM28XX_NUM_BUFS
, dev
->max_pkt_size
,
504 buf
->vb
.state
= VIDEOBUF_PREPARED
;
508 free_buffer(vq
, buf
);
513 buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
515 struct em28xx_buffer
*buf
= container_of(vb
,
516 struct em28xx_buffer
,
518 struct em28xx_fh
*fh
= vq
->priv_data
;
519 struct em28xx
*dev
= fh
->dev
;
520 struct em28xx_dmaqueue
*vidq
= &dev
->vidq
;
522 buf
->vb
.state
= VIDEOBUF_QUEUED
;
523 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
527 static void buffer_release(struct videobuf_queue
*vq
,
528 struct videobuf_buffer
*vb
)
530 struct em28xx_buffer
*buf
= container_of(vb
,
531 struct em28xx_buffer
,
533 struct em28xx_fh
*fh
= vq
->priv_data
;
534 struct em28xx
*dev
= (struct em28xx
*)fh
->dev
;
536 em28xx_isocdbg("em28xx: called buffer_release\n");
538 free_buffer(vq
, buf
);
541 static struct videobuf_queue_ops em28xx_video_qops
= {
542 .buf_setup
= buffer_setup
,
543 .buf_prepare
= buffer_prepare
,
544 .buf_queue
= buffer_queue
,
545 .buf_release
= buffer_release
,
548 /********************* v4l2 interface **************************************/
550 static void video_mux(struct em28xx
*dev
, int index
)
552 dev
->ctl_input
= index
;
553 dev
->ctl_ainput
= INPUT(index
)->amux
;
554 dev
->ctl_aoutput
= INPUT(index
)->aout
;
556 if (!dev
->ctl_aoutput
)
557 dev
->ctl_aoutput
= EM28XX_AOUT_MASTER
;
559 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_routing
,
560 INPUT(index
)->vmux
, 0, 0);
562 if (dev
->board
.has_msp34xx
) {
563 if (dev
->i2s_speed
) {
564 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
,
565 s_i2s_clock_freq
, dev
->i2s_speed
);
567 /* Note: this is msp3400 specific */
568 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
, s_routing
,
569 dev
->ctl_ainput
, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1
), 0);
572 if (dev
->board
.adecoder
!= EM28XX_NOADECODER
) {
573 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
, s_routing
,
574 dev
->ctl_ainput
, dev
->ctl_aoutput
, 0);
577 em28xx_audio_analog_set(dev
);
580 /* Usage lock check functions */
581 static int res_get(struct em28xx_fh
*fh
)
583 struct em28xx
*dev
= fh
->dev
;
586 /* This instance already has stream_on */
598 static int res_check(struct em28xx_fh
*fh
)
600 return fh
->stream_on
;
603 static void res_free(struct em28xx_fh
*fh
)
605 struct em28xx
*dev
= fh
->dev
;
613 * return the current saturation, brightness or contrast, mute state
615 static int em28xx_get_ctrl(struct em28xx
*dev
, struct v4l2_control
*ctrl
)
618 case V4L2_CID_AUDIO_MUTE
:
619 ctrl
->value
= dev
->mute
;
621 case V4L2_CID_AUDIO_VOLUME
:
622 ctrl
->value
= dev
->volume
;
631 * mute or set new saturation, brightness or contrast
633 static int em28xx_set_ctrl(struct em28xx
*dev
, const struct v4l2_control
*ctrl
)
636 case V4L2_CID_AUDIO_MUTE
:
637 if (ctrl
->value
!= dev
->mute
) {
638 dev
->mute
= ctrl
->value
;
639 return em28xx_audio_analog_set(dev
);
642 case V4L2_CID_AUDIO_VOLUME
:
643 dev
->volume
= ctrl
->value
;
644 return em28xx_audio_analog_set(dev
);
650 static int check_dev(struct em28xx
*dev
)
652 if (dev
->state
& DEV_DISCONNECTED
) {
653 em28xx_errdev("v4l2 ioctl: device not present\n");
657 if (dev
->state
& DEV_MISCONFIGURED
) {
658 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
659 "close and open it again\n");
665 static void get_scale(struct em28xx
*dev
,
666 unsigned int width
, unsigned int height
,
667 unsigned int *hscale
, unsigned int *vscale
)
669 unsigned int maxw
= norm_maxw(dev
);
670 unsigned int maxh
= norm_maxh(dev
);
672 *hscale
= (((unsigned long)maxw
) << 12) / width
- 4096L;
673 if (*hscale
>= 0x4000)
676 *vscale
= (((unsigned long)maxh
) << 12) / height
- 4096L;
677 if (*vscale
>= 0x4000)
681 /* ------------------------------------------------------------------
682 IOCTL vidioc handling
683 ------------------------------------------------------------------*/
685 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
686 struct v4l2_format
*f
)
688 struct em28xx_fh
*fh
= priv
;
689 struct em28xx
*dev
= fh
->dev
;
691 mutex_lock(&dev
->lock
);
693 f
->fmt
.pix
.width
= dev
->width
;
694 f
->fmt
.pix
.height
= dev
->height
;
695 f
->fmt
.pix
.pixelformat
= dev
->format
->fourcc
;
696 f
->fmt
.pix
.bytesperline
= (dev
->width
* dev
->format
->depth
+ 7) >> 3;
697 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.bytesperline
* dev
->height
;
698 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
700 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
701 if (dev
->progressive
)
702 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
704 f
->fmt
.pix
.field
= dev
->interlaced
?
705 V4L2_FIELD_INTERLACED
: V4L2_FIELD_TOP
;
707 mutex_unlock(&dev
->lock
);
711 static struct em28xx_fmt
*format_by_fourcc(unsigned int fourcc
)
715 for (i
= 0; i
< ARRAY_SIZE(format
); i
++)
716 if (format
[i
].fourcc
== fourcc
)
722 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
723 struct v4l2_format
*f
)
725 struct em28xx_fh
*fh
= priv
;
726 struct em28xx
*dev
= fh
->dev
;
727 unsigned int width
= f
->fmt
.pix
.width
;
728 unsigned int height
= f
->fmt
.pix
.height
;
729 unsigned int maxw
= norm_maxw(dev
);
730 unsigned int maxh
= norm_maxh(dev
);
731 unsigned int hscale
, vscale
;
732 struct em28xx_fmt
*fmt
;
734 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
736 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
737 f
->fmt
.pix
.pixelformat
);
741 if (dev
->board
.is_em2800
) {
742 /* the em2800 can only scale down to 50% */
743 height
= height
> (3 * maxh
/ 4) ? maxh
: maxh
/ 2;
744 width
= width
> (3 * maxw
/ 4) ? maxw
: maxw
/ 2;
745 /* According to empiatech support the MaxPacketSize is too small
746 * to support framesizes larger than 640x480 @ 30 fps or 640x576
747 * @ 25 fps. As this would cut of a part of the image we prefer
748 * 360x576 or 360x480 for now */
749 if (width
== maxw
&& height
== maxh
)
752 /* width must even because of the YUYV format
753 height must be even because of interlacing */
754 v4l_bound_align_image(&width
, 48, maxw
, 1, &height
, 32, maxh
, 1, 0);
757 get_scale(dev
, width
, height
, &hscale
, &vscale
);
759 width
= (((unsigned long)maxw
) << 12) / (hscale
+ 4096L);
760 height
= (((unsigned long)maxh
) << 12) / (vscale
+ 4096L);
762 f
->fmt
.pix
.width
= width
;
763 f
->fmt
.pix
.height
= height
;
764 f
->fmt
.pix
.pixelformat
= fmt
->fourcc
;
765 f
->fmt
.pix
.bytesperline
= (dev
->width
* fmt
->depth
+ 7) >> 3;
766 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.bytesperline
* height
;
767 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
768 if (dev
->progressive
)
769 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
771 f
->fmt
.pix
.field
= dev
->interlaced
?
772 V4L2_FIELD_INTERLACED
: V4L2_FIELD_TOP
;
777 static int em28xx_set_video_format(struct em28xx
*dev
, unsigned int fourcc
,
778 unsigned width
, unsigned height
)
780 struct em28xx_fmt
*fmt
;
782 fmt
= format_by_fourcc(fourcc
);
788 dev
->height
= height
;
790 /* set new image size */
791 get_scale(dev
, dev
->width
, dev
->height
, &dev
->hscale
, &dev
->vscale
);
793 em28xx_set_alternate(dev
);
794 em28xx_resolution_set(dev
);
799 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
800 struct v4l2_format
*f
)
802 struct em28xx_fh
*fh
= priv
;
803 struct em28xx
*dev
= fh
->dev
;
810 mutex_lock(&dev
->lock
);
812 vidioc_try_fmt_vid_cap(file
, priv
, f
);
814 if (videobuf_queue_is_busy(&fh
->vb_vidq
)) {
815 em28xx_errdev("%s queue busy\n", __func__
);
820 if (dev
->stream_on
&& !fh
->stream_on
) {
821 em28xx_errdev("%s device in use by another fh\n", __func__
);
826 rc
= em28xx_set_video_format(dev
, f
->fmt
.pix
.pixelformat
,
827 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
);
830 mutex_unlock(&dev
->lock
);
834 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
836 struct em28xx_fh
*fh
= priv
;
837 struct em28xx
*dev
= fh
->dev
;
838 struct v4l2_format f
;
845 mutex_lock(&dev
->lock
);
848 /* Adjusts width/height, if needed */
849 f
.fmt
.pix
.width
= dev
->width
;
850 f
.fmt
.pix
.height
= dev
->height
;
851 vidioc_try_fmt_vid_cap(file
, priv
, &f
);
853 /* set new image size */
854 dev
->width
= f
.fmt
.pix
.width
;
855 dev
->height
= f
.fmt
.pix
.height
;
856 get_scale(dev
, dev
->width
, dev
->height
, &dev
->hscale
, &dev
->vscale
);
858 em28xx_resolution_set(dev
);
859 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_std
, dev
->norm
);
861 mutex_unlock(&dev
->lock
);
865 static int vidioc_g_parm(struct file
*file
, void *priv
,
866 struct v4l2_streamparm
*p
)
868 struct em28xx_fh
*fh
= priv
;
869 struct em28xx
*dev
= fh
->dev
;
872 if (p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
875 if (dev
->board
.is_webcam
)
876 rc
= v4l2_device_call_until_err(&dev
->v4l2_dev
, 0,
879 v4l2_video_std_frame_period(dev
->norm
,
880 &p
->parm
.capture
.timeperframe
);
885 static int vidioc_s_parm(struct file
*file
, void *priv
,
886 struct v4l2_streamparm
*p
)
888 struct em28xx_fh
*fh
= priv
;
889 struct em28xx
*dev
= fh
->dev
;
891 if (!dev
->board
.is_webcam
)
894 if (p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
897 return v4l2_device_call_until_err(&dev
->v4l2_dev
, 0, video
, s_parm
, p
);
900 static const char *iname
[] = {
901 [EM28XX_VMUX_COMPOSITE1
] = "Composite1",
902 [EM28XX_VMUX_COMPOSITE2
] = "Composite2",
903 [EM28XX_VMUX_COMPOSITE3
] = "Composite3",
904 [EM28XX_VMUX_COMPOSITE4
] = "Composite4",
905 [EM28XX_VMUX_SVIDEO
] = "S-Video",
906 [EM28XX_VMUX_TELEVISION
] = "Television",
907 [EM28XX_VMUX_CABLE
] = "Cable TV",
908 [EM28XX_VMUX_DVB
] = "DVB",
909 [EM28XX_VMUX_DEBUG
] = "for debug only",
912 static int vidioc_enum_input(struct file
*file
, void *priv
,
913 struct v4l2_input
*i
)
915 struct em28xx_fh
*fh
= priv
;
916 struct em28xx
*dev
= fh
->dev
;
920 if (n
>= MAX_EM28XX_INPUT
)
922 if (0 == INPUT(n
)->type
)
926 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
928 strcpy(i
->name
, iname
[INPUT(n
)->type
]);
930 if ((EM28XX_VMUX_TELEVISION
== INPUT(n
)->type
) ||
931 (EM28XX_VMUX_CABLE
== INPUT(n
)->type
))
932 i
->type
= V4L2_INPUT_TYPE_TUNER
;
934 i
->std
= dev
->vdev
->tvnorms
;
939 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
941 struct em28xx_fh
*fh
= priv
;
942 struct em28xx
*dev
= fh
->dev
;
949 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
951 struct em28xx_fh
*fh
= priv
;
952 struct em28xx
*dev
= fh
->dev
;
959 if (i
>= MAX_EM28XX_INPUT
)
961 if (0 == INPUT(i
)->type
)
966 mutex_lock(&dev
->lock
);
967 video_mux(dev
, dev
->ctl_input
);
968 mutex_unlock(&dev
->lock
);
972 static int vidioc_g_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
974 struct em28xx_fh
*fh
= priv
;
975 struct em28xx
*dev
= fh
->dev
;
978 case EM28XX_AMUX_VIDEO
:
979 strcpy(a
->name
, "Television");
981 case EM28XX_AMUX_LINE_IN
:
982 strcpy(a
->name
, "Line In");
984 case EM28XX_AMUX_VIDEO2
:
985 strcpy(a
->name
, "Television alt");
987 case EM28XX_AMUX_PHONE
:
988 strcpy(a
->name
, "Phone");
990 case EM28XX_AMUX_MIC
:
991 strcpy(a
->name
, "Mic");
994 strcpy(a
->name
, "CD");
996 case EM28XX_AMUX_AUX
:
997 strcpy(a
->name
, "Aux");
999 case EM28XX_AMUX_PCM_OUT
:
1000 strcpy(a
->name
, "PCM");
1006 a
->index
= dev
->ctl_ainput
;
1007 a
->capability
= V4L2_AUDCAP_STEREO
;
1012 static int vidioc_s_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
1014 struct em28xx_fh
*fh
= priv
;
1015 struct em28xx
*dev
= fh
->dev
;
1018 if (a
->index
>= MAX_EM28XX_INPUT
)
1020 if (0 == INPUT(a
->index
)->type
)
1023 mutex_lock(&dev
->lock
);
1025 dev
->ctl_ainput
= INPUT(a
->index
)->amux
;
1026 dev
->ctl_aoutput
= INPUT(a
->index
)->aout
;
1028 if (!dev
->ctl_aoutput
)
1029 dev
->ctl_aoutput
= EM28XX_AOUT_MASTER
;
1031 mutex_unlock(&dev
->lock
);
1035 static int vidioc_queryctrl(struct file
*file
, void *priv
,
1036 struct v4l2_queryctrl
*qc
)
1038 struct em28xx_fh
*fh
= priv
;
1039 struct em28xx
*dev
= fh
->dev
;
1044 rc
= check_dev(dev
);
1048 memset(qc
, 0, sizeof(*qc
));
1052 if (!dev
->board
.has_msp34xx
) {
1053 for (i
= 0; i
< ARRAY_SIZE(em28xx_qctrl
); i
++) {
1054 if (qc
->id
&& qc
->id
== em28xx_qctrl
[i
].id
) {
1055 memcpy(qc
, &(em28xx_qctrl
[i
]), sizeof(*qc
));
1061 mutex_lock(&dev
->lock
);
1062 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, queryctrl
, qc
);
1063 mutex_unlock(&dev
->lock
);
1071 static int vidioc_g_ctrl(struct file
*file
, void *priv
,
1072 struct v4l2_control
*ctrl
)
1074 struct em28xx_fh
*fh
= priv
;
1075 struct em28xx
*dev
= fh
->dev
;
1078 rc
= check_dev(dev
);
1083 mutex_lock(&dev
->lock
);
1085 if (dev
->board
.has_msp34xx
)
1086 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_ctrl
, ctrl
);
1088 rc
= em28xx_get_ctrl(dev
, ctrl
);
1090 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_ctrl
, ctrl
);
1095 mutex_unlock(&dev
->lock
);
1099 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
1100 struct v4l2_control
*ctrl
)
1102 struct em28xx_fh
*fh
= priv
;
1103 struct em28xx
*dev
= fh
->dev
;
1107 rc
= check_dev(dev
);
1111 mutex_lock(&dev
->lock
);
1113 if (dev
->board
.has_msp34xx
)
1114 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_ctrl
, ctrl
);
1117 for (i
= 0; i
< ARRAY_SIZE(em28xx_qctrl
); i
++) {
1118 if (ctrl
->id
== em28xx_qctrl
[i
].id
) {
1119 if (ctrl
->value
< em28xx_qctrl
[i
].minimum
||
1120 ctrl
->value
> em28xx_qctrl
[i
].maximum
) {
1125 rc
= em28xx_set_ctrl(dev
, ctrl
);
1131 /* Control not found - try to send it to the attached devices */
1133 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_ctrl
, ctrl
);
1137 mutex_unlock(&dev
->lock
);
1141 static int vidioc_g_tuner(struct file
*file
, void *priv
,
1142 struct v4l2_tuner
*t
)
1144 struct em28xx_fh
*fh
= priv
;
1145 struct em28xx
*dev
= fh
->dev
;
1148 rc
= check_dev(dev
);
1155 strcpy(t
->name
, "Tuner");
1157 mutex_lock(&dev
->lock
);
1158 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1159 mutex_unlock(&dev
->lock
);
1164 static int vidioc_s_tuner(struct file
*file
, void *priv
,
1165 struct v4l2_tuner
*t
)
1167 struct em28xx_fh
*fh
= priv
;
1168 struct em28xx
*dev
= fh
->dev
;
1171 rc
= check_dev(dev
);
1178 mutex_lock(&dev
->lock
);
1179 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1180 mutex_unlock(&dev
->lock
);
1185 static int vidioc_g_frequency(struct file
*file
, void *priv
,
1186 struct v4l2_frequency
*f
)
1188 struct em28xx_fh
*fh
= priv
;
1189 struct em28xx
*dev
= fh
->dev
;
1191 mutex_lock(&dev
->lock
);
1192 f
->type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1193 f
->frequency
= dev
->ctl_freq
;
1194 mutex_unlock(&dev
->lock
);
1199 static int vidioc_s_frequency(struct file
*file
, void *priv
,
1200 struct v4l2_frequency
*f
)
1202 struct em28xx_fh
*fh
= priv
;
1203 struct em28xx
*dev
= fh
->dev
;
1206 rc
= check_dev(dev
);
1213 if (unlikely(0 == fh
->radio
&& f
->type
!= V4L2_TUNER_ANALOG_TV
))
1215 if (unlikely(1 == fh
->radio
&& f
->type
!= V4L2_TUNER_RADIO
))
1218 mutex_lock(&dev
->lock
);
1220 dev
->ctl_freq
= f
->frequency
;
1221 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, f
);
1223 mutex_unlock(&dev
->lock
);
1228 #ifdef CONFIG_VIDEO_ADV_DEBUG
1229 static int em28xx_reg_len(int reg
)
1232 case EM28XX_R40_AC97LSB
:
1233 case EM28XX_R30_HSCALELOW
:
1234 case EM28XX_R32_VSCALELOW
:
1241 static int vidioc_g_chip_ident(struct file
*file
, void *priv
,
1242 struct v4l2_dbg_chip_ident
*chip
)
1244 struct em28xx_fh
*fh
= priv
;
1245 struct em28xx
*dev
= fh
->dev
;
1247 chip
->ident
= V4L2_IDENT_NONE
;
1250 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_chip_ident
, chip
);
1256 static int vidioc_g_register(struct file
*file
, void *priv
,
1257 struct v4l2_dbg_register
*reg
)
1259 struct em28xx_fh
*fh
= priv
;
1260 struct em28xx
*dev
= fh
->dev
;
1263 switch (reg
->match
.type
) {
1264 case V4L2_CHIP_MATCH_AC97
:
1265 mutex_lock(&dev
->lock
);
1266 ret
= em28xx_read_ac97(dev
, reg
->reg
);
1267 mutex_unlock(&dev
->lock
);
1274 case V4L2_CHIP_MATCH_I2C_DRIVER
:
1275 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_register
, reg
);
1277 case V4L2_CHIP_MATCH_I2C_ADDR
:
1278 /* Not supported yet */
1281 if (!v4l2_chip_match_host(®
->match
))
1286 reg
->size
= em28xx_reg_len(reg
->reg
);
1287 if (reg
->size
== 1) {
1288 mutex_lock(&dev
->lock
);
1289 ret
= em28xx_read_reg(dev
, reg
->reg
);
1290 mutex_unlock(&dev
->lock
);
1298 mutex_lock(&dev
->lock
);
1299 ret
= em28xx_read_reg_req_len(dev
, USB_REQ_GET_STATUS
,
1300 reg
->reg
, (char *)&val
, 2);
1301 mutex_unlock(&dev
->lock
);
1305 reg
->val
= le16_to_cpu(val
);
1311 static int vidioc_s_register(struct file
*file
, void *priv
,
1312 struct v4l2_dbg_register
*reg
)
1314 struct em28xx_fh
*fh
= priv
;
1315 struct em28xx
*dev
= fh
->dev
;
1319 switch (reg
->match
.type
) {
1320 case V4L2_CHIP_MATCH_AC97
:
1321 mutex_lock(&dev
->lock
);
1322 rc
= em28xx_write_ac97(dev
, reg
->reg
, reg
->val
);
1323 mutex_unlock(&dev
->lock
);
1326 case V4L2_CHIP_MATCH_I2C_DRIVER
:
1327 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_register
, reg
);
1329 case V4L2_CHIP_MATCH_I2C_ADDR
:
1330 /* Not supported yet */
1333 if (!v4l2_chip_match_host(®
->match
))
1338 buf
= cpu_to_le16(reg
->val
);
1340 mutex_lock(&dev
->lock
);
1341 rc
= em28xx_write_regs(dev
, reg
->reg
, (char *)&buf
,
1342 em28xx_reg_len(reg
->reg
));
1343 mutex_unlock(&dev
->lock
);
1350 static int vidioc_cropcap(struct file
*file
, void *priv
,
1351 struct v4l2_cropcap
*cc
)
1353 struct em28xx_fh
*fh
= priv
;
1354 struct em28xx
*dev
= fh
->dev
;
1356 if (cc
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1359 cc
->bounds
.left
= 0;
1361 cc
->bounds
.width
= dev
->width
;
1362 cc
->bounds
.height
= dev
->height
;
1363 cc
->defrect
= cc
->bounds
;
1364 cc
->pixelaspect
.numerator
= 54; /* 4:3 FIXME: remove magic numbers */
1365 cc
->pixelaspect
.denominator
= 59;
1370 static int vidioc_streamon(struct file
*file
, void *priv
,
1371 enum v4l2_buf_type type
)
1373 struct em28xx_fh
*fh
= priv
;
1374 struct em28xx
*dev
= fh
->dev
;
1377 rc
= check_dev(dev
);
1382 mutex_lock(&dev
->lock
);
1385 if (likely(rc
>= 0))
1386 rc
= videobuf_streamon(&fh
->vb_vidq
);
1388 mutex_unlock(&dev
->lock
);
1393 static int vidioc_streamoff(struct file
*file
, void *priv
,
1394 enum v4l2_buf_type type
)
1396 struct em28xx_fh
*fh
= priv
;
1397 struct em28xx
*dev
= fh
->dev
;
1400 rc
= check_dev(dev
);
1404 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1406 if (type
!= fh
->type
)
1409 mutex_lock(&dev
->lock
);
1411 videobuf_streamoff(&fh
->vb_vidq
);
1414 mutex_unlock(&dev
->lock
);
1419 static int vidioc_querycap(struct file
*file
, void *priv
,
1420 struct v4l2_capability
*cap
)
1422 struct em28xx_fh
*fh
= priv
;
1423 struct em28xx
*dev
= fh
->dev
;
1425 strlcpy(cap
->driver
, "em28xx", sizeof(cap
->driver
));
1426 strlcpy(cap
->card
, em28xx_boards
[dev
->model
].name
, sizeof(cap
->card
));
1427 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
1429 cap
->version
= EM28XX_VERSION_CODE
;
1432 V4L2_CAP_SLICED_VBI_CAPTURE
|
1433 V4L2_CAP_VIDEO_CAPTURE
|
1435 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
;
1437 if (dev
->tuner_type
!= TUNER_ABSENT
)
1438 cap
->capabilities
|= V4L2_CAP_TUNER
;
1443 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
1444 struct v4l2_fmtdesc
*f
)
1446 if (unlikely(f
->index
>= ARRAY_SIZE(format
)))
1449 strlcpy(f
->description
, format
[f
->index
].name
, sizeof(f
->description
));
1450 f
->pixelformat
= format
[f
->index
].fourcc
;
1455 /* Sliced VBI ioctls */
1456 static int vidioc_g_fmt_sliced_vbi_cap(struct file
*file
, void *priv
,
1457 struct v4l2_format
*f
)
1459 struct em28xx_fh
*fh
= priv
;
1460 struct em28xx
*dev
= fh
->dev
;
1463 rc
= check_dev(dev
);
1467 mutex_lock(&dev
->lock
);
1469 f
->fmt
.sliced
.service_set
= 0;
1470 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, g_fmt
, f
);
1472 if (f
->fmt
.sliced
.service_set
== 0)
1475 mutex_unlock(&dev
->lock
);
1480 static int vidioc_try_set_sliced_vbi_cap(struct file
*file
, void *priv
,
1481 struct v4l2_format
*f
)
1483 struct em28xx_fh
*fh
= priv
;
1484 struct em28xx
*dev
= fh
->dev
;
1487 rc
= check_dev(dev
);
1491 mutex_lock(&dev
->lock
);
1492 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, g_fmt
, f
);
1493 mutex_unlock(&dev
->lock
);
1495 if (f
->fmt
.sliced
.service_set
== 0)
1502 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1503 struct v4l2_requestbuffers
*rb
)
1505 struct em28xx_fh
*fh
= priv
;
1506 struct em28xx
*dev
= fh
->dev
;
1509 rc
= check_dev(dev
);
1513 return videobuf_reqbufs(&fh
->vb_vidq
, rb
);
1516 static int vidioc_querybuf(struct file
*file
, void *priv
,
1517 struct v4l2_buffer
*b
)
1519 struct em28xx_fh
*fh
= priv
;
1520 struct em28xx
*dev
= fh
->dev
;
1523 rc
= check_dev(dev
);
1527 return videobuf_querybuf(&fh
->vb_vidq
, b
);
1530 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
1532 struct em28xx_fh
*fh
= priv
;
1533 struct em28xx
*dev
= fh
->dev
;
1536 rc
= check_dev(dev
);
1540 return videobuf_qbuf(&fh
->vb_vidq
, b
);
1543 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
1545 struct em28xx_fh
*fh
= priv
;
1546 struct em28xx
*dev
= fh
->dev
;
1549 rc
= check_dev(dev
);
1553 return videobuf_dqbuf(&fh
->vb_vidq
, b
, file
->f_flags
& O_NONBLOCK
);
1556 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1557 static int vidiocgmbuf(struct file
*file
, void *priv
, struct video_mbuf
*mbuf
)
1559 struct em28xx_fh
*fh
= priv
;
1561 return videobuf_cgmbuf(&fh
->vb_vidq
, mbuf
, 8);
1566 /* ----------------------------------------------------------- */
1567 /* RADIO ESPECIFIC IOCTLS */
1568 /* ----------------------------------------------------------- */
1570 static int radio_querycap(struct file
*file
, void *priv
,
1571 struct v4l2_capability
*cap
)
1573 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
1575 strlcpy(cap
->driver
, "em28xx", sizeof(cap
->driver
));
1576 strlcpy(cap
->card
, em28xx_boards
[dev
->model
].name
, sizeof(cap
->card
));
1577 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
1579 cap
->version
= EM28XX_VERSION_CODE
;
1580 cap
->capabilities
= V4L2_CAP_TUNER
;
1584 static int radio_g_tuner(struct file
*file
, void *priv
,
1585 struct v4l2_tuner
*t
)
1587 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
1589 if (unlikely(t
->index
> 0))
1592 strcpy(t
->name
, "Radio");
1593 t
->type
= V4L2_TUNER_RADIO
;
1595 mutex_lock(&dev
->lock
);
1596 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1597 mutex_unlock(&dev
->lock
);
1602 static int radio_enum_input(struct file
*file
, void *priv
,
1603 struct v4l2_input
*i
)
1607 strcpy(i
->name
, "Radio");
1608 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1613 static int radio_g_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
1615 if (unlikely(a
->index
))
1618 strcpy(a
->name
, "Radio");
1622 static int radio_s_tuner(struct file
*file
, void *priv
,
1623 struct v4l2_tuner
*t
)
1625 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
1630 mutex_lock(&dev
->lock
);
1631 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1632 mutex_unlock(&dev
->lock
);
1637 static int radio_s_audio(struct file
*file
, void *fh
,
1638 struct v4l2_audio
*a
)
1643 static int radio_s_input(struct file
*file
, void *fh
, unsigned int i
)
1648 static int radio_queryctrl(struct file
*file
, void *priv
,
1649 struct v4l2_queryctrl
*qc
)
1653 if (qc
->id
< V4L2_CID_BASE
||
1654 qc
->id
>= V4L2_CID_LASTP1
)
1657 for (i
= 0; i
< ARRAY_SIZE(em28xx_qctrl
); i
++) {
1658 if (qc
->id
&& qc
->id
== em28xx_qctrl
[i
].id
) {
1659 memcpy(qc
, &(em28xx_qctrl
[i
]), sizeof(*qc
));
1668 * em28xx_v4l2_open()
1669 * inits the device and starts isoc transfer
1671 static int em28xx_v4l2_open(struct file
*filp
)
1673 int minor
= video_devdata(filp
)->minor
;
1674 int errCode
= 0, radio
;
1676 enum v4l2_buf_type fh_type
;
1677 struct em28xx_fh
*fh
;
1678 enum v4l2_field field
;
1680 dev
= em28xx_get_device(minor
, &fh_type
, &radio
);
1685 mutex_lock(&dev
->lock
);
1687 em28xx_videodbg("open minor=%d type=%s users=%d\n",
1688 minor
, v4l2_type_names
[fh_type
], dev
->users
);
1691 fh
= kzalloc(sizeof(struct em28xx_fh
), GFP_KERNEL
);
1693 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
1694 mutex_unlock(&dev
->lock
);
1700 filp
->private_data
= fh
;
1702 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
&& dev
->users
== 0) {
1703 em28xx_set_mode(dev
, EM28XX_ANALOG_MODE
);
1704 em28xx_set_alternate(dev
);
1705 em28xx_resolution_set(dev
);
1707 /* Needed, since GPIO might have disabled power of
1710 em28xx_wake_i2c(dev
);
1714 em28xx_videodbg("video_open: setting radio device\n");
1715 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_radio
);
1720 if (dev
->progressive
)
1721 field
= V4L2_FIELD_NONE
;
1723 field
= V4L2_FIELD_INTERLACED
;
1725 videobuf_queue_vmalloc_init(&fh
->vb_vidq
, &em28xx_video_qops
,
1726 NULL
, &dev
->slock
, fh
->type
, field
,
1727 sizeof(struct em28xx_buffer
), fh
);
1729 mutex_unlock(&dev
->lock
);
1735 * em28xx_realease_resources()
1736 * unregisters the v4l2,i2c and usb devices
1737 * called when the device gets disconected or at module unload
1739 void em28xx_release_analog_resources(struct em28xx
*dev
)
1742 /*FIXME: I2C IR should be disconnected */
1744 if (dev
->radio_dev
) {
1745 if (-1 != dev
->radio_dev
->minor
)
1746 video_unregister_device(dev
->radio_dev
);
1748 video_device_release(dev
->radio_dev
);
1749 dev
->radio_dev
= NULL
;
1752 em28xx_info("V4L2 device /dev/vbi%d deregistered\n",
1754 if (-1 != dev
->vbi_dev
->minor
)
1755 video_unregister_device(dev
->vbi_dev
);
1757 video_device_release(dev
->vbi_dev
);
1758 dev
->vbi_dev
= NULL
;
1761 em28xx_info("V4L2 device /dev/video%d deregistered\n",
1763 if (-1 != dev
->vdev
->minor
)
1764 video_unregister_device(dev
->vdev
);
1766 video_device_release(dev
->vdev
);
1772 * em28xx_v4l2_close()
1773 * stops streaming and deallocates all resources allocated by the v4l2
1776 static int em28xx_v4l2_close(struct file
*filp
)
1778 struct em28xx_fh
*fh
= filp
->private_data
;
1779 struct em28xx
*dev
= fh
->dev
;
1782 em28xx_videodbg("users=%d\n", dev
->users
);
1785 mutex_lock(&dev
->lock
);
1789 if (dev
->users
== 1) {
1790 videobuf_stop(&fh
->vb_vidq
);
1791 videobuf_mmap_free(&fh
->vb_vidq
);
1793 /* the device is already disconnect,
1794 free the remaining resources */
1795 if (dev
->state
& DEV_DISCONNECTED
) {
1796 em28xx_release_resources(dev
);
1797 mutex_unlock(&dev
->lock
);
1802 /* Save some power by putting tuner to sleep */
1803 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_standby
);
1805 /* do this before setting alternate! */
1806 em28xx_uninit_isoc(dev
);
1807 em28xx_set_mode(dev
, EM28XX_SUSPEND
);
1809 /* set alternate 0 */
1811 em28xx_videodbg("setting alternate 0\n");
1812 errCode
= usb_set_interface(dev
->udev
, 0, 0);
1814 em28xx_errdev("cannot change alternate number to "
1815 "0 (error=%i)\n", errCode
);
1820 wake_up_interruptible_nr(&dev
->open
, 1);
1821 mutex_unlock(&dev
->lock
);
1826 * em28xx_v4l2_read()
1827 * will allocate buffers when called for the first time
1830 em28xx_v4l2_read(struct file
*filp
, char __user
*buf
, size_t count
,
1833 struct em28xx_fh
*fh
= filp
->private_data
;
1834 struct em28xx
*dev
= fh
->dev
;
1837 rc
= check_dev(dev
);
1841 /* FIXME: read() is not prepared to allow changing the video
1842 resolution while streaming. Seems a bug at em28xx_set_fmt
1845 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1846 mutex_lock(&dev
->lock
);
1848 mutex_unlock(&dev
->lock
);
1850 if (unlikely(rc
< 0))
1853 return videobuf_read_stream(&fh
->vb_vidq
, buf
, count
, pos
, 0,
1854 filp
->f_flags
& O_NONBLOCK
);
1860 * em28xx_v4l2_poll()
1861 * will allocate buffers when called for the first time
1863 static unsigned int em28xx_v4l2_poll(struct file
*filp
, poll_table
*wait
)
1865 struct em28xx_fh
*fh
= filp
->private_data
;
1866 struct em28xx
*dev
= fh
->dev
;
1869 rc
= check_dev(dev
);
1873 mutex_lock(&dev
->lock
);
1875 mutex_unlock(&dev
->lock
);
1877 if (unlikely(rc
< 0))
1880 if (V4L2_BUF_TYPE_VIDEO_CAPTURE
!= fh
->type
)
1883 return videobuf_poll_stream(filp
, &fh
->vb_vidq
, wait
);
1887 * em28xx_v4l2_mmap()
1889 static int em28xx_v4l2_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
1891 struct em28xx_fh
*fh
= filp
->private_data
;
1892 struct em28xx
*dev
= fh
->dev
;
1895 rc
= check_dev(dev
);
1899 mutex_lock(&dev
->lock
);
1901 mutex_unlock(&dev
->lock
);
1903 if (unlikely(rc
< 0))
1906 rc
= videobuf_mmap_mapper(&fh
->vb_vidq
, vma
);
1908 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
1909 (unsigned long)vma
->vm_start
,
1910 (unsigned long)vma
->vm_end
-(unsigned long)vma
->vm_start
,
1916 static const struct v4l2_file_operations em28xx_v4l_fops
= {
1917 .owner
= THIS_MODULE
,
1918 .open
= em28xx_v4l2_open
,
1919 .release
= em28xx_v4l2_close
,
1920 .read
= em28xx_v4l2_read
,
1921 .poll
= em28xx_v4l2_poll
,
1922 .mmap
= em28xx_v4l2_mmap
,
1923 .ioctl
= video_ioctl2
,
1926 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
1927 .vidioc_querycap
= vidioc_querycap
,
1928 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1929 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1930 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1931 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1932 .vidioc_g_audio
= vidioc_g_audio
,
1933 .vidioc_s_audio
= vidioc_s_audio
,
1934 .vidioc_cropcap
= vidioc_cropcap
,
1936 .vidioc_g_fmt_sliced_vbi_cap
= vidioc_g_fmt_sliced_vbi_cap
,
1937 .vidioc_try_fmt_sliced_vbi_cap
= vidioc_try_set_sliced_vbi_cap
,
1938 .vidioc_s_fmt_sliced_vbi_cap
= vidioc_try_set_sliced_vbi_cap
,
1940 .vidioc_reqbufs
= vidioc_reqbufs
,
1941 .vidioc_querybuf
= vidioc_querybuf
,
1942 .vidioc_qbuf
= vidioc_qbuf
,
1943 .vidioc_dqbuf
= vidioc_dqbuf
,
1944 .vidioc_s_std
= vidioc_s_std
,
1945 .vidioc_g_parm
= vidioc_g_parm
,
1946 .vidioc_s_parm
= vidioc_s_parm
,
1947 .vidioc_enum_input
= vidioc_enum_input
,
1948 .vidioc_g_input
= vidioc_g_input
,
1949 .vidioc_s_input
= vidioc_s_input
,
1950 .vidioc_queryctrl
= vidioc_queryctrl
,
1951 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1952 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1953 .vidioc_streamon
= vidioc_streamon
,
1954 .vidioc_streamoff
= vidioc_streamoff
,
1955 .vidioc_g_tuner
= vidioc_g_tuner
,
1956 .vidioc_s_tuner
= vidioc_s_tuner
,
1957 .vidioc_g_frequency
= vidioc_g_frequency
,
1958 .vidioc_s_frequency
= vidioc_s_frequency
,
1959 #ifdef CONFIG_VIDEO_ADV_DEBUG
1960 .vidioc_g_register
= vidioc_g_register
,
1961 .vidioc_s_register
= vidioc_s_register
,
1962 .vidioc_g_chip_ident
= vidioc_g_chip_ident
,
1964 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1965 .vidiocgmbuf
= vidiocgmbuf
,
1969 static const struct video_device em28xx_video_template
= {
1970 .fops
= &em28xx_v4l_fops
,
1971 .release
= video_device_release
,
1972 .ioctl_ops
= &video_ioctl_ops
,
1976 .tvnorms
= V4L2_STD_ALL
,
1977 .current_norm
= V4L2_STD_PAL
,
1980 static const struct v4l2_file_operations radio_fops
= {
1981 .owner
= THIS_MODULE
,
1982 .open
= em28xx_v4l2_open
,
1983 .release
= em28xx_v4l2_close
,
1984 .ioctl
= video_ioctl2
,
1987 static const struct v4l2_ioctl_ops radio_ioctl_ops
= {
1988 .vidioc_querycap
= radio_querycap
,
1989 .vidioc_g_tuner
= radio_g_tuner
,
1990 .vidioc_enum_input
= radio_enum_input
,
1991 .vidioc_g_audio
= radio_g_audio
,
1992 .vidioc_s_tuner
= radio_s_tuner
,
1993 .vidioc_s_audio
= radio_s_audio
,
1994 .vidioc_s_input
= radio_s_input
,
1995 .vidioc_queryctrl
= radio_queryctrl
,
1996 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1997 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1998 .vidioc_g_frequency
= vidioc_g_frequency
,
1999 .vidioc_s_frequency
= vidioc_s_frequency
,
2000 #ifdef CONFIG_VIDEO_ADV_DEBUG
2001 .vidioc_g_register
= vidioc_g_register
,
2002 .vidioc_s_register
= vidioc_s_register
,
2006 static struct video_device em28xx_radio_template
= {
2007 .name
= "em28xx-radio",
2008 .fops
= &radio_fops
,
2009 .ioctl_ops
= &radio_ioctl_ops
,
2013 /******************************** usb interface ******************************/
2017 static struct video_device
*em28xx_vdev_init(struct em28xx
*dev
,
2018 const struct video_device
*template,
2019 const char *type_name
)
2021 struct video_device
*vfd
;
2023 vfd
= video_device_alloc();
2029 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
2030 vfd
->release
= video_device_release
;
2031 vfd
->debug
= video_debug
;
2033 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s",
2034 dev
->name
, type_name
);
2039 int em28xx_register_analog_devices(struct em28xx
*dev
)
2044 printk(KERN_INFO
"%s: v4l2 driver version %d.%d.%d\n",
2046 (EM28XX_VERSION_CODE
>> 16) & 0xff,
2047 (EM28XX_VERSION_CODE
>> 8) & 0xff, EM28XX_VERSION_CODE
& 0xff);
2049 /* set default norm */
2050 dev
->norm
= em28xx_video_template
.current_norm
;
2051 dev
->interlaced
= EM28XX_INTERLACED_DEFAULT
;
2054 /* Analog specific initialization */
2055 dev
->format
= &format
[0];
2056 em28xx_set_video_format(dev
, format
[0].fourcc
,
2057 norm_maxw(dev
), norm_maxh(dev
));
2059 video_mux(dev
, dev
->ctl_input
);
2061 /* Audio defaults */
2065 /* enable vbi capturing */
2067 /* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
2068 val
= (u8
)em28xx_read_reg(dev
, EM28XX_R0F_XCLK
);
2069 em28xx_write_reg(dev
, EM28XX_R0F_XCLK
,
2070 (EM28XX_XCLK_AUDIO_UNMUTE
| val
));
2071 em28xx_write_reg(dev
, EM28XX_R11_VINCTRL
, 0x51);
2073 em28xx_set_outfmt(dev
);
2074 em28xx_colorlevels_set_default(dev
);
2075 em28xx_compression_disable(dev
);
2077 /* allocate and fill video video_device struct */
2078 dev
->vdev
= em28xx_vdev_init(dev
, &em28xx_video_template
, "video");
2080 em28xx_errdev("cannot allocate video_device.\n");
2084 /* register v4l2 video video_device */
2085 ret
= video_register_device(dev
->vdev
, VFL_TYPE_GRABBER
,
2086 video_nr
[dev
->devno
]);
2088 em28xx_errdev("unable to register video device (error=%i).\n",
2093 /* Allocate and fill vbi video_device struct */
2094 dev
->vbi_dev
= em28xx_vdev_init(dev
, &em28xx_video_template
, "vbi");
2096 /* register v4l2 vbi video_device */
2097 ret
= video_register_device(dev
->vbi_dev
, VFL_TYPE_VBI
,
2098 vbi_nr
[dev
->devno
]);
2100 em28xx_errdev("unable to register vbi device\n");
2104 if (em28xx_boards
[dev
->model
].radio
.type
== EM28XX_RADIO
) {
2105 dev
->radio_dev
= em28xx_vdev_init(dev
, &em28xx_radio_template
,
2107 if (!dev
->radio_dev
) {
2108 em28xx_errdev("cannot allocate video_device.\n");
2111 ret
= video_register_device(dev
->radio_dev
, VFL_TYPE_RADIO
,
2112 radio_nr
[dev
->devno
]);
2114 em28xx_errdev("can't register radio device\n");
2117 em28xx_info("Registered radio device as /dev/radio%d\n",
2118 dev
->radio_dev
->num
);
2121 em28xx_info("V4L2 device registered as /dev/video%d and /dev/vbi%d\n",
2122 dev
->vdev
->num
, dev
->vbi_dev
->num
);