2 #include <linux/vmalloc.h>
3 #include <linux/videodev2.h>
6 #include <linux/sched.h>
7 #include <linux/slab.h>
9 #include <media/v4l2-ioctl.h>
10 #include <media/v4l2-dev.h>
12 #include "pd-common.h"
13 #include "vendorcmds.h"
16 static int pm_video_suspend(struct poseidon
*pd
);
17 static int pm_video_resume(struct poseidon
*pd
);
19 static void iso_bubble_handler(struct work_struct
*w
);
21 static int usb_transfer_mode
;
22 module_param(usb_transfer_mode
, int, 0644);
23 MODULE_PARM_DESC(usb_transfer_mode
, "0 = Bulk, 1 = Isochronous");
25 static const struct poseidon_format poseidon_formats
[] = {
26 { "YUV 422", V4L2_PIX_FMT_YUYV
, 16, 0},
27 { "RGB565", V4L2_PIX_FMT_RGB565
, 16, 0},
30 static const struct poseidon_tvnorm poseidon_tvnorms
[] = {
31 { V4L2_STD_PAL_D
, "PAL-D", TLG_TUNE_VSTD_PAL_D
},
32 { V4L2_STD_PAL_B
, "PAL-B", TLG_TUNE_VSTD_PAL_B
},
33 { V4L2_STD_PAL_G
, "PAL-G", TLG_TUNE_VSTD_PAL_G
},
34 { V4L2_STD_PAL_H
, "PAL-H", TLG_TUNE_VSTD_PAL_H
},
35 { V4L2_STD_PAL_I
, "PAL-I", TLG_TUNE_VSTD_PAL_I
},
36 { V4L2_STD_PAL_M
, "PAL-M", TLG_TUNE_VSTD_PAL_M
},
37 { V4L2_STD_PAL_N
, "PAL-N", TLG_TUNE_VSTD_PAL_N_COMBO
},
38 { V4L2_STD_PAL_Nc
, "PAL-Nc", TLG_TUNE_VSTD_PAL_N_COMBO
},
39 { V4L2_STD_NTSC_M
, "NTSC-M", TLG_TUNE_VSTD_NTSC_M
},
40 { V4L2_STD_NTSC_M_JP
, "NTSC-JP", TLG_TUNE_VSTD_NTSC_M_J
},
41 { V4L2_STD_SECAM_B
, "SECAM-B", TLG_TUNE_VSTD_SECAM_B
},
42 { V4L2_STD_SECAM_D
, "SECAM-D", TLG_TUNE_VSTD_SECAM_D
},
43 { V4L2_STD_SECAM_G
, "SECAM-G", TLG_TUNE_VSTD_SECAM_G
},
44 { V4L2_STD_SECAM_H
, "SECAM-H", TLG_TUNE_VSTD_SECAM_H
},
45 { V4L2_STD_SECAM_K
, "SECAM-K", TLG_TUNE_VSTD_SECAM_K
},
46 { V4L2_STD_SECAM_K1
, "SECAM-K1", TLG_TUNE_VSTD_SECAM_K1
},
47 { V4L2_STD_SECAM_L
, "SECAM-L", TLG_TUNE_VSTD_SECAM_L
},
48 { V4L2_STD_SECAM_LC
, "SECAM-LC", TLG_TUNE_VSTD_SECAM_L1
},
50 static const unsigned int POSEIDON_TVNORMS
= ARRAY_SIZE(poseidon_tvnorms
);
52 struct pd_audio_mode
{
58 static const struct pd_audio_mode pd_audio_modes
[] = {
59 { TLG_TUNE_TVAUDIO_MODE_MONO
, V4L2_TUNER_SUB_MONO
,
60 V4L2_TUNER_MODE_MONO
},
61 { TLG_TUNE_TVAUDIO_MODE_STEREO
, V4L2_TUNER_SUB_STEREO
,
62 V4L2_TUNER_MODE_STEREO
},
63 { TLG_TUNE_TVAUDIO_MODE_LANG_A
, V4L2_TUNER_SUB_LANG1
,
64 V4L2_TUNER_MODE_LANG1
},
65 { TLG_TUNE_TVAUDIO_MODE_LANG_B
, V4L2_TUNER_SUB_LANG2
,
66 V4L2_TUNER_MODE_LANG2
},
67 { TLG_TUNE_TVAUDIO_MODE_LANG_C
, V4L2_TUNER_SUB_LANG1
,
68 V4L2_TUNER_MODE_LANG1_LANG2
}
70 static const unsigned int POSEIDON_AUDIOMODS
= ARRAY_SIZE(pd_audio_modes
);
77 static const struct pd_input pd_inputs
[] = {
78 { "TV Antenna", TLG_SIG_SRC_ANTENNA
},
79 { "TV Cable", TLG_SIG_SRC_CABLE
},
80 { "TV SVideo", TLG_SIG_SRC_SVIDEO
},
81 { "TV Composite", TLG_SIG_SRC_COMPOSITE
}
83 static const unsigned int POSEIDON_INPUTS
= ARRAY_SIZE(pd_inputs
);
85 struct poseidon_control
{
86 struct v4l2_queryctrl v4l2_ctrl
;
87 enum cmd_custom_param_id vc_id
;
90 static struct poseidon_control controls
[] = {
92 { V4L2_CID_BRIGHTNESS
, V4L2_CTRL_TYPE_INTEGER
,
93 "brightness", 0, 10000, 1, 100, 0, },
94 CUST_PARM_ID_BRIGHTNESS_CTRL
96 { V4L2_CID_CONTRAST
, V4L2_CTRL_TYPE_INTEGER
,
97 "contrast", 0, 10000, 1, 100, 0, },
98 CUST_PARM_ID_CONTRAST_CTRL
,
100 { V4L2_CID_HUE
, V4L2_CTRL_TYPE_INTEGER
,
101 "hue", 0, 10000, 1, 100, 0, },
102 CUST_PARM_ID_HUE_CTRL
,
104 { V4L2_CID_SATURATION
, V4L2_CTRL_TYPE_INTEGER
,
105 "saturation", 0, 10000, 1, 100, 0, },
106 CUST_PARM_ID_SATURATION_CTRL
,
110 struct video_std_to_audio_std
{
111 v4l2_std_id video_std
;
115 static const struct video_std_to_audio_std video_to_audio_map
[] = {
116 /* country : { 27, 32, 33, 34, 36, 44, 45, 46, 47, 48, 64,
117 65, 86, 351, 352, 353, 354, 358, 372, 852, 972 } */
118 { (V4L2_STD_PAL_I
| V4L2_STD_PAL_B
| V4L2_STD_PAL_D
|
119 V4L2_STD_SECAM_L
| V4L2_STD_SECAM_D
), TLG_TUNE_ASTD_NICAM
},
121 /* country : { 1, 52, 54, 55, 886 } */
122 {V4L2_STD_NTSC_M
| V4L2_STD_PAL_N
| V4L2_STD_PAL_M
, TLG_TUNE_ASTD_BTSC
},
124 /* country : { 81 } */
125 { V4L2_STD_NTSC_M_JP
, TLG_TUNE_ASTD_EIAJ
},
127 /* other country : TLG_TUNE_ASTD_A2 */
129 static const unsigned int map_size
= ARRAY_SIZE(video_to_audio_map
);
131 static int get_audio_std(v4l2_std_id v4l2_std
)
135 for (; i
< map_size
; i
++) {
136 if (v4l2_std
& video_to_audio_map
[i
].video_std
)
137 return video_to_audio_map
[i
].audio_std
;
139 return TLG_TUNE_ASTD_A2
;
142 static int vidioc_querycap(struct file
*file
, void *fh
,
143 struct v4l2_capability
*cap
)
145 struct front_face
*front
= fh
;
146 struct poseidon
*p
= front
->pd
;
150 strcpy(cap
->driver
, "tele-video");
151 strcpy(cap
->card
, "Telegent Poseidon");
152 usb_make_path(p
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
153 cap
->version
= KERNEL_VERSION(0, 0, 1);
154 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_TUNER
|
155 V4L2_CAP_AUDIO
| V4L2_CAP_STREAMING
|
156 V4L2_CAP_READWRITE
| V4L2_CAP_VBI_CAPTURE
;
160 /*====================================================================*/
161 static void init_copy(struct video_data
*video
, bool index
)
163 struct front_face
*front
= video
->front
;
165 video
->field_count
= index
;
166 video
->lines_copied
= 0;
167 video
->prev_left
= 0 ;
168 video
->dst
= (char *)videobuf_to_vmalloc(front
->curr_frame
)
169 + index
* video
->lines_size
;
170 video
->vbi
->copied
= 0; /* set it here */
173 static bool get_frame(struct front_face
*front
, int *need_init
)
175 struct videobuf_buffer
*vb
= front
->curr_frame
;
180 spin_lock(&front
->queue_lock
);
181 if (!list_empty(&front
->active
)) {
182 vb
= list_entry(front
->active
.next
,
183 struct videobuf_buffer
, queue
);
186 front
->curr_frame
= vb
;
187 list_del_init(&vb
->queue
);
189 spin_unlock(&front
->queue_lock
);
194 /* check if the video's buffer is ready */
195 static bool get_video_frame(struct front_face
*front
, struct video_data
*video
)
200 ret
= get_frame(front
, &need_init
);
201 if (ret
&& need_init
)
206 static void submit_frame(struct front_face
*front
)
208 struct videobuf_buffer
*vb
= front
->curr_frame
;
213 front
->curr_frame
= NULL
;
214 vb
->state
= VIDEOBUF_DONE
;
216 do_gettimeofday(&vb
->ts
);
222 * A frame is composed of two fields. If we receive all the two fields,
223 * call the submit_frame() to submit the whole frame to applications.
225 static void end_field(struct video_data
*video
)
227 /* logs(video->front); */
228 if (1 == video
->field_count
)
229 submit_frame(video
->front
);
234 static void copy_video_data(struct video_data
*video
, char *src
,
237 #define copy_data(len) \
239 if (++video->lines_copied > video->lines_per_field) \
241 memcpy(video->dst, src, len);\
242 video->dst += len + video->lines_size; \
247 while (count
&& count
>= video
->lines_size
) {
248 if (video
->prev_left
) {
249 copy_data(video
->prev_left
);
250 video
->prev_left
= 0;
253 copy_data(video
->lines_size
);
255 if (count
&& count
< video
->lines_size
) {
256 memcpy(video
->dst
, src
, count
);
258 video
->prev_left
= video
->lines_size
- count
;
267 static void check_trailer(struct video_data
*video
, char *src
, int count
)
269 struct vbi_data
*vbi
= video
->vbi
;
270 int offset
; /* trailer's offset */
273 offset
= (video
->context
.pix
.sizeimage
/ 2 + vbi
->vbi_size
/ 2)
274 - (vbi
->copied
+ video
->lines_size
* video
->lines_copied
);
275 if (video
->prev_left
)
276 offset
-= (video
->lines_size
- video
->prev_left
);
278 if (offset
> count
|| offset
<= 0)
283 /* trailer : (VFHS) + U32 + U32 + field_num */
284 if (!strncmp(buf
, "VFHS", 4)) {
285 int field_num
= *((u32
*)(buf
+ 12));
287 if ((field_num
& 1) ^ video
->field_count
) {
288 init_copy(video
, video
->field_count
);
291 copy_video_data(video
, src
, offset
);
297 /* ========== Check this more carefully! =========== */
298 static inline void copy_vbi_data(struct vbi_data
*vbi
,
299 char *src
, unsigned int count
)
301 struct front_face
*front
= vbi
->front
;
303 if (front
&& get_frame(front
, NULL
)) {
304 char *buf
= videobuf_to_vmalloc(front
->curr_frame
);
306 if (vbi
->video
->field_count
)
307 buf
+= (vbi
->vbi_size
/ 2);
308 memcpy(buf
+ vbi
->copied
, src
, count
);
310 vbi
->copied
+= count
;
314 * Copy the normal data (VBI or VIDEO) without the trailer.
315 * VBI is not interlaced, while VIDEO is interlaced.
317 static inline void copy_vbi_video_data(struct video_data
*video
,
318 char *src
, unsigned int count
)
320 struct vbi_data
*vbi
= video
->vbi
;
321 unsigned int vbi_delta
= (vbi
->vbi_size
/ 2) - vbi
->copied
;
323 if (vbi_delta
>= count
) {
324 copy_vbi_data(vbi
, src
, count
);
327 copy_vbi_data(vbi
, src
, vbi_delta
);
329 /* we receive the two fields of the VBI*/
330 if (vbi
->front
&& video
->field_count
)
331 submit_frame(vbi
->front
);
333 copy_video_data(video
, src
+ vbi_delta
, count
- vbi_delta
);
337 static void urb_complete_bulk(struct urb
*urb
)
339 struct front_face
*front
= urb
->context
;
340 struct video_data
*video
= &front
->pd
->video_data
;
341 char *src
= (char *)urb
->transfer_buffer
;
342 int count
= urb
->actual_length
;
345 if (!video
->is_streaming
|| urb
->status
) {
346 if (urb
->status
== -EPROTO
)
350 if (!get_video_frame(front
, video
))
353 if (count
== urb
->transfer_buffer_length
)
354 copy_vbi_video_data(video
, src
, count
);
356 check_trailer(video
, src
, count
);
359 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
361 log(" submit failed: error %d", ret
);
364 /************************* for ISO *********************/
365 #define GET_SUCCESS (0)
366 #define GET_TRAILER (1)
367 #define GET_TOO_MUCH_BUBBLE (2)
369 static int get_chunk(int start
, struct urb
*urb
,
370 int *head
, int *tail
, int *bubble_err
)
372 struct usb_iso_packet_descriptor
*pkt
= NULL
;
373 int ret
= GET_SUCCESS
;
375 for (*head
= *tail
= -1; start
< urb
->number_of_packets
; start
++) {
376 pkt
= &urb
->iso_frame_desc
[start
];
378 /* handle the bubble of the Hub */
379 if (-EOVERFLOW
== pkt
->status
) {
380 if (++*bubble_err
> urb
->number_of_packets
/ 3)
381 return GET_TOO_MUCH_BUBBLE
;
385 /* This is the gap */
386 if (pkt
->status
|| pkt
->actual_length
<= 0
387 || pkt
->actual_length
> ISO_PKT_SIZE
) {
393 /* a good isochronous packet */
394 if (pkt
->actual_length
== ISO_PKT_SIZE
) {
401 /* trailer is here */
402 if (pkt
->actual_length
< ISO_PKT_SIZE
) {
412 if (*head
== -1 && *tail
== -1)
418 * |__|------|___|-----|_______|
423 static void urb_complete_iso(struct urb
*urb
)
425 struct front_face
*front
= urb
->context
;
426 struct video_data
*video
= &front
->pd
->video_data
;
427 int bubble_err
= 0, head
= 0, tail
= 0;
428 char *src
= (char *)urb
->transfer_buffer
;
431 if (!video
->is_streaming
)
435 if (!get_video_frame(front
, video
))
438 switch (get_chunk(head
, urb
, &head
, &tail
, &bubble_err
)) {
440 copy_vbi_video_data(video
, src
+ (head
* ISO_PKT_SIZE
),
441 (tail
- head
+ 1) * ISO_PKT_SIZE
);
444 check_trailer(video
, src
+ (head
* ISO_PKT_SIZE
),
449 case GET_TOO_MUCH_BUBBLE
:
450 log("\t We got too much bubble");
451 schedule_work(&video
->bubble_work
);
454 } while (head
= tail
+ 1, head
< urb
->number_of_packets
);
457 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
459 log("usb_submit_urb err : %d", ret
);
461 /*============================= [ end ] =====================*/
463 static int prepare_iso_urb(struct video_data
*video
)
465 struct usb_device
*udev
= video
->pd
->udev
;
468 if (video
->urb_array
[0])
471 for (i
= 0; i
< SBUF_NUM
; i
++) {
476 urb
= usb_alloc_urb(PK_PER_URB
, GFP_KERNEL
);
480 video
->urb_array
[i
] = urb
;
481 mem
= usb_alloc_coherent(udev
,
482 ISO_PKT_SIZE
* PK_PER_URB
,
486 urb
->complete
= urb_complete_iso
; /* handler */
488 urb
->context
= video
->front
;
489 urb
->pipe
= usb_rcvisocpipe(udev
,
490 video
->endpoint_addr
);
492 urb
->transfer_flags
= URB_ISO_ASAP
| URB_NO_TRANSFER_DMA_MAP
;
493 urb
->number_of_packets
= PK_PER_URB
;
494 urb
->transfer_buffer
= mem
;
495 urb
->transfer_buffer_length
= PK_PER_URB
* ISO_PKT_SIZE
;
497 for (j
= 0; j
< PK_PER_URB
; j
++) {
498 urb
->iso_frame_desc
[j
].offset
= ISO_PKT_SIZE
* j
;
499 urb
->iso_frame_desc
[j
].length
= ISO_PKT_SIZE
;
509 /* return the succeeded number of the allocation */
510 int alloc_bulk_urbs_generic(struct urb
**urb_array
, int num
,
511 struct usb_device
*udev
, u8 ep_addr
,
512 int buf_size
, gfp_t gfp_flags
,
513 usb_complete_t complete_fn
, void *context
)
517 for (; i
< num
; i
++) {
519 struct urb
*urb
= usb_alloc_urb(0, gfp_flags
);
523 mem
= usb_alloc_coherent(udev
, buf_size
, gfp_flags
,
530 usb_fill_bulk_urb(urb
, udev
, usb_rcvbulkpipe(udev
, ep_addr
),
531 mem
, buf_size
, complete_fn
, context
);
532 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
538 void free_all_urb_generic(struct urb
**urb_array
, int num
)
543 for (i
= 0; i
< num
; i
++) {
546 usb_free_coherent(urb
->dev
,
547 urb
->transfer_buffer_length
,
548 urb
->transfer_buffer
,
556 static int prepare_bulk_urb(struct video_data
*video
)
558 if (video
->urb_array
[0])
561 alloc_bulk_urbs_generic(video
->urb_array
, SBUF_NUM
,
562 video
->pd
->udev
, video
->endpoint_addr
,
564 urb_complete_bulk
, video
->front
);
569 static void free_all_urb(struct video_data
*video
)
571 free_all_urb_generic(video
->urb_array
, SBUF_NUM
);
574 static void pd_buf_release(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
576 videobuf_vmalloc_free(vb
);
577 vb
->state
= VIDEOBUF_NEEDS_INIT
;
580 static void pd_buf_queue(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
582 struct front_face
*front
= q
->priv_data
;
583 vb
->state
= VIDEOBUF_QUEUED
;
584 list_add_tail(&vb
->queue
, &front
->active
);
587 static int pd_buf_prepare(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
,
588 enum v4l2_field field
)
590 struct front_face
*front
= q
->priv_data
;
593 switch (front
->type
) {
594 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
595 if (VIDEOBUF_NEEDS_INIT
== vb
->state
) {
596 struct v4l2_pix_format
*pix
;
598 pix
= &front
->pd
->video_data
.context
.pix
;
599 vb
->size
= pix
->sizeimage
; /* real frame size */
600 vb
->width
= pix
->width
;
601 vb
->height
= pix
->height
;
602 rc
= videobuf_iolock(q
, vb
, NULL
);
607 case V4L2_BUF_TYPE_VBI_CAPTURE
:
608 if (VIDEOBUF_NEEDS_INIT
== vb
->state
) {
609 vb
->size
= front
->pd
->vbi_data
.vbi_size
;
610 rc
= videobuf_iolock(q
, vb
, NULL
);
619 vb
->state
= VIDEOBUF_PREPARED
;
623 static int fire_all_urb(struct video_data
*video
)
627 video
->is_streaming
= 1;
629 for (i
= 0; i
< SBUF_NUM
; i
++) {
630 ret
= usb_submit_urb(video
->urb_array
[i
], GFP_KERNEL
);
632 log("(%d) failed: error %d", i
, ret
);
637 static int start_video_stream(struct poseidon
*pd
)
639 struct video_data
*video
= &pd
->video_data
;
642 send_set_req(pd
, TAKE_REQUEST
, 0, &cmd_status
);
643 send_set_req(pd
, PLAY_SERVICE
, TLG_TUNE_PLAY_SVC_START
, &cmd_status
);
645 if (pd
->cur_transfer_mode
) {
646 prepare_iso_urb(video
);
647 INIT_WORK(&video
->bubble_work
, iso_bubble_handler
);
649 /* The bulk mode does not need a bubble handler */
650 prepare_bulk_urb(video
);
656 static int pd_buf_setup(struct videobuf_queue
*q
, unsigned int *count
,
659 struct front_face
*front
= q
->priv_data
;
660 struct poseidon
*pd
= front
->pd
;
662 switch (front
->type
) {
665 case V4L2_BUF_TYPE_VIDEO_CAPTURE
: {
666 struct video_data
*video
= &pd
->video_data
;
667 struct v4l2_pix_format
*pix
= &video
->context
.pix
;
669 *size
= PAGE_ALIGN(pix
->sizeimage
);/* page aligned frame size */
673 /* same in different altersetting */
674 video
->endpoint_addr
= 0x82;
675 video
->vbi
= &pd
->vbi_data
;
676 video
->vbi
->video
= video
;
678 video
->lines_per_field
= pix
->height
/ 2;
679 video
->lines_size
= pix
->width
* 2;
680 video
->front
= front
;
682 return start_video_stream(pd
);
685 case V4L2_BUF_TYPE_VBI_CAPTURE
: {
686 struct vbi_data
*vbi
= &pd
->vbi_data
;
688 *size
= PAGE_ALIGN(vbi
->vbi_size
);
689 log("size : %d", *size
);
698 static struct videobuf_queue_ops pd_video_qops
= {
699 .buf_setup
= pd_buf_setup
,
700 .buf_prepare
= pd_buf_prepare
,
701 .buf_queue
= pd_buf_queue
,
702 .buf_release
= pd_buf_release
,
705 static int vidioc_enum_fmt(struct file
*file
, void *fh
,
706 struct v4l2_fmtdesc
*f
)
708 if (ARRAY_SIZE(poseidon_formats
) <= f
->index
)
710 f
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
712 f
->pixelformat
= poseidon_formats
[f
->index
].fourcc
;
713 strcpy(f
->description
, poseidon_formats
[f
->index
].name
);
717 static int vidioc_g_fmt(struct file
*file
, void *fh
, struct v4l2_format
*f
)
719 struct front_face
*front
= fh
;
720 struct poseidon
*pd
= front
->pd
;
723 f
->fmt
.pix
= pd
->video_data
.context
.pix
;
727 static int vidioc_try_fmt(struct file
*file
, void *fh
,
728 struct v4l2_format
*f
)
734 * VLC calls VIDIOC_S_STD before VIDIOC_S_FMT, while
735 * Mplayer calls them in the reverse order.
737 static int pd_vidioc_s_fmt(struct poseidon
*pd
, struct v4l2_pix_format
*pix
)
739 struct video_data
*video
= &pd
->video_data
;
740 struct running_context
*context
= &video
->context
;
741 struct v4l2_pix_format
*pix_def
= &context
->pix
;
742 s32 ret
= 0, cmd_status
= 0, vid_resol
;
744 /* set the pixel format to firmware */
745 if (pix
->pixelformat
== V4L2_PIX_FMT_RGB565
) {
746 vid_resol
= TLG_TUNER_VID_FORMAT_RGB_565
;
748 pix
->pixelformat
= V4L2_PIX_FMT_YUYV
;
749 vid_resol
= TLG_TUNER_VID_FORMAT_YUV
;
751 ret
= send_set_req(pd
, VIDEO_STREAM_FMT_SEL
,
752 vid_resol
, &cmd_status
);
754 /* set the resolution to firmware */
755 vid_resol
= TLG_TUNE_VID_RES_720
;
756 switch (pix
->width
) {
758 vid_resol
= TLG_TUNE_VID_RES_704
;
765 ret
|= send_set_req(pd
, VIDEO_ROSOLU_SEL
,
766 vid_resol
, &cmd_status
);
767 if (ret
|| cmd_status
)
770 pix_def
->pixelformat
= pix
->pixelformat
; /* save it */
771 pix
->height
= (context
->tvnormid
& V4L2_STD_525_60
) ? 480 : 576;
773 /* Compare with the default setting */
774 if ((pix_def
->width
!= pix
->width
)
775 || (pix_def
->height
!= pix
->height
)) {
776 pix_def
->width
= pix
->width
;
777 pix_def
->height
= pix
->height
;
778 pix_def
->bytesperline
= pix
->width
* 2;
779 pix_def
->sizeimage
= pix
->width
* pix
->height
* 2;
786 static int vidioc_s_fmt(struct file
*file
, void *fh
, struct v4l2_format
*f
)
788 struct front_face
*front
= fh
;
789 struct poseidon
*pd
= front
->pd
;
793 if (V4L2_BUF_TYPE_VIDEO_CAPTURE
!= f
->type
)
796 mutex_lock(&pd
->lock
);
797 if (pd
->file_for_stream
== NULL
)
798 pd
->file_for_stream
= file
;
799 else if (file
!= pd
->file_for_stream
) {
800 mutex_unlock(&pd
->lock
);
804 pd_vidioc_s_fmt(pd
, &f
->fmt
.pix
);
805 mutex_unlock(&pd
->lock
);
809 static int vidioc_g_fmt_vbi(struct file
*file
, void *fh
,
810 struct v4l2_format
*v4l2_f
)
812 struct front_face
*front
= fh
;
813 struct poseidon
*pd
= front
->pd
;
814 struct v4l2_vbi_format
*vbi_fmt
= &v4l2_f
->fmt
.vbi
;
816 vbi_fmt
->samples_per_line
= 720 * 2;
817 vbi_fmt
->sampling_rate
= 6750000 * 4;
818 vbi_fmt
->sample_format
= V4L2_PIX_FMT_GREY
;
819 vbi_fmt
->offset
= 64 * 4; /*FIXME: why offset */
820 if (pd
->video_data
.context
.tvnormid
& V4L2_STD_525_60
) {
821 vbi_fmt
->start
[0] = 10;
822 vbi_fmt
->start
[1] = 264;
823 vbi_fmt
->count
[0] = V4L_NTSC_VBI_LINES
;
824 vbi_fmt
->count
[1] = V4L_NTSC_VBI_LINES
;
826 vbi_fmt
->start
[0] = 6;
827 vbi_fmt
->start
[1] = 314;
828 vbi_fmt
->count
[0] = V4L_PAL_VBI_LINES
;
829 vbi_fmt
->count
[1] = V4L_PAL_VBI_LINES
;
831 vbi_fmt
->flags
= V4L2_VBI_UNSYNC
;
836 static int set_std(struct poseidon
*pd
, v4l2_std_id
*norm
)
838 struct video_data
*video
= &pd
->video_data
;
839 struct vbi_data
*vbi
= &pd
->vbi_data
;
840 struct running_context
*context
;
841 struct v4l2_pix_format
*pix
;
842 s32 i
, ret
= 0, cmd_status
, param
;
845 for (i
= 0; i
< POSEIDON_TVNORMS
; i
++) {
846 if (*norm
& poseidon_tvnorms
[i
].v4l2_id
) {
847 param
= poseidon_tvnorms
[i
].tlg_tvnorm
;
848 log("name : %s", poseidon_tvnorms
[i
].name
);
854 mutex_lock(&pd
->lock
);
855 ret
= send_set_req(pd
, VIDEO_STD_SEL
, param
, &cmd_status
);
856 if (ret
|| cmd_status
)
859 /* Set vbi size and check the height of the frame */
860 context
= &video
->context
;
861 context
->tvnormid
= poseidon_tvnorms
[i
].v4l2_id
;
862 if (context
->tvnormid
& V4L2_STD_525_60
) {
863 vbi
->vbi_size
= V4L_NTSC_VBI_FRAMESIZE
;
866 vbi
->vbi_size
= V4L_PAL_VBI_FRAMESIZE
;
871 if (pix
->height
!= height
) {
872 pix
->height
= height
;
873 pix
->sizeimage
= pix
->width
* pix
->height
* 2;
877 mutex_unlock(&pd
->lock
);
881 static int vidioc_s_std(struct file
*file
, void *fh
, v4l2_std_id
*norm
)
883 struct front_face
*front
= fh
;
885 return set_std(front
->pd
, norm
);
888 static int vidioc_enum_input(struct file
*file
, void *fh
, struct v4l2_input
*in
)
890 struct front_face
*front
= fh
;
892 if (in
->index
< 0 || in
->index
>= POSEIDON_INPUTS
)
894 strcpy(in
->name
, pd_inputs
[in
->index
].name
);
895 in
->type
= V4L2_INPUT_TYPE_TUNER
;
898 * the audio input index mixed with this video input,
899 * Poseidon only have one audio/video, set to "0"
903 in
->std
= V4L2_STD_ALL
;
909 static int vidioc_g_input(struct file
*file
, void *fh
, unsigned int *i
)
911 struct front_face
*front
= fh
;
912 struct poseidon
*pd
= front
->pd
;
913 struct running_context
*context
= &pd
->video_data
.context
;
916 *i
= context
->sig_index
;
920 /* We can support several inputs */
921 static int vidioc_s_input(struct file
*file
, void *fh
, unsigned int i
)
923 struct front_face
*front
= fh
;
924 struct poseidon
*pd
= front
->pd
;
927 if (i
< 0 || i
>= POSEIDON_INPUTS
)
929 ret
= send_set_req(pd
, SGNL_SRC_SEL
,
930 pd_inputs
[i
].tlg_src
, &cmd_status
);
934 pd
->video_data
.context
.sig_index
= i
;
938 static struct poseidon_control
*check_control_id(__u32 id
)
940 struct poseidon_control
*control
= &controls
[0];
941 int array_size
= ARRAY_SIZE(controls
);
943 for (; control
< &controls
[array_size
]; control
++)
944 if (control
->v4l2_ctrl
.id
== id
)
949 static int vidioc_queryctrl(struct file
*file
, void *fh
,
950 struct v4l2_queryctrl
*a
)
952 struct poseidon_control
*control
= NULL
;
954 control
= check_control_id(a
->id
);
958 *a
= control
->v4l2_ctrl
;
962 static int vidioc_g_ctrl(struct file
*file
, void *fh
, struct v4l2_control
*ctrl
)
964 struct front_face
*front
= fh
;
965 struct poseidon
*pd
= front
->pd
;
966 struct poseidon_control
*control
= NULL
;
967 struct tuner_custom_parameter_s tuner_param
;
968 s32 ret
= 0, cmd_status
;
970 control
= check_control_id(ctrl
->id
);
974 mutex_lock(&pd
->lock
);
975 ret
= send_get_req(pd
, TUNER_CUSTOM_PARAMETER
, control
->vc_id
,
976 &tuner_param
, &cmd_status
, sizeof(tuner_param
));
977 mutex_unlock(&pd
->lock
);
979 if (ret
|| cmd_status
)
982 ctrl
->value
= tuner_param
.param_value
;
986 static int vidioc_s_ctrl(struct file
*file
, void *fh
, struct v4l2_control
*a
)
988 struct tuner_custom_parameter_s param
= {0};
989 struct poseidon_control
*control
= NULL
;
990 struct front_face
*front
= fh
;
991 struct poseidon
*pd
= front
->pd
;
992 s32 ret
= 0, cmd_status
, params
;
994 control
= check_control_id(a
->id
);
998 param
.param_value
= a
->value
;
999 param
.param_id
= control
->vc_id
;
1000 params
= *(s32
*)¶m
; /* temp code */
1002 mutex_lock(&pd
->lock
);
1003 ret
= send_set_req(pd
, TUNER_CUSTOM_PARAMETER
, params
, &cmd_status
);
1004 ret
= send_set_req(pd
, TAKE_REQUEST
, 0, &cmd_status
);
1005 mutex_unlock(&pd
->lock
);
1007 set_current_state(TASK_INTERRUPTIBLE
);
1008 schedule_timeout(HZ
/4);
1013 static int vidioc_enumaudio(struct file
*file
, void *fh
, struct v4l2_audio
*a
)
1017 a
->capability
= V4L2_AUDCAP_STEREO
;
1018 strcpy(a
->name
, "USB audio in");
1019 /*Poseidon have no AVL function.*/
1024 static int vidioc_g_audio(struct file
*file
, void *fh
, struct v4l2_audio
*a
)
1027 a
->capability
= V4L2_AUDCAP_STEREO
;
1028 strcpy(a
->name
, "USB audio in");
1033 static int vidioc_s_audio(struct file
*file
, void *fh
, struct v4l2_audio
*a
)
1035 return (0 == a
->index
) ? 0 : -EINVAL
;
1039 static int vidioc_g_tuner(struct file
*file
, void *fh
, struct v4l2_tuner
*tuner
)
1041 struct front_face
*front
= fh
;
1042 struct poseidon
*pd
= front
->pd
;
1043 struct tuner_atv_sig_stat_s atv_stat
;
1044 s32 count
= 5, ret
, cmd_status
;
1047 if (0 != tuner
->index
)
1050 mutex_lock(&pd
->lock
);
1051 ret
= send_get_req(pd
, TUNER_STATUS
, TLG_MODE_ANALOG_TV
,
1052 &atv_stat
, &cmd_status
, sizeof(atv_stat
));
1054 while (atv_stat
.sig_lock_busy
&& count
-- && !ret
) {
1055 set_current_state(TASK_INTERRUPTIBLE
);
1056 schedule_timeout(HZ
);
1058 ret
= send_get_req(pd
, TUNER_STATUS
, TLG_MODE_ANALOG_TV
,
1059 &atv_stat
, &cmd_status
, sizeof(atv_stat
));
1061 mutex_unlock(&pd
->lock
);
1064 log("P:%d,S:%d", atv_stat
.sig_present
, atv_stat
.sig_strength
);
1066 if (ret
|| cmd_status
)
1068 else if (atv_stat
.sig_present
&& !atv_stat
.sig_strength
)
1069 tuner
->signal
= 0xFFFF;
1071 tuner
->signal
= (atv_stat
.sig_strength
* 255 / 10) << 8;
1073 strcpy(tuner
->name
, "Telegent Systems");
1074 tuner
->type
= V4L2_TUNER_ANALOG_TV
;
1075 tuner
->rangelow
= TUNER_FREQ_MIN
/ 62500;
1076 tuner
->rangehigh
= TUNER_FREQ_MAX
/ 62500;
1077 tuner
->capability
= V4L2_TUNER_CAP_NORM
| V4L2_TUNER_CAP_STEREO
|
1078 V4L2_TUNER_CAP_LANG1
| V4L2_TUNER_CAP_LANG2
;
1079 index
= pd
->video_data
.context
.audio_idx
;
1080 tuner
->rxsubchans
= pd_audio_modes
[index
].v4l2_audio_sub
;
1081 tuner
->audmode
= pd_audio_modes
[index
].v4l2_audio_mode
;
1087 static int pd_vidioc_s_tuner(struct poseidon
*pd
, int index
)
1089 s32 ret
= 0, cmd_status
, param
, audiomode
;
1091 mutex_lock(&pd
->lock
);
1092 param
= pd_audio_modes
[index
].tlg_audio_mode
;
1093 ret
= send_set_req(pd
, TUNER_AUD_MODE
, param
, &cmd_status
);
1094 audiomode
= get_audio_std(pd
->video_data
.context
.tvnormid
);
1095 ret
|= send_set_req(pd
, TUNER_AUD_ANA_STD
, audiomode
,
1098 pd
->video_data
.context
.audio_idx
= index
;
1099 mutex_unlock(&pd
->lock
);
1103 static int vidioc_s_tuner(struct file
*file
, void *fh
, struct v4l2_tuner
*a
)
1105 struct front_face
*front
= fh
;
1106 struct poseidon
*pd
= front
->pd
;
1112 for (index
= 0; index
< POSEIDON_AUDIOMODS
; index
++)
1113 if (a
->audmode
== pd_audio_modes
[index
].v4l2_audio_mode
)
1114 return pd_vidioc_s_tuner(pd
, index
);
1118 static int vidioc_g_frequency(struct file
*file
, void *fh
,
1119 struct v4l2_frequency
*freq
)
1121 struct front_face
*front
= fh
;
1122 struct poseidon
*pd
= front
->pd
;
1123 struct running_context
*context
= &pd
->video_data
.context
;
1125 if (0 != freq
->tuner
)
1127 freq
->frequency
= context
->freq
;
1128 freq
->type
= V4L2_TUNER_ANALOG_TV
;
1132 static int set_frequency(struct poseidon
*pd
, __u32 frequency
)
1134 s32 ret
= 0, param
, cmd_status
;
1135 struct running_context
*context
= &pd
->video_data
.context
;
1137 param
= frequency
* 62500 / 1000;
1138 if (param
< TUNER_FREQ_MIN
/1000 || param
> TUNER_FREQ_MAX
/ 1000)
1141 mutex_lock(&pd
->lock
);
1142 ret
= send_set_req(pd
, TUNE_FREQ_SELECT
, param
, &cmd_status
);
1143 ret
= send_set_req(pd
, TAKE_REQUEST
, 0, &cmd_status
);
1145 msleep(250); /* wait for a while until the hardware is ready. */
1146 context
->freq
= frequency
;
1147 mutex_unlock(&pd
->lock
);
1151 static int vidioc_s_frequency(struct file
*file
, void *fh
,
1152 struct v4l2_frequency
*freq
)
1154 struct front_face
*front
= fh
;
1155 struct poseidon
*pd
= front
->pd
;
1159 pd
->pm_suspend
= pm_video_suspend
;
1160 pd
->pm_resume
= pm_video_resume
;
1162 return set_frequency(pd
, freq
->frequency
);
1165 static int vidioc_reqbufs(struct file
*file
, void *fh
,
1166 struct v4l2_requestbuffers
*b
)
1168 struct front_face
*front
= file
->private_data
;
1170 return videobuf_reqbufs(&front
->q
, b
);
1173 static int vidioc_querybuf(struct file
*file
, void *fh
, struct v4l2_buffer
*b
)
1175 struct front_face
*front
= file
->private_data
;
1177 return videobuf_querybuf(&front
->q
, b
);
1180 static int vidioc_qbuf(struct file
*file
, void *fh
, struct v4l2_buffer
*b
)
1182 struct front_face
*front
= file
->private_data
;
1183 return videobuf_qbuf(&front
->q
, b
);
1186 static int vidioc_dqbuf(struct file
*file
, void *fh
, struct v4l2_buffer
*b
)
1188 struct front_face
*front
= file
->private_data
;
1189 return videobuf_dqbuf(&front
->q
, b
, file
->f_flags
& O_NONBLOCK
);
1192 /* Just stop the URBs, do not free the URBs */
1193 static int usb_transfer_stop(struct video_data
*video
)
1195 if (video
->is_streaming
) {
1198 struct poseidon
*pd
= video
->pd
;
1200 video
->is_streaming
= 0;
1201 for (i
= 0; i
< SBUF_NUM
; ++i
) {
1202 if (video
->urb_array
[i
])
1203 usb_kill_urb(video
->urb_array
[i
]);
1206 send_set_req(pd
, PLAY_SERVICE
, TLG_TUNE_PLAY_SVC_STOP
,
1212 int stop_all_video_stream(struct poseidon
*pd
)
1214 struct video_data
*video
= &pd
->video_data
;
1215 struct vbi_data
*vbi
= &pd
->vbi_data
;
1217 mutex_lock(&pd
->lock
);
1218 if (video
->is_streaming
) {
1219 struct front_face
*front
= video
->front
;
1222 usb_transfer_stop(video
);
1223 free_all_urb(video
);
1225 /* stop the host side of VIDEO */
1226 videobuf_stop(&front
->q
);
1227 videobuf_mmap_free(&front
->q
);
1229 /* stop the host side of VBI */
1232 videobuf_stop(&front
->q
);
1233 videobuf_mmap_free(&front
->q
);
1236 mutex_unlock(&pd
->lock
);
1241 * The bubbles can seriously damage the video's quality,
1242 * though it occurs in very rare situation.
1244 static void iso_bubble_handler(struct work_struct
*w
)
1246 struct video_data
*video
;
1247 struct poseidon
*pd
;
1249 video
= container_of(w
, struct video_data
, bubble_work
);
1252 mutex_lock(&pd
->lock
);
1253 usb_transfer_stop(video
);
1255 start_video_stream(pd
);
1256 mutex_unlock(&pd
->lock
);
1260 static int vidioc_streamon(struct file
*file
, void *fh
,
1261 enum v4l2_buf_type type
)
1263 struct front_face
*front
= fh
;
1266 if (unlikely(type
!= front
->type
))
1268 return videobuf_streamon(&front
->q
);
1271 static int vidioc_streamoff(struct file
*file
, void *fh
,
1272 enum v4l2_buf_type type
)
1274 struct front_face
*front
= file
->private_data
;
1277 if (unlikely(type
!= front
->type
))
1279 return videobuf_streamoff(&front
->q
);
1282 /* Set the firmware's default values : need altersetting */
1283 static int pd_video_checkmode(struct poseidon
*pd
)
1285 s32 ret
= 0, cmd_status
, audiomode
;
1287 set_current_state(TASK_INTERRUPTIBLE
);
1288 schedule_timeout(HZ
/2);
1290 /* choose the altersetting */
1291 ret
= usb_set_interface(pd
->udev
, 0,
1292 (pd
->cur_transfer_mode
?
1293 ISO_3K_BULK_ALTERNATE_IFACE
:
1294 BULK_ALTERNATE_IFACE
));
1298 /* set default parameters for PAL-D , with the VBI enabled*/
1299 ret
= set_tuner_mode(pd
, TLG_MODE_ANALOG_TV
);
1300 ret
|= send_set_req(pd
, SGNL_SRC_SEL
,
1301 TLG_SIG_SRC_ANTENNA
, &cmd_status
);
1302 ret
|= send_set_req(pd
, VIDEO_STD_SEL
,
1303 TLG_TUNE_VSTD_PAL_D
, &cmd_status
);
1304 ret
|= send_set_req(pd
, VIDEO_STREAM_FMT_SEL
,
1305 TLG_TUNER_VID_FORMAT_YUV
, &cmd_status
);
1306 ret
|= send_set_req(pd
, VIDEO_ROSOLU_SEL
,
1307 TLG_TUNE_VID_RES_720
, &cmd_status
);
1308 ret
|= send_set_req(pd
, TUNE_FREQ_SELECT
, TUNER_FREQ_MIN
, &cmd_status
);
1309 ret
|= send_set_req(pd
, VBI_DATA_SEL
, 1, &cmd_status
);/* enable vbi */
1312 audiomode
= get_audio_std(pd
->video_data
.context
.tvnormid
);
1313 ret
|= send_set_req(pd
, TUNER_AUD_ANA_STD
, audiomode
, &cmd_status
);
1314 ret
|= send_set_req(pd
, TUNER_AUD_MODE
,
1315 TLG_TUNE_TVAUDIO_MODE_STEREO
, &cmd_status
);
1316 ret
|= send_set_req(pd
, AUDIO_SAMPLE_RATE_SEL
,
1317 ATV_AUDIO_RATE_48K
, &cmd_status
);
1323 static int pm_video_suspend(struct poseidon
*pd
)
1326 pm_alsa_suspend(pd
);
1328 /* stop and free all the URBs */
1329 usb_transfer_stop(&pd
->video_data
);
1330 free_all_urb(&pd
->video_data
);
1332 /* reset the interface */
1333 usb_set_interface(pd
->udev
, 0, 0);
1338 static int restore_v4l2_context(struct poseidon
*pd
,
1339 struct running_context
*context
)
1341 struct front_face
*front
= pd
->video_data
.front
;
1343 pd_video_checkmode(pd
);
1345 set_std(pd
, &context
->tvnormid
);
1346 vidioc_s_input(NULL
, front
, context
->sig_index
);
1347 pd_vidioc_s_tuner(pd
, context
->audio_idx
);
1348 pd_vidioc_s_fmt(pd
, &context
->pix
);
1349 set_frequency(pd
, context
->freq
);
1353 static int pm_video_resume(struct poseidon
*pd
)
1355 struct video_data
*video
= &pd
->video_data
;
1357 /* resume the video */
1358 /* [1] restore the origin V4L2 parameters */
1359 restore_v4l2_context(pd
, &video
->context
);
1361 /* [2] initiate video copy variables */
1362 if (video
->front
->curr_frame
)
1363 init_copy(video
, 0);
1366 start_video_stream(pd
);
1368 /* resume the audio */
1374 void set_debug_mode(struct video_device
*vfd
, int debug_mode
)
1377 if (debug_mode
& 0x1)
1378 vfd
->debug
= V4L2_DEBUG_IOCTL
;
1379 if (debug_mode
& 0x2)
1380 vfd
->debug
= V4L2_DEBUG_IOCTL
| V4L2_DEBUG_IOCTL_ARG
;
1383 static void init_video_context(struct running_context
*context
)
1385 context
->sig_index
= 0;
1386 context
->audio_idx
= 1; /* stereo */
1387 context
->tvnormid
= V4L2_STD_PAL_D
;
1388 context
->pix
= (struct v4l2_pix_format
) {
1391 .pixelformat
= V4L2_PIX_FMT_YUYV
,
1392 .field
= V4L2_FIELD_INTERLACED
,
1393 .bytesperline
= 720 * 2,
1394 .sizeimage
= 720 * 576 * 2,
1395 .colorspace
= V4L2_COLORSPACE_SMPTE170M
,
1400 static int pd_video_open(struct file
*file
)
1402 struct video_device
*vfd
= video_devdata(file
);
1403 struct poseidon
*pd
= video_get_drvdata(vfd
);
1404 struct front_face
*front
= NULL
;
1407 mutex_lock(&pd
->lock
);
1408 usb_autopm_get_interface(pd
->interface
);
1410 if (vfd
->vfl_type
== VFL_TYPE_GRABBER
1411 && !(pd
->state
& POSEIDON_STATE_ANALOG
)) {
1412 front
= kzalloc(sizeof(struct front_face
), GFP_KERNEL
);
1416 pd
->cur_transfer_mode
= usb_transfer_mode
;/* bulk or iso */
1417 init_video_context(&pd
->video_data
.context
);
1419 ret
= pd_video_checkmode(pd
);
1426 pd
->state
|= POSEIDON_STATE_ANALOG
;
1427 front
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1428 pd
->video_data
.users
++;
1429 set_debug_mode(vfd
, debug_mode
);
1431 videobuf_queue_vmalloc_init(&front
->q
, &pd_video_qops
,
1432 NULL
, &front
->queue_lock
,
1433 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
1434 V4L2_FIELD_INTERLACED
,/* video is interlacd */
1435 sizeof(struct videobuf_buffer
),/*it's enough*/
1437 } else if (vfd
->vfl_type
== VFL_TYPE_VBI
1438 && !(pd
->state
& POSEIDON_STATE_VBI
)) {
1439 front
= kzalloc(sizeof(struct front_face
), GFP_KERNEL
);
1443 pd
->state
|= POSEIDON_STATE_VBI
;
1444 front
->type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
1445 pd
->vbi_data
.front
= front
;
1446 pd
->vbi_data
.users
++;
1448 videobuf_queue_vmalloc_init(&front
->q
, &pd_video_qops
,
1449 NULL
, &front
->queue_lock
,
1450 V4L2_BUF_TYPE_VBI_CAPTURE
,
1451 V4L2_FIELD_NONE
, /* vbi is NONE mode */
1452 sizeof(struct videobuf_buffer
),
1455 /* maybe add FM support here */
1462 front
->curr_frame
= NULL
;
1463 INIT_LIST_HEAD(&front
->active
);
1464 spin_lock_init(&front
->queue_lock
);
1466 file
->private_data
= front
;
1467 kref_get(&pd
->kref
);
1469 mutex_unlock(&pd
->lock
);
1472 usb_autopm_put_interface(pd
->interface
);
1473 mutex_unlock(&pd
->lock
);
1477 static int pd_video_release(struct file
*file
)
1479 struct front_face
*front
= file
->private_data
;
1480 struct poseidon
*pd
= front
->pd
;
1484 mutex_lock(&pd
->lock
);
1486 if (front
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1487 pd
->state
&= ~POSEIDON_STATE_ANALOG
;
1489 /* stop the device, and free the URBs */
1490 usb_transfer_stop(&pd
->video_data
);
1491 free_all_urb(&pd
->video_data
);
1493 /* stop the firmware */
1494 send_set_req(pd
, PLAY_SERVICE
, TLG_TUNE_PLAY_SVC_STOP
,
1497 pd
->file_for_stream
= NULL
;
1498 pd
->video_data
.users
--;
1499 } else if (front
->type
== V4L2_BUF_TYPE_VBI_CAPTURE
) {
1500 pd
->state
&= ~POSEIDON_STATE_VBI
;
1501 pd
->vbi_data
.front
= NULL
;
1502 pd
->vbi_data
.users
--;
1504 videobuf_stop(&front
->q
);
1505 videobuf_mmap_free(&front
->q
);
1507 usb_autopm_put_interface(pd
->interface
);
1508 mutex_unlock(&pd
->lock
);
1511 file
->private_data
= NULL
;
1512 kref_put(&pd
->kref
, poseidon_delete
);
1516 static int pd_video_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1518 struct front_face
*front
= file
->private_data
;
1519 return videobuf_mmap_mapper(&front
->q
, vma
);
1522 static unsigned int pd_video_poll(struct file
*file
, poll_table
*table
)
1524 struct front_face
*front
= file
->private_data
;
1525 return videobuf_poll_stream(file
, &front
->q
, table
);
1528 static ssize_t
pd_video_read(struct file
*file
, char __user
*buffer
,
1529 size_t count
, loff_t
*ppos
)
1531 struct front_face
*front
= file
->private_data
;
1532 return videobuf_read_stream(&front
->q
, buffer
, count
, ppos
,
1533 0, file
->f_flags
& O_NONBLOCK
);
1536 /* This struct works for both VIDEO and VBI */
1537 static const struct v4l2_file_operations pd_video_fops
= {
1538 .owner
= THIS_MODULE
,
1539 .open
= pd_video_open
,
1540 .release
= pd_video_release
,
1541 .read
= pd_video_read
,
1542 .poll
= pd_video_poll
,
1543 .mmap
= pd_video_mmap
,
1544 .ioctl
= video_ioctl2
, /* maybe changed in future */
1547 static const struct v4l2_ioctl_ops pd_video_ioctl_ops
= {
1548 .vidioc_querycap
= vidioc_querycap
,
1551 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt
,
1552 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt
,
1553 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt
,
1554 .vidioc_g_fmt_vbi_cap
= vidioc_g_fmt_vbi
, /* VBI */
1555 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt
,
1558 .vidioc_g_input
= vidioc_g_input
,
1559 .vidioc_s_input
= vidioc_s_input
,
1560 .vidioc_enum_input
= vidioc_enum_input
,
1563 .vidioc_enumaudio
= vidioc_enumaudio
,
1564 .vidioc_g_audio
= vidioc_g_audio
,
1565 .vidioc_s_audio
= vidioc_s_audio
,
1568 .vidioc_g_tuner
= vidioc_g_tuner
,
1569 .vidioc_s_tuner
= vidioc_s_tuner
,
1570 .vidioc_s_std
= vidioc_s_std
,
1571 .vidioc_g_frequency
= vidioc_g_frequency
,
1572 .vidioc_s_frequency
= vidioc_s_frequency
,
1574 /* Buffer handlers */
1575 .vidioc_reqbufs
= vidioc_reqbufs
,
1576 .vidioc_querybuf
= vidioc_querybuf
,
1577 .vidioc_qbuf
= vidioc_qbuf
,
1578 .vidioc_dqbuf
= vidioc_dqbuf
,
1581 .vidioc_streamon
= vidioc_streamon
,
1582 .vidioc_streamoff
= vidioc_streamoff
,
1584 /* Control handling */
1585 .vidioc_queryctrl
= vidioc_queryctrl
,
1586 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1587 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1590 static struct video_device pd_video_template
= {
1591 .name
= "Telegent-Video",
1592 .fops
= &pd_video_fops
,
1594 .release
= video_device_release
,
1595 .tvnorms
= V4L2_STD_ALL
,
1596 .ioctl_ops
= &pd_video_ioctl_ops
,
1599 struct video_device
*vdev_init(struct poseidon
*pd
, struct video_device
*tmp
)
1601 struct video_device
*vfd
;
1603 vfd
= video_device_alloc();
1608 vfd
->v4l2_dev
= &pd
->v4l2_dev
;
1609 /*vfd->parent = &(pd->udev->dev); */
1610 vfd
->release
= video_device_release
;
1611 video_set_drvdata(vfd
, pd
);
1615 void destroy_video_device(struct video_device
**v_dev
)
1617 struct video_device
*dev
= *v_dev
;
1622 if (video_is_registered(dev
))
1623 video_unregister_device(dev
);
1625 video_device_release(dev
);
1629 void pd_video_exit(struct poseidon
*pd
)
1631 struct video_data
*video
= &pd
->video_data
;
1632 struct vbi_data
*vbi
= &pd
->vbi_data
;
1634 destroy_video_device(&video
->v_dev
);
1635 destroy_video_device(&vbi
->v_dev
);
1639 int pd_video_init(struct poseidon
*pd
)
1641 struct video_data
*video
= &pd
->video_data
;
1642 struct vbi_data
*vbi
= &pd
->vbi_data
;
1645 video
->v_dev
= vdev_init(pd
, &pd_video_template
);
1646 if (video
->v_dev
== NULL
)
1649 ret
= video_register_device(video
->v_dev
, VFL_TYPE_GRABBER
, -1);
1653 /* VBI uses the same template as video */
1654 vbi
->v_dev
= vdev_init(pd
, &pd_video_template
);
1655 if (vbi
->v_dev
== NULL
) {
1659 ret
= video_register_device(vbi
->v_dev
, VFL_TYPE_VBI
, -1);
1662 log("register VIDEO/VBI devices");
1665 log("VIDEO/VBI devices register failed, : %d", ret
);