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>
36 #include <linux/mutex.h>
37 #include <linux/slab.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"
53 #define EM28XX_VERSION "0.1.3"
55 #define em28xx_videodbg(fmt, arg...) do {\
57 printk(KERN_INFO "%s %s :"fmt, \
58 dev->name, __func__ , ##arg); } while (0)
60 static unsigned int isoc_debug
;
61 module_param(isoc_debug
, int, 0644);
62 MODULE_PARM_DESC(isoc_debug
, "enable debug messages [isoc transfers]");
64 #define em28xx_isocdbg(fmt, arg...) \
67 printk(KERN_INFO "%s %s :"fmt, \
68 dev->name, __func__ , ##arg); \
72 MODULE_AUTHOR(DRIVER_AUTHOR
);
73 MODULE_DESCRIPTION(DRIVER_DESC
);
74 MODULE_LICENSE("GPL");
75 MODULE_VERSION(EM28XX_VERSION
);
77 static unsigned int video_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
78 static unsigned int vbi_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
79 static unsigned int radio_nr
[] = {[0 ... (EM28XX_MAXBOARDS
- 1)] = UNSET
};
81 module_param_array(video_nr
, int, NULL
, 0444);
82 module_param_array(vbi_nr
, int, NULL
, 0444);
83 module_param_array(radio_nr
, int, NULL
, 0444);
84 MODULE_PARM_DESC(video_nr
, "video device numbers");
85 MODULE_PARM_DESC(vbi_nr
, "vbi device numbers");
86 MODULE_PARM_DESC(radio_nr
, "radio device numbers");
88 static unsigned int video_debug
;
89 module_param(video_debug
, int, 0644);
90 MODULE_PARM_DESC(video_debug
, "enable debug messages [video]");
92 /* supported video standards */
93 static struct em28xx_fmt format
[] = {
95 .name
= "16 bpp YUY2, 4:2:2, packed",
96 .fourcc
= V4L2_PIX_FMT_YUYV
,
98 .reg
= EM28XX_OUTFMT_YUV422_Y0UY1V
,
100 .name
= "16 bpp RGB 565, LE",
101 .fourcc
= V4L2_PIX_FMT_RGB565
,
103 .reg
= EM28XX_OUTFMT_RGB_16_656
,
105 .name
= "8 bpp Bayer BGBG..GRGR",
106 .fourcc
= V4L2_PIX_FMT_SBGGR8
,
108 .reg
= EM28XX_OUTFMT_RGB_8_BGBG
,
110 .name
= "8 bpp Bayer GRGR..BGBG",
111 .fourcc
= V4L2_PIX_FMT_SGRBG8
,
113 .reg
= EM28XX_OUTFMT_RGB_8_GRGR
,
115 .name
= "8 bpp Bayer GBGB..RGRG",
116 .fourcc
= V4L2_PIX_FMT_SGBRG8
,
118 .reg
= EM28XX_OUTFMT_RGB_8_GBGB
,
120 .name
= "12 bpp YUV411",
121 .fourcc
= V4L2_PIX_FMT_YUV411P
,
123 .reg
= EM28XX_OUTFMT_YUV411
,
127 /* supported controls */
128 /* Common to all boards */
129 static struct v4l2_queryctrl ac97_qctrl
[] = {
131 .id
= V4L2_CID_AUDIO_VOLUME
,
132 .type
= V4L2_CTRL_TYPE_INTEGER
,
137 .default_value
= 0x1f,
138 .flags
= V4L2_CTRL_FLAG_SLIDER
,
140 .id
= V4L2_CID_AUDIO_MUTE
,
141 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
151 /* ------------------------------------------------------------------
152 DMA and thread functions
153 ------------------------------------------------------------------*/
156 * Announces that a buffer were filled and request the next
158 static inline void buffer_filled(struct em28xx
*dev
,
159 struct em28xx_dmaqueue
*dma_q
,
160 struct em28xx_buffer
*buf
)
162 /* Advice that buffer was filled */
163 em28xx_isocdbg("[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
164 buf
->vb
.state
= VIDEOBUF_DONE
;
165 buf
->vb
.field_count
++;
166 do_gettimeofday(&buf
->vb
.ts
);
168 dev
->isoc_ctl
.vid_buf
= NULL
;
170 list_del(&buf
->vb
.queue
);
171 wake_up(&buf
->vb
.done
);
174 static inline void vbi_buffer_filled(struct em28xx
*dev
,
175 struct em28xx_dmaqueue
*dma_q
,
176 struct em28xx_buffer
*buf
)
178 /* Advice that buffer was filled */
179 em28xx_isocdbg("[%p/%d] wakeup\n", buf
, buf
->vb
.i
);
181 buf
->vb
.state
= VIDEOBUF_DONE
;
182 buf
->vb
.field_count
++;
183 do_gettimeofday(&buf
->vb
.ts
);
185 dev
->isoc_ctl
.vbi_buf
= NULL
;
187 list_del(&buf
->vb
.queue
);
188 wake_up(&buf
->vb
.done
);
192 * Identify the buffer header type and properly handles
194 static void em28xx_copy_video(struct em28xx
*dev
,
195 struct em28xx_dmaqueue
*dma_q
,
196 struct em28xx_buffer
*buf
,
198 unsigned char *outp
, unsigned long len
)
200 void *fieldstart
, *startwrite
, *startread
;
201 int linesdone
, currlinedone
, offset
, lencopy
, remain
;
202 int bytesperline
= dev
->width
<< 1;
204 if (dma_q
->pos
+ len
> buf
->vb
.size
)
205 len
= buf
->vb
.size
- dma_q
->pos
;
210 if (dev
->progressive
)
213 /* Interlaces two half frames */
217 fieldstart
= outp
+ bytesperline
;
220 linesdone
= dma_q
->pos
/ bytesperline
;
221 currlinedone
= dma_q
->pos
% bytesperline
;
223 if (dev
->progressive
)
224 offset
= linesdone
* bytesperline
+ currlinedone
;
226 offset
= linesdone
* bytesperline
* 2 + currlinedone
;
228 startwrite
= fieldstart
+ offset
;
229 lencopy
= bytesperline
- currlinedone
;
230 lencopy
= lencopy
> remain
? remain
: lencopy
;
232 if ((char *)startwrite
+ lencopy
> (char *)outp
+ buf
->vb
.size
) {
233 em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
234 ((char *)startwrite
+ lencopy
) -
235 ((char *)outp
+ buf
->vb
.size
));
236 remain
= (char *)outp
+ buf
->vb
.size
- (char *)startwrite
;
241 memcpy(startwrite
, startread
, lencopy
);
246 startwrite
+= lencopy
+ bytesperline
;
247 startread
+= lencopy
;
248 if (bytesperline
> remain
)
251 lencopy
= bytesperline
;
253 if ((char *)startwrite
+ lencopy
> (char *)outp
+
255 em28xx_isocdbg("Overflow of %zi bytes past buffer end"
257 ((char *)startwrite
+ lencopy
) -
258 ((char *)outp
+ buf
->vb
.size
));
259 lencopy
= remain
= (char *)outp
+ buf
->vb
.size
-
265 memcpy(startwrite
, startread
, lencopy
);
273 static void em28xx_copy_vbi(struct em28xx
*dev
,
274 struct em28xx_dmaqueue
*dma_q
,
275 struct em28xx_buffer
*buf
,
277 unsigned char *outp
, unsigned long len
)
279 void *startwrite
, *startread
;
284 em28xx_isocdbg("dev is null\n");
287 bytesperline
= dev
->vbi_width
;
290 em28xx_isocdbg("dma_q is null\n");
297 em28xx_isocdbg("p is null\n");
301 em28xx_isocdbg("outp is null\n");
305 if (dma_q
->pos
+ len
> buf
->vb
.size
)
306 len
= buf
->vb
.size
- dma_q
->pos
;
310 startwrite
= outp
+ dma_q
->pos
;
313 /* Make sure the bottom field populates the second half of the frame */
314 if (buf
->top_field
== 0) {
315 startwrite
+= bytesperline
* dev
->vbi_height
;
316 offset
+= bytesperline
* dev
->vbi_height
;
319 memcpy(startwrite
, startread
, len
);
323 static inline void print_err_status(struct em28xx
*dev
,
324 int packet
, int status
)
326 char *errmsg
= "Unknown";
330 errmsg
= "unlinked synchronuously";
333 errmsg
= "unlinked asynchronuously";
336 errmsg
= "Buffer error (overrun)";
339 errmsg
= "Stalled (device not responding)";
342 errmsg
= "Babble (bad cable?)";
345 errmsg
= "Bit-stuff error (bad cable?)";
348 errmsg
= "CRC/Timeout (could be anything)";
351 errmsg
= "Device does not respond";
355 em28xx_isocdbg("URB status %d [%s].\n", status
, errmsg
);
357 em28xx_isocdbg("URB packet %d, status %d [%s].\n",
358 packet
, status
, errmsg
);
363 * video-buf generic routine to get the next available buffer
365 static inline void get_next_buf(struct em28xx_dmaqueue
*dma_q
,
366 struct em28xx_buffer
**buf
)
368 struct em28xx
*dev
= container_of(dma_q
, struct em28xx
, vidq
);
371 if (list_empty(&dma_q
->active
)) {
372 em28xx_isocdbg("No active queue to serve\n");
373 dev
->isoc_ctl
.vid_buf
= NULL
;
378 /* Get the next buffer */
379 *buf
= list_entry(dma_q
->active
.next
, struct em28xx_buffer
, vb
.queue
);
381 /* Cleans up buffer - Useful for testing for frame/URB loss */
382 outp
= videobuf_to_vmalloc(&(*buf
)->vb
);
383 memset(outp
, 0, (*buf
)->vb
.size
);
385 dev
->isoc_ctl
.vid_buf
= *buf
;
391 * video-buf generic routine to get the next available VBI buffer
393 static inline void vbi_get_next_buf(struct em28xx_dmaqueue
*dma_q
,
394 struct em28xx_buffer
**buf
)
396 struct em28xx
*dev
= container_of(dma_q
, struct em28xx
, vbiq
);
399 if (list_empty(&dma_q
->active
)) {
400 em28xx_isocdbg("No active queue to serve\n");
401 dev
->isoc_ctl
.vbi_buf
= NULL
;
406 /* Get the next buffer */
407 *buf
= list_entry(dma_q
->active
.next
, struct em28xx_buffer
, vb
.queue
);
408 /* Cleans up buffer - Useful for testing for frame/URB loss */
409 outp
= videobuf_to_vmalloc(&(*buf
)->vb
);
410 memset(outp
, 0x00, (*buf
)->vb
.size
);
412 dev
->isoc_ctl
.vbi_buf
= *buf
;
418 * Controls the isoc copy of each urb packet
420 static inline int em28xx_isoc_copy(struct em28xx
*dev
, struct urb
*urb
)
422 struct em28xx_buffer
*buf
;
423 struct em28xx_dmaqueue
*dma_q
= &dev
->vidq
;
424 unsigned char *outp
= NULL
;
425 int i
, len
= 0, rc
= 1;
431 if ((dev
->state
& DEV_DISCONNECTED
) || (dev
->state
& DEV_MISCONFIGURED
))
434 if (urb
->status
< 0) {
435 print_err_status(dev
, -1, urb
->status
);
436 if (urb
->status
== -ENOENT
)
440 buf
= dev
->isoc_ctl
.vid_buf
;
442 outp
= videobuf_to_vmalloc(&buf
->vb
);
444 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
445 int status
= urb
->iso_frame_desc
[i
].status
;
448 print_err_status(dev
, i
, status
);
449 if (urb
->iso_frame_desc
[i
].status
!= -EPROTO
)
453 len
= urb
->iso_frame_desc
[i
].actual_length
- 4;
455 if (urb
->iso_frame_desc
[i
].actual_length
<= 0) {
456 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
459 if (urb
->iso_frame_desc
[i
].actual_length
>
461 em28xx_isocdbg("packet bigger than packet size");
465 p
= urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
467 /* FIXME: incomplete buffer checks where removed to make
468 logic simpler. Impacts of those changes should be evaluated
470 if (p
[0] == 0x33 && p
[1] == 0x95 && p
[2] == 0x00) {
471 em28xx_isocdbg("VBI HEADER!!!\n");
472 /* FIXME: Should add vbi copy */
475 if (p
[0] == 0x22 && p
[1] == 0x5a) {
476 em28xx_isocdbg("Video frame %d, length=%i, %s\n", p
[2],
477 len
, (p
[2] & 1) ? "odd" : "even");
479 if (dev
->progressive
|| !(p
[2] & 1)) {
481 buffer_filled(dev
, dma_q
, buf
);
482 get_next_buf(dma_q
, &buf
);
486 outp
= videobuf_to_vmalloc(&buf
->vb
);
499 if (p
[0] != 0x88 && p
[0] != 0x22) {
500 em28xx_isocdbg("frame is not complete\n");
505 em28xx_copy_video(dev
, dma_q
, buf
, p
, outp
, len
);
511 /* Version of isoc handler that takes into account a mixture of video and
513 static inline int em28xx_isoc_copy_vbi(struct em28xx
*dev
, struct urb
*urb
)
515 struct em28xx_buffer
*buf
, *vbi_buf
;
516 struct em28xx_dmaqueue
*dma_q
= &dev
->vidq
;
517 struct em28xx_dmaqueue
*vbi_dma_q
= &dev
->vbiq
;
518 unsigned char *outp
= NULL
;
519 unsigned char *vbioutp
= NULL
;
520 int i
, len
= 0, rc
= 1;
527 if ((dev
->state
& DEV_DISCONNECTED
) || (dev
->state
& DEV_MISCONFIGURED
))
530 if (urb
->status
< 0) {
531 print_err_status(dev
, -1, urb
->status
);
532 if (urb
->status
== -ENOENT
)
536 buf
= dev
->isoc_ctl
.vid_buf
;
538 outp
= videobuf_to_vmalloc(&buf
->vb
);
540 vbi_buf
= dev
->isoc_ctl
.vbi_buf
;
542 vbioutp
= videobuf_to_vmalloc(&vbi_buf
->vb
);
544 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
545 int status
= urb
->iso_frame_desc
[i
].status
;
548 print_err_status(dev
, i
, status
);
549 if (urb
->iso_frame_desc
[i
].status
!= -EPROTO
)
553 len
= urb
->iso_frame_desc
[i
].actual_length
;
554 if (urb
->iso_frame_desc
[i
].actual_length
<= 0) {
555 /* em28xx_isocdbg("packet %d is empty",i); - spammy */
558 if (urb
->iso_frame_desc
[i
].actual_length
>
560 em28xx_isocdbg("packet bigger than packet size");
564 p
= urb
->transfer_buffer
+ urb
->iso_frame_desc
[i
].offset
;
566 /* capture type 0 = vbi start
567 capture type 1 = video start
568 capture type 2 = video in progress */
569 if (p
[0] == 0x33 && p
[1] == 0x95) {
570 dev
->capture_type
= 0;
572 em28xx_isocdbg("VBI START HEADER!!!\n");
573 dev
->cur_field
= p
[2];
576 } else if (p
[0] == 0x88 && p
[1] == 0x88 &&
577 p
[2] == 0x88 && p
[3] == 0x88) {
581 } else if (p
[0] == 0x22 && p
[1] == 0x5a) {
587 vbi_size
= dev
->vbi_width
* dev
->vbi_height
;
589 if (dev
->capture_type
== 0) {
590 if (dev
->vbi_read
>= vbi_size
) {
591 /* We've already read all the VBI data, so
592 treat the rest as video */
593 em28xx_isocdbg("dev->vbi_read > vbi_size\n");
594 } else if ((dev
->vbi_read
+ len
) < vbi_size
) {
595 /* This entire frame is VBI data */
596 if (dev
->vbi_read
== 0 &&
597 (!(dev
->cur_field
& 1))) {
598 /* Brand new frame */
600 vbi_buffer_filled(dev
,
603 vbi_get_next_buf(vbi_dma_q
, &vbi_buf
);
607 vbioutp
= videobuf_to_vmalloc(
611 if (dev
->vbi_read
== 0) {
613 if (vbi_buf
!= NULL
) {
614 if (dev
->cur_field
& 1)
615 vbi_buf
->top_field
= 0;
617 vbi_buf
->top_field
= 1;
621 dev
->vbi_read
+= len
;
622 em28xx_copy_vbi(dev
, vbi_dma_q
, vbi_buf
, p
,
625 /* Some of this frame is VBI data and some is
627 int vbi_data_len
= vbi_size
- dev
->vbi_read
;
628 dev
->vbi_read
+= vbi_data_len
;
629 em28xx_copy_vbi(dev
, vbi_dma_q
, vbi_buf
, p
,
630 vbioutp
, vbi_data_len
);
631 dev
->capture_type
= 1;
637 if (dev
->capture_type
== 1) {
638 dev
->capture_type
= 2;
639 if (dev
->progressive
|| !(dev
->cur_field
& 1)) {
641 buffer_filled(dev
, dma_q
, buf
);
642 get_next_buf(dma_q
, &buf
);
646 outp
= videobuf_to_vmalloc(&buf
->vb
);
649 if (dev
->cur_field
& 1)
658 if (buf
!= NULL
&& dev
->capture_type
== 2) {
659 if (len
>= 4 && p
[0] == 0x88 && p
[1] == 0x88 &&
660 p
[2] == 0x88 && p
[3] == 0x88) {
664 if (len
>= 4 && p
[0] == 0x22 && p
[1] == 0x5a) {
665 em28xx_isocdbg("Video frame %d, len=%i, %s\n",
666 p
[2], len
, (p
[2] & 1) ?
673 em28xx_copy_video(dev
, dma_q
, buf
, p
, outp
,
681 /* ------------------------------------------------------------------
683 ------------------------------------------------------------------*/
686 buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
, unsigned int *size
)
688 struct em28xx_fh
*fh
= vq
->priv_data
;
689 struct em28xx
*dev
= fh
->dev
;
690 struct v4l2_frequency f
;
692 *size
= (fh
->dev
->width
* fh
->dev
->height
* dev
->format
->depth
+ 7)
696 *count
= EM28XX_DEF_BUF
;
698 if (*count
< EM28XX_MIN_BUF
)
699 *count
= EM28XX_MIN_BUF
;
701 /* Ask tuner to go to analog or radio mode */
702 memset(&f
, 0, sizeof(f
));
703 f
.frequency
= dev
->ctl_freq
;
704 f
.type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
706 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, &f
);
711 /* This is called *without* dev->slock held; please keep it that way */
712 static void free_buffer(struct videobuf_queue
*vq
, struct em28xx_buffer
*buf
)
714 struct em28xx_fh
*fh
= vq
->priv_data
;
715 struct em28xx
*dev
= fh
->dev
;
716 unsigned long flags
= 0;
720 /* We used to wait for the buffer to finish here, but this didn't work
721 because, as we were keeping the state as VIDEOBUF_QUEUED,
722 videobuf_queue_cancel marked it as finished for us.
723 (Also, it could wedge forever if the hardware was misconfigured.)
725 This should be safe; by the time we get here, the buffer isn't
726 queued anymore. If we ever start marking the buffers as
727 VIDEOBUF_ACTIVE, it won't be, though.
729 spin_lock_irqsave(&dev
->slock
, flags
);
730 if (dev
->isoc_ctl
.vid_buf
== buf
)
731 dev
->isoc_ctl
.vid_buf
= NULL
;
732 spin_unlock_irqrestore(&dev
->slock
, flags
);
734 videobuf_vmalloc_free(&buf
->vb
);
735 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
739 buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
740 enum v4l2_field field
)
742 struct em28xx_fh
*fh
= vq
->priv_data
;
743 struct em28xx_buffer
*buf
= container_of(vb
, struct em28xx_buffer
, vb
);
744 struct em28xx
*dev
= fh
->dev
;
745 int rc
= 0, urb_init
= 0;
747 buf
->vb
.size
= (fh
->dev
->width
* fh
->dev
->height
* dev
->format
->depth
750 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
753 buf
->vb
.width
= dev
->width
;
754 buf
->vb
.height
= dev
->height
;
755 buf
->vb
.field
= field
;
757 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
758 rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
);
763 if (!dev
->isoc_ctl
.num_bufs
)
767 if (em28xx_vbi_supported(dev
) == 1)
768 rc
= em28xx_init_isoc(dev
, EM28XX_NUM_PACKETS
,
771 em28xx_isoc_copy_vbi
);
773 rc
= em28xx_init_isoc(dev
, EM28XX_NUM_PACKETS
,
781 buf
->vb
.state
= VIDEOBUF_PREPARED
;
785 free_buffer(vq
, buf
);
790 buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
792 struct em28xx_buffer
*buf
= container_of(vb
,
793 struct em28xx_buffer
,
795 struct em28xx_fh
*fh
= vq
->priv_data
;
796 struct em28xx
*dev
= fh
->dev
;
797 struct em28xx_dmaqueue
*vidq
= &dev
->vidq
;
799 buf
->vb
.state
= VIDEOBUF_QUEUED
;
800 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
804 static void buffer_release(struct videobuf_queue
*vq
,
805 struct videobuf_buffer
*vb
)
807 struct em28xx_buffer
*buf
= container_of(vb
,
808 struct em28xx_buffer
,
810 struct em28xx_fh
*fh
= vq
->priv_data
;
811 struct em28xx
*dev
= (struct em28xx
*)fh
->dev
;
813 em28xx_isocdbg("em28xx: called buffer_release\n");
815 free_buffer(vq
, buf
);
818 static struct videobuf_queue_ops em28xx_video_qops
= {
819 .buf_setup
= buffer_setup
,
820 .buf_prepare
= buffer_prepare
,
821 .buf_queue
= buffer_queue
,
822 .buf_release
= buffer_release
,
825 /********************* v4l2 interface **************************************/
827 static void video_mux(struct em28xx
*dev
, int index
)
829 dev
->ctl_input
= index
;
830 dev
->ctl_ainput
= INPUT(index
)->amux
;
831 dev
->ctl_aoutput
= INPUT(index
)->aout
;
833 if (!dev
->ctl_aoutput
)
834 dev
->ctl_aoutput
= EM28XX_AOUT_MASTER
;
836 v4l2_device_call_all(&dev
->v4l2_dev
, 0, video
, s_routing
,
837 INPUT(index
)->vmux
, 0, 0);
839 if (dev
->board
.has_msp34xx
) {
840 if (dev
->i2s_speed
) {
841 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
,
842 s_i2s_clock_freq
, dev
->i2s_speed
);
844 /* Note: this is msp3400 specific */
845 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
, s_routing
,
846 dev
->ctl_ainput
, MSP_OUTPUT(MSP_SC_IN_DSP_SCART1
), 0);
849 if (dev
->board
.adecoder
!= EM28XX_NOADECODER
) {
850 v4l2_device_call_all(&dev
->v4l2_dev
, 0, audio
, s_routing
,
851 dev
->ctl_ainput
, dev
->ctl_aoutput
, 0);
854 em28xx_audio_analog_set(dev
);
857 /* Usage lock check functions */
858 static int res_get(struct em28xx_fh
*fh
, unsigned int bit
)
860 struct em28xx
*dev
= fh
->dev
;
862 if (fh
->resources
& bit
)
863 /* have it already allocated */
867 if (dev
->resources
& bit
) {
868 /* no, someone else uses it */
871 /* it's free, grab it */
872 fh
->resources
|= bit
;
873 dev
->resources
|= bit
;
874 em28xx_videodbg("res: get %d\n", bit
);
878 static int res_check(struct em28xx_fh
*fh
, unsigned int bit
)
880 return fh
->resources
& bit
;
883 static int res_locked(struct em28xx
*dev
, unsigned int bit
)
885 return dev
->resources
& bit
;
888 static void res_free(struct em28xx_fh
*fh
, unsigned int bits
)
890 struct em28xx
*dev
= fh
->dev
;
892 BUG_ON((fh
->resources
& bits
) != bits
);
894 fh
->resources
&= ~bits
;
895 dev
->resources
&= ~bits
;
896 em28xx_videodbg("res: put %d\n", bits
);
899 static int get_ressource(struct em28xx_fh
*fh
)
902 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
903 return EM28XX_RESOURCE_VIDEO
;
904 case V4L2_BUF_TYPE_VBI_CAPTURE
:
905 return EM28XX_RESOURCE_VBI
;
914 * return the ac97 supported controls
916 static int ac97_queryctrl(struct v4l2_queryctrl
*qc
)
920 for (i
= 0; i
< ARRAY_SIZE(ac97_qctrl
); i
++) {
921 if (qc
->id
&& qc
->id
== ac97_qctrl
[i
].id
) {
922 memcpy(qc
, &(ac97_qctrl
[i
]), sizeof(*qc
));
927 /* Control is not ac97 related */
933 * return the current values for ac97 mute and volume
935 static int ac97_get_ctrl(struct em28xx
*dev
, struct v4l2_control
*ctrl
)
938 case V4L2_CID_AUDIO_MUTE
:
939 ctrl
->value
= dev
->mute
;
941 case V4L2_CID_AUDIO_VOLUME
:
942 ctrl
->value
= dev
->volume
;
945 /* Control is not ac97 related */
952 * set values for ac97 mute and volume
954 static int ac97_set_ctrl(struct em28xx
*dev
, const struct v4l2_control
*ctrl
)
958 for (i
= 0; i
< ARRAY_SIZE(ac97_qctrl
); i
++)
959 if (ctrl
->id
== ac97_qctrl
[i
].id
)
962 /* Announce that hasn't handle it */
966 if (ctrl
->value
< ac97_qctrl
[i
].minimum
||
967 ctrl
->value
> ac97_qctrl
[i
].maximum
)
971 case V4L2_CID_AUDIO_MUTE
:
972 dev
->mute
= ctrl
->value
;
974 case V4L2_CID_AUDIO_VOLUME
:
975 dev
->volume
= ctrl
->value
;
979 return em28xx_audio_analog_set(dev
);
982 static int check_dev(struct em28xx
*dev
)
984 if (dev
->state
& DEV_DISCONNECTED
) {
985 em28xx_errdev("v4l2 ioctl: device not present\n");
989 if (dev
->state
& DEV_MISCONFIGURED
) {
990 em28xx_errdev("v4l2 ioctl: device is misconfigured; "
991 "close and open it again\n");
997 static void get_scale(struct em28xx
*dev
,
998 unsigned int width
, unsigned int height
,
999 unsigned int *hscale
, unsigned int *vscale
)
1001 unsigned int maxw
= norm_maxw(dev
);
1002 unsigned int maxh
= norm_maxh(dev
);
1004 *hscale
= (((unsigned long)maxw
) << 12) / width
- 4096L;
1005 if (*hscale
>= 0x4000)
1008 *vscale
= (((unsigned long)maxh
) << 12) / height
- 4096L;
1009 if (*vscale
>= 0x4000)
1013 /* ------------------------------------------------------------------
1014 IOCTL vidioc handling
1015 ------------------------------------------------------------------*/
1017 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
1018 struct v4l2_format
*f
)
1020 struct em28xx_fh
*fh
= priv
;
1021 struct em28xx
*dev
= fh
->dev
;
1023 f
->fmt
.pix
.width
= dev
->width
;
1024 f
->fmt
.pix
.height
= dev
->height
;
1025 f
->fmt
.pix
.pixelformat
= dev
->format
->fourcc
;
1026 f
->fmt
.pix
.bytesperline
= (dev
->width
* dev
->format
->depth
+ 7) >> 3;
1027 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.bytesperline
* dev
->height
;
1028 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1030 /* FIXME: TOP? NONE? BOTTOM? ALTENATE? */
1031 if (dev
->progressive
)
1032 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
1034 f
->fmt
.pix
.field
= dev
->interlaced
?
1035 V4L2_FIELD_INTERLACED
: V4L2_FIELD_TOP
;
1039 static struct em28xx_fmt
*format_by_fourcc(unsigned int fourcc
)
1043 for (i
= 0; i
< ARRAY_SIZE(format
); i
++)
1044 if (format
[i
].fourcc
== fourcc
)
1050 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
1051 struct v4l2_format
*f
)
1053 struct em28xx_fh
*fh
= priv
;
1054 struct em28xx
*dev
= fh
->dev
;
1055 unsigned int width
= f
->fmt
.pix
.width
;
1056 unsigned int height
= f
->fmt
.pix
.height
;
1057 unsigned int maxw
= norm_maxw(dev
);
1058 unsigned int maxh
= norm_maxh(dev
);
1059 unsigned int hscale
, vscale
;
1060 struct em28xx_fmt
*fmt
;
1062 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
1064 em28xx_videodbg("Fourcc format (%08x) invalid.\n",
1065 f
->fmt
.pix
.pixelformat
);
1069 if (dev
->board
.is_em2800
) {
1070 /* the em2800 can only scale down to 50% */
1071 height
= height
> (3 * maxh
/ 4) ? maxh
: maxh
/ 2;
1072 width
= width
> (3 * maxw
/ 4) ? maxw
: maxw
/ 2;
1074 /* width must even because of the YUYV format
1075 height must be even because of interlacing */
1076 v4l_bound_align_image(&width
, 48, maxw
, 1, &height
, 32, maxh
,
1080 get_scale(dev
, width
, height
, &hscale
, &vscale
);
1082 width
= (((unsigned long)maxw
) << 12) / (hscale
+ 4096L);
1083 height
= (((unsigned long)maxh
) << 12) / (vscale
+ 4096L);
1085 f
->fmt
.pix
.width
= width
;
1086 f
->fmt
.pix
.height
= height
;
1087 f
->fmt
.pix
.pixelformat
= fmt
->fourcc
;
1088 f
->fmt
.pix
.bytesperline
= (dev
->width
* fmt
->depth
+ 7) >> 3;
1089 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.bytesperline
* height
;
1090 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1091 if (dev
->progressive
)
1092 f
->fmt
.pix
.field
= V4L2_FIELD_NONE
;
1094 f
->fmt
.pix
.field
= dev
->interlaced
?
1095 V4L2_FIELD_INTERLACED
: V4L2_FIELD_TOP
;
1100 static int em28xx_set_video_format(struct em28xx
*dev
, unsigned int fourcc
,
1101 unsigned width
, unsigned height
)
1103 struct em28xx_fmt
*fmt
;
1105 fmt
= format_by_fourcc(fourcc
);
1111 dev
->height
= height
;
1113 /* set new image size */
1114 get_scale(dev
, dev
->width
, dev
->height
, &dev
->hscale
, &dev
->vscale
);
1116 em28xx_set_alternate(dev
);
1117 em28xx_resolution_set(dev
);
1122 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
1123 struct v4l2_format
*f
)
1125 struct em28xx_fh
*fh
= priv
;
1126 struct em28xx
*dev
= fh
->dev
;
1129 rc
= check_dev(dev
);
1133 vidioc_try_fmt_vid_cap(file
, priv
, f
);
1135 if (videobuf_queue_is_busy(&fh
->vb_vidq
)) {
1136 em28xx_errdev("%s queue busy\n", __func__
);
1140 return em28xx_set_video_format(dev
, f
->fmt
.pix
.pixelformat
,
1141 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
);
1144 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
1146 struct em28xx_fh
*fh
= priv
;
1147 struct em28xx
*dev
= fh
->dev
;
1150 rc
= check_dev(dev
);
1159 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id
*norm
)
1161 struct em28xx_fh
*fh
= priv
;
1162 struct em28xx
*dev
= fh
->dev
;
1163 struct v4l2_format f
;
1166 rc
= check_dev(dev
);
1172 /* Adjusts width/height, if needed */
1173 f
.fmt
.pix
.width
= dev
->width
;
1174 f
.fmt
.pix
.height
= dev
->height
;
1175 vidioc_try_fmt_vid_cap(file
, priv
, &f
);
1177 /* set new image size */
1178 dev
->width
= f
.fmt
.pix
.width
;
1179 dev
->height
= f
.fmt
.pix
.height
;
1180 get_scale(dev
, dev
->width
, dev
->height
, &dev
->hscale
, &dev
->vscale
);
1182 em28xx_resolution_set(dev
);
1183 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_std
, dev
->norm
);
1188 static int vidioc_g_parm(struct file
*file
, void *priv
,
1189 struct v4l2_streamparm
*p
)
1191 struct em28xx_fh
*fh
= priv
;
1192 struct em28xx
*dev
= fh
->dev
;
1195 if (p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1198 if (dev
->board
.is_webcam
)
1199 rc
= v4l2_device_call_until_err(&dev
->v4l2_dev
, 0,
1202 v4l2_video_std_frame_period(dev
->norm
,
1203 &p
->parm
.capture
.timeperframe
);
1208 static int vidioc_s_parm(struct file
*file
, void *priv
,
1209 struct v4l2_streamparm
*p
)
1211 struct em28xx_fh
*fh
= priv
;
1212 struct em28xx
*dev
= fh
->dev
;
1214 if (!dev
->board
.is_webcam
)
1217 if (p
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1220 return v4l2_device_call_until_err(&dev
->v4l2_dev
, 0, video
, s_parm
, p
);
1223 static const char *iname
[] = {
1224 [EM28XX_VMUX_COMPOSITE1
] = "Composite1",
1225 [EM28XX_VMUX_COMPOSITE2
] = "Composite2",
1226 [EM28XX_VMUX_COMPOSITE3
] = "Composite3",
1227 [EM28XX_VMUX_COMPOSITE4
] = "Composite4",
1228 [EM28XX_VMUX_SVIDEO
] = "S-Video",
1229 [EM28XX_VMUX_TELEVISION
] = "Television",
1230 [EM28XX_VMUX_CABLE
] = "Cable TV",
1231 [EM28XX_VMUX_DVB
] = "DVB",
1232 [EM28XX_VMUX_DEBUG
] = "for debug only",
1235 static int vidioc_enum_input(struct file
*file
, void *priv
,
1236 struct v4l2_input
*i
)
1238 struct em28xx_fh
*fh
= priv
;
1239 struct em28xx
*dev
= fh
->dev
;
1243 if (n
>= MAX_EM28XX_INPUT
)
1245 if (0 == INPUT(n
)->type
)
1249 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1251 strcpy(i
->name
, iname
[INPUT(n
)->type
]);
1253 if ((EM28XX_VMUX_TELEVISION
== INPUT(n
)->type
) ||
1254 (EM28XX_VMUX_CABLE
== INPUT(n
)->type
))
1255 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1257 i
->std
= dev
->vdev
->tvnorms
;
1262 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1264 struct em28xx_fh
*fh
= priv
;
1265 struct em28xx
*dev
= fh
->dev
;
1267 *i
= dev
->ctl_input
;
1272 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1274 struct em28xx_fh
*fh
= priv
;
1275 struct em28xx
*dev
= fh
->dev
;
1278 rc
= check_dev(dev
);
1282 if (i
>= MAX_EM28XX_INPUT
)
1284 if (0 == INPUT(i
)->type
)
1289 video_mux(dev
, dev
->ctl_input
);
1293 static int vidioc_g_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
1295 struct em28xx_fh
*fh
= priv
;
1296 struct em28xx
*dev
= fh
->dev
;
1298 if (!dev
->audio_mode
.has_audio
)
1302 case EM28XX_AMUX_VIDEO
:
1303 strcpy(a
->name
, "Television");
1305 case EM28XX_AMUX_LINE_IN
:
1306 strcpy(a
->name
, "Line In");
1308 case EM28XX_AMUX_VIDEO2
:
1309 strcpy(a
->name
, "Television alt");
1311 case EM28XX_AMUX_PHONE
:
1312 strcpy(a
->name
, "Phone");
1314 case EM28XX_AMUX_MIC
:
1315 strcpy(a
->name
, "Mic");
1317 case EM28XX_AMUX_CD
:
1318 strcpy(a
->name
, "CD");
1320 case EM28XX_AMUX_AUX
:
1321 strcpy(a
->name
, "Aux");
1323 case EM28XX_AMUX_PCM_OUT
:
1324 strcpy(a
->name
, "PCM");
1330 a
->index
= dev
->ctl_ainput
;
1331 a
->capability
= V4L2_AUDCAP_STEREO
;
1336 static int vidioc_s_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
1338 struct em28xx_fh
*fh
= priv
;
1339 struct em28xx
*dev
= fh
->dev
;
1342 if (!dev
->audio_mode
.has_audio
)
1345 if (a
->index
>= MAX_EM28XX_INPUT
)
1347 if (0 == INPUT(a
->index
)->type
)
1350 dev
->ctl_ainput
= INPUT(a
->index
)->amux
;
1351 dev
->ctl_aoutput
= INPUT(a
->index
)->aout
;
1353 if (!dev
->ctl_aoutput
)
1354 dev
->ctl_aoutput
= EM28XX_AOUT_MASTER
;
1359 static int vidioc_queryctrl(struct file
*file
, void *priv
,
1360 struct v4l2_queryctrl
*qc
)
1362 struct em28xx_fh
*fh
= priv
;
1363 struct em28xx
*dev
= fh
->dev
;
1367 rc
= check_dev(dev
);
1371 memset(qc
, 0, sizeof(*qc
));
1375 /* enumerate AC97 controls */
1376 if (dev
->audio_mode
.ac97
!= EM28XX_NO_AC97
) {
1377 rc
= ac97_queryctrl(qc
);
1382 /* enumerate V4L2 device controls */
1383 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, queryctrl
, qc
);
1392 * FIXME: This is an indirect way to check if a control exists at a
1393 * subdev. Instead of that hack, maybe the better would be to change all
1394 * subdevs to return -ENOIOCTLCMD, if an ioctl is not supported.
1396 static int check_subdev_ctrl(struct em28xx
*dev
, int id
)
1398 struct v4l2_queryctrl qc
;
1400 memset(&qc
, 0, sizeof(qc
));
1403 /* enumerate V4L2 device controls */
1404 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, queryctrl
, &qc
);
1412 static int vidioc_g_ctrl(struct file
*file
, void *priv
,
1413 struct v4l2_control
*ctrl
)
1415 struct em28xx_fh
*fh
= priv
;
1416 struct em28xx
*dev
= fh
->dev
;
1419 rc
= check_dev(dev
);
1424 /* Set an AC97 control */
1425 if (dev
->audio_mode
.ac97
!= EM28XX_NO_AC97
)
1426 rc
= ac97_get_ctrl(dev
, ctrl
);
1430 /* It were not an AC97 control. Sends it to the v4l2 dev interface */
1432 if (check_subdev_ctrl(dev
, ctrl
->id
))
1435 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_ctrl
, ctrl
);
1442 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
1443 struct v4l2_control
*ctrl
)
1445 struct em28xx_fh
*fh
= priv
;
1446 struct em28xx
*dev
= fh
->dev
;
1449 rc
= check_dev(dev
);
1453 /* Set an AC97 control */
1454 if (dev
->audio_mode
.ac97
!= EM28XX_NO_AC97
)
1455 rc
= ac97_set_ctrl(dev
, ctrl
);
1459 /* It isn't an AC97 control. Sends it to the v4l2 dev interface */
1461 rc
= check_subdev_ctrl(dev
, ctrl
->id
);
1463 v4l2_device_call_all(&dev
->v4l2_dev
, 0,
1464 core
, s_ctrl
, ctrl
);
1466 * In the case of non-AC97 volume controls, we still need
1467 * to do some setups at em28xx, in order to mute/unmute
1468 * and to adjust audio volume. However, the value ranges
1469 * should be checked by the corresponding V4L subdriver.
1472 case V4L2_CID_AUDIO_MUTE
:
1473 dev
->mute
= ctrl
->value
;
1474 rc
= em28xx_audio_analog_set(dev
);
1476 case V4L2_CID_AUDIO_VOLUME
:
1477 dev
->volume
= ctrl
->value
;
1478 rc
= em28xx_audio_analog_set(dev
);
1481 return (rc
< 0) ? rc
: 0;
1484 static int vidioc_g_tuner(struct file
*file
, void *priv
,
1485 struct v4l2_tuner
*t
)
1487 struct em28xx_fh
*fh
= priv
;
1488 struct em28xx
*dev
= fh
->dev
;
1491 rc
= check_dev(dev
);
1498 strcpy(t
->name
, "Tuner");
1499 t
->type
= V4L2_TUNER_ANALOG_TV
;
1501 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1505 static int vidioc_s_tuner(struct file
*file
, void *priv
,
1506 struct v4l2_tuner
*t
)
1508 struct em28xx_fh
*fh
= priv
;
1509 struct em28xx
*dev
= fh
->dev
;
1512 rc
= check_dev(dev
);
1519 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
1523 static int vidioc_g_frequency(struct file
*file
, void *priv
,
1524 struct v4l2_frequency
*f
)
1526 struct em28xx_fh
*fh
= priv
;
1527 struct em28xx
*dev
= fh
->dev
;
1529 f
->type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1530 f
->frequency
= dev
->ctl_freq
;
1534 static int vidioc_s_frequency(struct file
*file
, void *priv
,
1535 struct v4l2_frequency
*f
)
1537 struct em28xx_fh
*fh
= priv
;
1538 struct em28xx
*dev
= fh
->dev
;
1541 rc
= check_dev(dev
);
1548 if (unlikely(0 == fh
->radio
&& f
->type
!= V4L2_TUNER_ANALOG_TV
))
1550 if (unlikely(1 == fh
->radio
&& f
->type
!= V4L2_TUNER_RADIO
))
1553 dev
->ctl_freq
= f
->frequency
;
1554 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, f
);
1559 #ifdef CONFIG_VIDEO_ADV_DEBUG
1560 static int em28xx_reg_len(int reg
)
1563 case EM28XX_R40_AC97LSB
:
1564 case EM28XX_R30_HSCALELOW
:
1565 case EM28XX_R32_VSCALELOW
:
1572 static int vidioc_g_chip_ident(struct file
*file
, void *priv
,
1573 struct v4l2_dbg_chip_ident
*chip
)
1575 struct em28xx_fh
*fh
= priv
;
1576 struct em28xx
*dev
= fh
->dev
;
1578 chip
->ident
= V4L2_IDENT_NONE
;
1581 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_chip_ident
, chip
);
1587 static int vidioc_g_register(struct file
*file
, void *priv
,
1588 struct v4l2_dbg_register
*reg
)
1590 struct em28xx_fh
*fh
= priv
;
1591 struct em28xx
*dev
= fh
->dev
;
1594 switch (reg
->match
.type
) {
1595 case V4L2_CHIP_MATCH_AC97
:
1596 ret
= em28xx_read_ac97(dev
, reg
->reg
);
1603 case V4L2_CHIP_MATCH_I2C_DRIVER
:
1604 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_register
, reg
);
1606 case V4L2_CHIP_MATCH_I2C_ADDR
:
1607 /* TODO: is this correct? */
1608 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, g_register
, reg
);
1611 if (!v4l2_chip_match_host(®
->match
))
1616 reg
->size
= em28xx_reg_len(reg
->reg
);
1617 if (reg
->size
== 1) {
1618 ret
= em28xx_read_reg(dev
, reg
->reg
);
1626 ret
= em28xx_read_reg_req_len(dev
, USB_REQ_GET_STATUS
,
1627 reg
->reg
, (char *)&val
, 2);
1631 reg
->val
= le16_to_cpu(val
);
1637 static int vidioc_s_register(struct file
*file
, void *priv
,
1638 struct v4l2_dbg_register
*reg
)
1640 struct em28xx_fh
*fh
= priv
;
1641 struct em28xx
*dev
= fh
->dev
;
1644 switch (reg
->match
.type
) {
1645 case V4L2_CHIP_MATCH_AC97
:
1646 return em28xx_write_ac97(dev
, reg
->reg
, reg
->val
);
1647 case V4L2_CHIP_MATCH_I2C_DRIVER
:
1648 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_register
, reg
);
1650 case V4L2_CHIP_MATCH_I2C_ADDR
:
1651 /* TODO: is this correct? */
1652 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_register
, reg
);
1655 if (!v4l2_chip_match_host(®
->match
))
1660 buf
= cpu_to_le16(reg
->val
);
1662 return em28xx_write_regs(dev
, reg
->reg
, (char *)&buf
,
1663 em28xx_reg_len(reg
->reg
));
1668 static int vidioc_cropcap(struct file
*file
, void *priv
,
1669 struct v4l2_cropcap
*cc
)
1671 struct em28xx_fh
*fh
= priv
;
1672 struct em28xx
*dev
= fh
->dev
;
1674 if (cc
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1677 cc
->bounds
.left
= 0;
1679 cc
->bounds
.width
= dev
->width
;
1680 cc
->bounds
.height
= dev
->height
;
1681 cc
->defrect
= cc
->bounds
;
1682 cc
->pixelaspect
.numerator
= 54; /* 4:3 FIXME: remove magic numbers */
1683 cc
->pixelaspect
.denominator
= 59;
1688 static int vidioc_streamon(struct file
*file
, void *priv
,
1689 enum v4l2_buf_type type
)
1691 struct em28xx_fh
*fh
= priv
;
1692 struct em28xx
*dev
= fh
->dev
;
1695 rc
= check_dev(dev
);
1699 if (unlikely(type
!= fh
->type
))
1702 em28xx_videodbg("vidioc_streamon fh=%p t=%d fh->res=%d dev->res=%d\n",
1703 fh
, type
, fh
->resources
, dev
->resources
);
1705 if (unlikely(!res_get(fh
, get_ressource(fh
))))
1708 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1709 rc
= videobuf_streamon(&fh
->vb_vidq
);
1710 else if (fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
1711 rc
= videobuf_streamon(&fh
->vb_vbiq
);
1716 static int vidioc_streamoff(struct file
*file
, void *priv
,
1717 enum v4l2_buf_type type
)
1719 struct em28xx_fh
*fh
= priv
;
1720 struct em28xx
*dev
= fh
->dev
;
1723 rc
= check_dev(dev
);
1727 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
&&
1728 fh
->type
!= V4L2_BUF_TYPE_VBI_CAPTURE
)
1730 if (type
!= fh
->type
)
1733 em28xx_videodbg("vidioc_streamoff fh=%p t=%d fh->res=%d dev->res=%d\n",
1734 fh
, type
, fh
->resources
, dev
->resources
);
1736 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1737 if (res_check(fh
, EM28XX_RESOURCE_VIDEO
)) {
1738 videobuf_streamoff(&fh
->vb_vidq
);
1739 res_free(fh
, EM28XX_RESOURCE_VIDEO
);
1741 } else if (fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
1742 if (res_check(fh
, EM28XX_RESOURCE_VBI
)) {
1743 videobuf_streamoff(&fh
->vb_vbiq
);
1744 res_free(fh
, EM28XX_RESOURCE_VBI
);
1751 static int vidioc_querycap(struct file
*file
, void *priv
,
1752 struct v4l2_capability
*cap
)
1754 struct em28xx_fh
*fh
= priv
;
1755 struct em28xx
*dev
= fh
->dev
;
1757 strlcpy(cap
->driver
, "em28xx", sizeof(cap
->driver
));
1758 strlcpy(cap
->card
, em28xx_boards
[dev
->model
].name
, sizeof(cap
->card
));
1759 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
1762 V4L2_CAP_SLICED_VBI_CAPTURE
|
1763 V4L2_CAP_VIDEO_CAPTURE
|
1764 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
;
1767 cap
->capabilities
|= V4L2_CAP_VBI_CAPTURE
;
1769 if (dev
->audio_mode
.has_audio
)
1770 cap
->capabilities
|= V4L2_CAP_AUDIO
;
1772 if (dev
->tuner_type
!= TUNER_ABSENT
)
1773 cap
->capabilities
|= V4L2_CAP_TUNER
;
1778 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
1779 struct v4l2_fmtdesc
*f
)
1781 if (unlikely(f
->index
>= ARRAY_SIZE(format
)))
1784 strlcpy(f
->description
, format
[f
->index
].name
, sizeof(f
->description
));
1785 f
->pixelformat
= format
[f
->index
].fourcc
;
1790 /* Sliced VBI ioctls */
1791 static int vidioc_g_fmt_sliced_vbi_cap(struct file
*file
, void *priv
,
1792 struct v4l2_format
*f
)
1794 struct em28xx_fh
*fh
= priv
;
1795 struct em28xx
*dev
= fh
->dev
;
1798 rc
= check_dev(dev
);
1802 f
->fmt
.sliced
.service_set
= 0;
1803 v4l2_device_call_all(&dev
->v4l2_dev
, 0, vbi
, g_sliced_fmt
, &f
->fmt
.sliced
);
1805 if (f
->fmt
.sliced
.service_set
== 0)
1811 static int vidioc_try_set_sliced_vbi_cap(struct file
*file
, void *priv
,
1812 struct v4l2_format
*f
)
1814 struct em28xx_fh
*fh
= priv
;
1815 struct em28xx
*dev
= fh
->dev
;
1818 rc
= check_dev(dev
);
1822 v4l2_device_call_all(&dev
->v4l2_dev
, 0, vbi
, g_sliced_fmt
, &f
->fmt
.sliced
);
1824 if (f
->fmt
.sliced
.service_set
== 0)
1830 /* RAW VBI ioctls */
1832 static int vidioc_g_fmt_vbi_cap(struct file
*file
, void *priv
,
1833 struct v4l2_format
*format
)
1835 struct em28xx_fh
*fh
= priv
;
1836 struct em28xx
*dev
= fh
->dev
;
1838 format
->fmt
.vbi
.samples_per_line
= dev
->vbi_width
;
1839 format
->fmt
.vbi
.sample_format
= V4L2_PIX_FMT_GREY
;
1840 format
->fmt
.vbi
.offset
= 0;
1841 format
->fmt
.vbi
.flags
= 0;
1842 format
->fmt
.vbi
.sampling_rate
= 6750000 * 4 / 2;
1843 format
->fmt
.vbi
.count
[0] = dev
->vbi_height
;
1844 format
->fmt
.vbi
.count
[1] = dev
->vbi_height
;
1846 /* Varies by video standard (NTSC, PAL, etc.) */
1847 if (dev
->norm
& V4L2_STD_525_60
) {
1849 format
->fmt
.vbi
.start
[0] = 10;
1850 format
->fmt
.vbi
.start
[1] = 273;
1851 } else if (dev
->norm
& V4L2_STD_625_50
) {
1853 format
->fmt
.vbi
.start
[0] = 6;
1854 format
->fmt
.vbi
.start
[1] = 318;
1860 static int vidioc_s_fmt_vbi_cap(struct file
*file
, void *priv
,
1861 struct v4l2_format
*format
)
1863 struct em28xx_fh
*fh
= priv
;
1864 struct em28xx
*dev
= fh
->dev
;
1866 format
->fmt
.vbi
.samples_per_line
= dev
->vbi_width
;
1867 format
->fmt
.vbi
.sample_format
= V4L2_PIX_FMT_GREY
;
1868 format
->fmt
.vbi
.offset
= 0;
1869 format
->fmt
.vbi
.flags
= 0;
1870 format
->fmt
.vbi
.sampling_rate
= 6750000 * 4 / 2;
1871 format
->fmt
.vbi
.count
[0] = dev
->vbi_height
;
1872 format
->fmt
.vbi
.count
[1] = dev
->vbi_height
;
1874 /* Varies by video standard (NTSC, PAL, etc.) */
1875 if (dev
->norm
& V4L2_STD_525_60
) {
1877 format
->fmt
.vbi
.start
[0] = 10;
1878 format
->fmt
.vbi
.start
[1] = 273;
1879 } else if (dev
->norm
& V4L2_STD_625_50
) {
1881 format
->fmt
.vbi
.start
[0] = 6;
1882 format
->fmt
.vbi
.start
[1] = 318;
1888 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1889 struct v4l2_requestbuffers
*rb
)
1891 struct em28xx_fh
*fh
= priv
;
1892 struct em28xx
*dev
= fh
->dev
;
1895 rc
= check_dev(dev
);
1899 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1900 return videobuf_reqbufs(&fh
->vb_vidq
, rb
);
1902 return videobuf_reqbufs(&fh
->vb_vbiq
, rb
);
1905 static int vidioc_querybuf(struct file
*file
, void *priv
,
1906 struct v4l2_buffer
*b
)
1908 struct em28xx_fh
*fh
= priv
;
1909 struct em28xx
*dev
= fh
->dev
;
1912 rc
= check_dev(dev
);
1916 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1917 return videobuf_querybuf(&fh
->vb_vidq
, b
);
1919 /* FIXME: I'm not sure yet whether this is a bug in zvbi or
1920 the videobuf framework, but we probably shouldn't be
1921 returning a buffer larger than that which was asked for.
1922 At a minimum, it causes a crash in zvbi since it does
1923 a memcpy based on the source buffer length */
1924 int result
= videobuf_querybuf(&fh
->vb_vbiq
, b
);
1925 b
->length
= dev
->vbi_width
* dev
->vbi_height
* 2;
1931 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
1933 struct em28xx_fh
*fh
= priv
;
1934 struct em28xx
*dev
= fh
->dev
;
1937 rc
= check_dev(dev
);
1941 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1942 return videobuf_qbuf(&fh
->vb_vidq
, b
);
1944 return videobuf_qbuf(&fh
->vb_vbiq
, b
);
1947 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
)
1949 struct em28xx_fh
*fh
= priv
;
1950 struct em28xx
*dev
= fh
->dev
;
1953 rc
= check_dev(dev
);
1957 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1958 return videobuf_dqbuf(&fh
->vb_vidq
, b
, file
->f_flags
&
1961 return videobuf_dqbuf(&fh
->vb_vbiq
, b
, file
->f_flags
&
1965 /* ----------------------------------------------------------- */
1966 /* RADIO ESPECIFIC IOCTLS */
1967 /* ----------------------------------------------------------- */
1969 static int radio_querycap(struct file
*file
, void *priv
,
1970 struct v4l2_capability
*cap
)
1972 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
1974 strlcpy(cap
->driver
, "em28xx", sizeof(cap
->driver
));
1975 strlcpy(cap
->card
, em28xx_boards
[dev
->model
].name
, sizeof(cap
->card
));
1976 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
1978 cap
->capabilities
= V4L2_CAP_TUNER
;
1982 static int radio_g_tuner(struct file
*file
, void *priv
,
1983 struct v4l2_tuner
*t
)
1985 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
1987 if (unlikely(t
->index
> 0))
1990 strcpy(t
->name
, "Radio");
1991 t
->type
= V4L2_TUNER_RADIO
;
1993 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, g_tuner
, t
);
1998 static int radio_enum_input(struct file
*file
, void *priv
,
1999 struct v4l2_input
*i
)
2003 strcpy(i
->name
, "Radio");
2004 i
->type
= V4L2_INPUT_TYPE_TUNER
;
2009 static int radio_g_audio(struct file
*file
, void *priv
, struct v4l2_audio
*a
)
2011 if (unlikely(a
->index
))
2014 strcpy(a
->name
, "Radio");
2018 static int radio_s_tuner(struct file
*file
, void *priv
,
2019 struct v4l2_tuner
*t
)
2021 struct em28xx
*dev
= ((struct em28xx_fh
*)priv
)->dev
;
2026 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_tuner
, t
);
2031 static int radio_s_audio(struct file
*file
, void *fh
,
2032 struct v4l2_audio
*a
)
2037 static int radio_s_input(struct file
*file
, void *fh
, unsigned int i
)
2042 static int radio_queryctrl(struct file
*file
, void *priv
,
2043 struct v4l2_queryctrl
*qc
)
2047 if (qc
->id
< V4L2_CID_BASE
||
2048 qc
->id
>= V4L2_CID_LASTP1
)
2051 for (i
= 0; i
< ARRAY_SIZE(ac97_qctrl
); i
++) {
2052 if (qc
->id
&& qc
->id
== ac97_qctrl
[i
].id
) {
2053 memcpy(qc
, &(ac97_qctrl
[i
]), sizeof(*qc
));
2062 * em28xx_v4l2_open()
2063 * inits the device and starts isoc transfer
2065 static int em28xx_v4l2_open(struct file
*filp
)
2067 int errCode
= 0, radio
= 0;
2068 struct video_device
*vdev
= video_devdata(filp
);
2069 struct em28xx
*dev
= video_drvdata(filp
);
2070 enum v4l2_buf_type fh_type
= 0;
2071 struct em28xx_fh
*fh
;
2072 enum v4l2_field field
;
2074 switch (vdev
->vfl_type
) {
2075 case VFL_TYPE_GRABBER
:
2076 fh_type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
2079 fh_type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
2081 case VFL_TYPE_RADIO
:
2086 em28xx_videodbg("open dev=%s type=%s users=%d\n",
2087 video_device_node_name(vdev
), v4l2_type_names
[fh_type
],
2091 fh
= kzalloc(sizeof(struct em28xx_fh
), GFP_KERNEL
);
2093 em28xx_errdev("em28xx-video.c: Out of memory?!\n");
2099 filp
->private_data
= fh
;
2101 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
&& dev
->users
== 0) {
2102 em28xx_set_mode(dev
, EM28XX_ANALOG_MODE
);
2103 em28xx_set_alternate(dev
);
2104 em28xx_resolution_set(dev
);
2106 /* Needed, since GPIO might have disabled power of
2109 em28xx_wake_i2c(dev
);
2113 em28xx_videodbg("video_open: setting radio device\n");
2114 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_radio
);
2119 if (dev
->progressive
)
2120 field
= V4L2_FIELD_NONE
;
2122 field
= V4L2_FIELD_INTERLACED
;
2124 videobuf_queue_vmalloc_init(&fh
->vb_vidq
, &em28xx_video_qops
,
2126 V4L2_BUF_TYPE_VIDEO_CAPTURE
, field
,
2127 sizeof(struct em28xx_buffer
), fh
, &dev
->lock
);
2129 videobuf_queue_vmalloc_init(&fh
->vb_vbiq
, &em28xx_vbi_qops
,
2131 V4L2_BUF_TYPE_VBI_CAPTURE
,
2133 sizeof(struct em28xx_buffer
), fh
, &dev
->lock
);
2139 * em28xx_realease_resources()
2140 * unregisters the v4l2,i2c and usb devices
2141 * called when the device gets disconected or at module unload
2143 void em28xx_release_analog_resources(struct em28xx
*dev
)
2146 /*FIXME: I2C IR should be disconnected */
2148 if (dev
->radio_dev
) {
2149 if (video_is_registered(dev
->radio_dev
))
2150 video_unregister_device(dev
->radio_dev
);
2152 video_device_release(dev
->radio_dev
);
2153 dev
->radio_dev
= NULL
;
2156 em28xx_info("V4L2 device %s deregistered\n",
2157 video_device_node_name(dev
->vbi_dev
));
2158 if (video_is_registered(dev
->vbi_dev
))
2159 video_unregister_device(dev
->vbi_dev
);
2161 video_device_release(dev
->vbi_dev
);
2162 dev
->vbi_dev
= NULL
;
2165 em28xx_info("V4L2 device %s deregistered\n",
2166 video_device_node_name(dev
->vdev
));
2167 if (video_is_registered(dev
->vdev
))
2168 video_unregister_device(dev
->vdev
);
2170 video_device_release(dev
->vdev
);
2176 * em28xx_v4l2_close()
2177 * stops streaming and deallocates all resources allocated by the v4l2
2180 static int em28xx_v4l2_close(struct file
*filp
)
2182 struct em28xx_fh
*fh
= filp
->private_data
;
2183 struct em28xx
*dev
= fh
->dev
;
2186 em28xx_videodbg("users=%d\n", dev
->users
);
2188 if (res_check(fh
, EM28XX_RESOURCE_VIDEO
)) {
2189 videobuf_stop(&fh
->vb_vidq
);
2190 res_free(fh
, EM28XX_RESOURCE_VIDEO
);
2193 if (res_check(fh
, EM28XX_RESOURCE_VBI
)) {
2194 videobuf_stop(&fh
->vb_vbiq
);
2195 res_free(fh
, EM28XX_RESOURCE_VBI
);
2198 if (dev
->users
== 1) {
2199 /* the device is already disconnect,
2200 free the remaining resources */
2201 if (dev
->state
& DEV_DISCONNECTED
) {
2202 em28xx_release_resources(dev
);
2207 /* Save some power by putting tuner to sleep */
2208 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_power
, 0);
2210 /* do this before setting alternate! */
2211 em28xx_uninit_isoc(dev
);
2212 em28xx_set_mode(dev
, EM28XX_SUSPEND
);
2214 /* set alternate 0 */
2216 em28xx_videodbg("setting alternate 0\n");
2217 errCode
= usb_set_interface(dev
->udev
, 0, 0);
2219 em28xx_errdev("cannot change alternate number to "
2220 "0 (error=%i)\n", errCode
);
2224 videobuf_mmap_free(&fh
->vb_vidq
);
2225 videobuf_mmap_free(&fh
->vb_vbiq
);
2228 wake_up_interruptible_nr(&dev
->open
, 1);
2233 * em28xx_v4l2_read()
2234 * will allocate buffers when called for the first time
2237 em28xx_v4l2_read(struct file
*filp
, char __user
*buf
, size_t count
,
2240 struct em28xx_fh
*fh
= filp
->private_data
;
2241 struct em28xx
*dev
= fh
->dev
;
2244 rc
= check_dev(dev
);
2248 /* FIXME: read() is not prepared to allow changing the video
2249 resolution while streaming. Seems a bug at em28xx_set_fmt
2252 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
2253 if (res_locked(dev
, EM28XX_RESOURCE_VIDEO
))
2256 return videobuf_read_stream(&fh
->vb_vidq
, buf
, count
, pos
, 0,
2257 filp
->f_flags
& O_NONBLOCK
);
2261 if (fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
2262 if (!res_get(fh
, EM28XX_RESOURCE_VBI
))
2265 return videobuf_read_stream(&fh
->vb_vbiq
, buf
, count
, pos
, 0,
2266 filp
->f_flags
& O_NONBLOCK
);
2273 * em28xx_v4l2_poll()
2274 * will allocate buffers when called for the first time
2276 static unsigned int em28xx_v4l2_poll(struct file
*filp
, poll_table
*wait
)
2278 struct em28xx_fh
*fh
= filp
->private_data
;
2279 struct em28xx
*dev
= fh
->dev
;
2282 rc
= check_dev(dev
);
2286 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
2287 if (!res_get(fh
, EM28XX_RESOURCE_VIDEO
))
2289 return videobuf_poll_stream(filp
, &fh
->vb_vidq
, wait
);
2290 } else if (fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
2291 if (!res_get(fh
, EM28XX_RESOURCE_VBI
))
2293 return videobuf_poll_stream(filp
, &fh
->vb_vbiq
, wait
);
2300 * em28xx_v4l2_mmap()
2302 static int em28xx_v4l2_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
2304 struct em28xx_fh
*fh
= filp
->private_data
;
2305 struct em28xx
*dev
= fh
->dev
;
2308 rc
= check_dev(dev
);
2312 if (fh
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
)
2313 rc
= videobuf_mmap_mapper(&fh
->vb_vidq
, vma
);
2314 else if (fh
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
)
2315 rc
= videobuf_mmap_mapper(&fh
->vb_vbiq
, vma
);
2317 em28xx_videodbg("vma start=0x%08lx, size=%ld, ret=%d\n",
2318 (unsigned long)vma
->vm_start
,
2319 (unsigned long)vma
->vm_end
-(unsigned long)vma
->vm_start
,
2325 static const struct v4l2_file_operations em28xx_v4l_fops
= {
2326 .owner
= THIS_MODULE
,
2327 .open
= em28xx_v4l2_open
,
2328 .release
= em28xx_v4l2_close
,
2329 .read
= em28xx_v4l2_read
,
2330 .poll
= em28xx_v4l2_poll
,
2331 .mmap
= em28xx_v4l2_mmap
,
2332 .unlocked_ioctl
= video_ioctl2
,
2335 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
2336 .vidioc_querycap
= vidioc_querycap
,
2337 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
2338 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
2339 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
2340 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
2341 .vidioc_g_fmt_vbi_cap
= vidioc_g_fmt_vbi_cap
,
2342 .vidioc_s_fmt_vbi_cap
= vidioc_s_fmt_vbi_cap
,
2343 .vidioc_g_audio
= vidioc_g_audio
,
2344 .vidioc_s_audio
= vidioc_s_audio
,
2345 .vidioc_cropcap
= vidioc_cropcap
,
2347 .vidioc_g_fmt_sliced_vbi_cap
= vidioc_g_fmt_sliced_vbi_cap
,
2348 .vidioc_try_fmt_sliced_vbi_cap
= vidioc_try_set_sliced_vbi_cap
,
2349 .vidioc_s_fmt_sliced_vbi_cap
= vidioc_try_set_sliced_vbi_cap
,
2351 .vidioc_reqbufs
= vidioc_reqbufs
,
2352 .vidioc_querybuf
= vidioc_querybuf
,
2353 .vidioc_qbuf
= vidioc_qbuf
,
2354 .vidioc_dqbuf
= vidioc_dqbuf
,
2355 .vidioc_g_std
= vidioc_g_std
,
2356 .vidioc_s_std
= vidioc_s_std
,
2357 .vidioc_g_parm
= vidioc_g_parm
,
2358 .vidioc_s_parm
= vidioc_s_parm
,
2359 .vidioc_enum_input
= vidioc_enum_input
,
2360 .vidioc_g_input
= vidioc_g_input
,
2361 .vidioc_s_input
= vidioc_s_input
,
2362 .vidioc_queryctrl
= vidioc_queryctrl
,
2363 .vidioc_g_ctrl
= vidioc_g_ctrl
,
2364 .vidioc_s_ctrl
= vidioc_s_ctrl
,
2365 .vidioc_streamon
= vidioc_streamon
,
2366 .vidioc_streamoff
= vidioc_streamoff
,
2367 .vidioc_g_tuner
= vidioc_g_tuner
,
2368 .vidioc_s_tuner
= vidioc_s_tuner
,
2369 .vidioc_g_frequency
= vidioc_g_frequency
,
2370 .vidioc_s_frequency
= vidioc_s_frequency
,
2371 #ifdef CONFIG_VIDEO_ADV_DEBUG
2372 .vidioc_g_register
= vidioc_g_register
,
2373 .vidioc_s_register
= vidioc_s_register
,
2374 .vidioc_g_chip_ident
= vidioc_g_chip_ident
,
2378 static const struct video_device em28xx_video_template
= {
2379 .fops
= &em28xx_v4l_fops
,
2380 .release
= video_device_release
,
2381 .ioctl_ops
= &video_ioctl_ops
,
2383 .tvnorms
= V4L2_STD_ALL
,
2384 .current_norm
= V4L2_STD_PAL
,
2387 static const struct v4l2_file_operations radio_fops
= {
2388 .owner
= THIS_MODULE
,
2389 .open
= em28xx_v4l2_open
,
2390 .release
= em28xx_v4l2_close
,
2391 .unlocked_ioctl
= video_ioctl2
,
2394 static const struct v4l2_ioctl_ops radio_ioctl_ops
= {
2395 .vidioc_querycap
= radio_querycap
,
2396 .vidioc_g_tuner
= radio_g_tuner
,
2397 .vidioc_enum_input
= radio_enum_input
,
2398 .vidioc_g_audio
= radio_g_audio
,
2399 .vidioc_s_tuner
= radio_s_tuner
,
2400 .vidioc_s_audio
= radio_s_audio
,
2401 .vidioc_s_input
= radio_s_input
,
2402 .vidioc_queryctrl
= radio_queryctrl
,
2403 .vidioc_g_ctrl
= vidioc_g_ctrl
,
2404 .vidioc_s_ctrl
= vidioc_s_ctrl
,
2405 .vidioc_g_frequency
= vidioc_g_frequency
,
2406 .vidioc_s_frequency
= vidioc_s_frequency
,
2407 #ifdef CONFIG_VIDEO_ADV_DEBUG
2408 .vidioc_g_register
= vidioc_g_register
,
2409 .vidioc_s_register
= vidioc_s_register
,
2413 static struct video_device em28xx_radio_template
= {
2414 .name
= "em28xx-radio",
2415 .fops
= &radio_fops
,
2416 .ioctl_ops
= &radio_ioctl_ops
,
2419 /******************************** usb interface ******************************/
2423 static struct video_device
*em28xx_vdev_init(struct em28xx
*dev
,
2424 const struct video_device
*template,
2425 const char *type_name
)
2427 struct video_device
*vfd
;
2429 vfd
= video_device_alloc();
2434 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
2435 vfd
->release
= video_device_release
;
2436 vfd
->debug
= video_debug
;
2437 vfd
->lock
= &dev
->lock
;
2439 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s",
2440 dev
->name
, type_name
);
2442 video_set_drvdata(vfd
, dev
);
2446 int em28xx_register_analog_devices(struct em28xx
*dev
)
2451 printk(KERN_INFO
"%s: v4l2 driver version %s\n",
2452 dev
->name
, EM28XX_VERSION
);
2454 /* set default norm */
2455 dev
->norm
= em28xx_video_template
.current_norm
;
2456 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_std
, dev
->norm
);
2457 dev
->interlaced
= EM28XX_INTERLACED_DEFAULT
;
2460 /* Analog specific initialization */
2461 dev
->format
= &format
[0];
2462 em28xx_set_video_format(dev
, format
[0].fourcc
,
2463 norm_maxw(dev
), norm_maxh(dev
));
2465 video_mux(dev
, dev
->ctl_input
);
2467 /* Audio defaults */
2471 /* em28xx_write_reg(dev, EM28XX_R0E_AUDIOSRC, 0xc0); audio register */
2472 val
= (u8
)em28xx_read_reg(dev
, EM28XX_R0F_XCLK
);
2473 em28xx_write_reg(dev
, EM28XX_R0F_XCLK
,
2474 (EM28XX_XCLK_AUDIO_UNMUTE
| val
));
2476 em28xx_set_outfmt(dev
);
2477 em28xx_colorlevels_set_default(dev
);
2478 em28xx_compression_disable(dev
);
2480 /* allocate and fill video video_device struct */
2481 dev
->vdev
= em28xx_vdev_init(dev
, &em28xx_video_template
, "video");
2483 em28xx_errdev("cannot allocate video_device.\n");
2487 /* register v4l2 video video_device */
2488 ret
= video_register_device(dev
->vdev
, VFL_TYPE_GRABBER
,
2489 video_nr
[dev
->devno
]);
2491 em28xx_errdev("unable to register video device (error=%i).\n",
2496 /* Allocate and fill vbi video_device struct */
2497 if (em28xx_vbi_supported(dev
) == 1) {
2498 dev
->vbi_dev
= em28xx_vdev_init(dev
, &em28xx_video_template
,
2501 /* register v4l2 vbi video_device */
2502 ret
= video_register_device(dev
->vbi_dev
, VFL_TYPE_VBI
,
2503 vbi_nr
[dev
->devno
]);
2505 em28xx_errdev("unable to register vbi device\n");
2510 if (em28xx_boards
[dev
->model
].radio
.type
== EM28XX_RADIO
) {
2511 dev
->radio_dev
= em28xx_vdev_init(dev
, &em28xx_radio_template
,
2513 if (!dev
->radio_dev
) {
2514 em28xx_errdev("cannot allocate video_device.\n");
2517 ret
= video_register_device(dev
->radio_dev
, VFL_TYPE_RADIO
,
2518 radio_nr
[dev
->devno
]);
2520 em28xx_errdev("can't register radio device\n");
2523 em28xx_info("Registered radio device as %s\n",
2524 video_device_node_name(dev
->radio_dev
));
2527 em28xx_info("V4L2 video device registered as %s\n",
2528 video_device_node_name(dev
->vdev
));
2531 em28xx_info("V4L2 VBI device registered as %s\n",
2532 video_device_node_name(dev
->vbi_dev
));