3 Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
4 Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "ivtv-driver.h"
22 #include "ivtv-version.h"
23 #include "ivtv-mailbox.h"
25 #include "ivtv-queue.h"
26 #include "ivtv-fileops.h"
28 #include "ivtv-routing.h"
29 #include "ivtv-streams.h"
31 #include "ivtv-ioctl.h"
32 #include "ivtv-gpio.h"
33 #include "ivtv-controls.h"
34 #include "ivtv-cards.h"
35 #include <media/i2c/saa7127.h>
36 #include <media/tveeprom.h>
37 #include <media/v4l2-event.h>
38 #include <linux/dvb/audio.h>
40 u16
ivtv_service2vbi(int type
)
43 case V4L2_SLICED_TELETEXT_B
:
44 return IVTV_SLICED_TYPE_TELETEXT_B
;
45 case V4L2_SLICED_CAPTION_525
:
46 return IVTV_SLICED_TYPE_CAPTION_525
;
47 case V4L2_SLICED_WSS_625
:
48 return IVTV_SLICED_TYPE_WSS_625
;
50 return IVTV_SLICED_TYPE_VPS
;
56 static int valid_service_line(int field
, int line
, int is_pal
)
58 return (is_pal
&& line
>= 6 && (line
!= 23 || field
== 0)) ||
59 (!is_pal
&& line
>= 10 && line
< 22);
62 static u16
select_service_from_set(int field
, int line
, u16 set
, int is_pal
)
64 u16 valid_set
= (is_pal
? V4L2_SLICED_VBI_625
: V4L2_SLICED_VBI_525
);
67 set
= set
& valid_set
;
68 if (set
== 0 || !valid_service_line(field
, line
, is_pal
)) {
72 if (line
== 21 && (set
& V4L2_SLICED_CAPTION_525
))
73 return V4L2_SLICED_CAPTION_525
;
76 if (line
== 16 && field
== 0 && (set
& V4L2_SLICED_VPS
))
77 return V4L2_SLICED_VPS
;
78 if (line
== 23 && field
== 0 && (set
& V4L2_SLICED_WSS_625
))
79 return V4L2_SLICED_WSS_625
;
83 for (i
= 0; i
< 32; i
++) {
90 void ivtv_expand_service_set(struct v4l2_sliced_vbi_format
*fmt
, int is_pal
)
92 u16 set
= fmt
->service_set
;
96 for (f
= 0; f
< 2; f
++) {
97 for (l
= 0; l
< 24; l
++) {
98 fmt
->service_lines
[f
][l
] = select_service_from_set(f
, l
, set
, is_pal
);
103 static void check_service_set(struct v4l2_sliced_vbi_format
*fmt
, int is_pal
)
107 for (f
= 0; f
< 2; f
++) {
108 for (l
= 0; l
< 24; l
++) {
109 fmt
->service_lines
[f
][l
] = select_service_from_set(f
, l
, fmt
->service_lines
[f
][l
], is_pal
);
114 u16
ivtv_get_service_set(struct v4l2_sliced_vbi_format
*fmt
)
119 for (f
= 0; f
< 2; f
++) {
120 for (l
= 0; l
< 24; l
++) {
121 set
|= fmt
->service_lines
[f
][l
];
127 void ivtv_set_osd_alpha(struct ivtv
*itv
)
129 ivtv_vapi(itv
, CX2341X_OSD_SET_GLOBAL_ALPHA
, 3,
130 itv
->osd_global_alpha_state
, itv
->osd_global_alpha
, !itv
->osd_local_alpha_state
);
131 ivtv_vapi(itv
, CX2341X_OSD_SET_CHROMA_KEY
, 2, itv
->osd_chroma_key_state
, itv
->osd_chroma_key
);
134 int ivtv_set_speed(struct ivtv
*itv
, int speed
)
136 u32 data
[CX2341X_MBOX_MAX_DATA
];
137 int single_step
= (speed
== 1 || speed
== -1);
140 if (speed
== 0) speed
= 1000;
143 if (speed
== itv
->speed
&& !single_step
)
146 if (single_step
&& (speed
< 0) == (itv
->speed
< 0)) {
147 /* Single step video and no need to change direction */
148 ivtv_vapi(itv
, CX2341X_DEC_STEP_VIDEO
, 1, 0);
153 /* Need to change direction */
154 speed
= speed
< 0 ? -1000 : 1000;
156 data
[0] = (speed
> 1000 || speed
< -1000) ? 0x80000000 : 0;
157 data
[0] |= (speed
> 1000 || speed
< -1500) ? 0x40000000 : 0;
158 data
[1] = (speed
< 0);
159 data
[2] = speed
< 0 ? 3 : 7;
160 data
[3] = v4l2_ctrl_g_ctrl(itv
->cxhdl
.video_b_frames
);
161 data
[4] = (speed
== 1500 || speed
== 500) ? itv
->speed_mute_audio
: 0;
165 if (speed
== 1500 || speed
== -1500) data
[0] |= 1;
166 else if (speed
== 2000 || speed
== -2000) data
[0] |= 2;
167 else if (speed
> -1000 && speed
< 0) data
[0] |= (-1000 / speed
);
168 else if (speed
< 1000 && speed
> 0) data
[0] |= (1000 / speed
);
170 /* If not decoding, just change speed setting */
171 if (atomic_read(&itv
->decoding
) > 0) {
174 /* Stop all DMA and decoding activity */
175 ivtv_vapi(itv
, CX2341X_DEC_PAUSE_PLAYBACK
, 1, 0);
177 /* Wait for any DMA to finish */
178 mutex_unlock(&itv
->serialize_lock
);
179 prepare_to_wait(&itv
->dma_waitq
, &wait
, TASK_INTERRUPTIBLE
);
180 while (test_bit(IVTV_F_I_DMA
, &itv
->i_flags
)) {
181 got_sig
= signal_pending(current
);
187 finish_wait(&itv
->dma_waitq
, &wait
);
188 mutex_lock(&itv
->serialize_lock
);
192 /* Change Speed safely */
193 ivtv_api(itv
, CX2341X_DEC_SET_PLAYBACK_SPEED
, 7, data
);
194 IVTV_DEBUG_INFO("Setting Speed to 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
195 data
[0], data
[1], data
[2], data
[3], data
[4], data
[5], data
[6]);
198 speed
= (speed
< 0) ? -1 : 1;
199 ivtv_vapi(itv
, CX2341X_DEC_STEP_VIDEO
, 1, 0);
205 static int ivtv_validate_speed(int cur_speed
, int new_speed
)
207 int fact
= new_speed
< 0 ? -1 : 1;
213 new_speed
= -new_speed
;
215 cur_speed
= -cur_speed
;
217 if (cur_speed
<= new_speed
) {
218 if (new_speed
> 1500)
220 if (new_speed
> 1000)
224 if (new_speed
>= 2000)
226 if (new_speed
>= 1500)
228 if (new_speed
>= 1000)
233 if (new_speed
== 1 || new_speed
== 1000)
234 return fact
* new_speed
;
237 new_speed
= 1000 / new_speed
;
238 if (1000 / cur_speed
== new_speed
)
239 new_speed
+= (cur_speed
< s
) ? -1 : 1;
240 if (new_speed
> 60) return 1000 / (fact
* 60);
241 return 1000 / (fact
* new_speed
);
244 static int ivtv_video_command(struct ivtv
*itv
, struct ivtv_open_id
*id
,
245 struct v4l2_decoder_cmd
*dc
, int try)
247 struct ivtv_stream
*s
= &itv
->streams
[IVTV_DEC_STREAM_TYPE_MPG
];
249 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
253 case V4L2_DEC_CMD_START
: {
254 dc
->flags
&= V4L2_DEC_CMD_START_MUTE_AUDIO
;
255 dc
->start
.speed
= ivtv_validate_speed(itv
->speed
, dc
->start
.speed
);
256 if (dc
->start
.speed
< 0)
257 dc
->start
.format
= V4L2_DEC_START_FMT_GOP
;
259 dc
->start
.format
= V4L2_DEC_START_FMT_NONE
;
260 if (dc
->start
.speed
!= 500 && dc
->start
.speed
!= 1500)
261 dc
->flags
= dc
->start
.speed
== 1000 ? 0 :
262 V4L2_DEC_CMD_START_MUTE_AUDIO
;
265 itv
->speed_mute_audio
= dc
->flags
& V4L2_DEC_CMD_START_MUTE_AUDIO
;
266 if (ivtv_set_output_mode(itv
, OUT_MPG
) != OUT_MPG
)
268 if (test_and_clear_bit(IVTV_F_I_DEC_PAUSED
, &itv
->i_flags
)) {
269 /* forces ivtv_set_speed to be called */
272 return ivtv_start_decoding(id
, dc
->start
.speed
);
275 case V4L2_DEC_CMD_STOP
:
276 dc
->flags
&= V4L2_DEC_CMD_STOP_IMMEDIATELY
| V4L2_DEC_CMD_STOP_TO_BLACK
;
277 if (dc
->flags
& V4L2_DEC_CMD_STOP_IMMEDIATELY
)
280 if (atomic_read(&itv
->decoding
) == 0)
282 if (itv
->output_mode
!= OUT_MPG
)
285 itv
->output_mode
= OUT_NONE
;
286 return ivtv_stop_v4l2_decode_stream(s
, dc
->flags
, dc
->stop
.pts
);
288 case V4L2_DEC_CMD_PAUSE
:
289 dc
->flags
&= V4L2_DEC_CMD_PAUSE_TO_BLACK
;
291 if (!atomic_read(&itv
->decoding
))
293 if (itv
->output_mode
!= OUT_MPG
)
295 if (atomic_read(&itv
->decoding
) > 0) {
296 ivtv_vapi(itv
, CX2341X_DEC_PAUSE_PLAYBACK
, 1,
297 (dc
->flags
& V4L2_DEC_CMD_PAUSE_TO_BLACK
) ? 1 : 0);
298 set_bit(IVTV_F_I_DEC_PAUSED
, &itv
->i_flags
);
302 case V4L2_DEC_CMD_RESUME
:
305 if (!atomic_read(&itv
->decoding
))
307 if (itv
->output_mode
!= OUT_MPG
)
309 if (test_and_clear_bit(IVTV_F_I_DEC_PAUSED
, &itv
->i_flags
)) {
310 int speed
= itv
->speed
;
312 return ivtv_start_decoding(id
, speed
);
322 static int ivtv_g_fmt_sliced_vbi_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
324 struct ivtv
*itv
= fh2id(fh
)->itv
;
325 struct v4l2_sliced_vbi_format
*vbifmt
= &fmt
->fmt
.sliced
;
327 vbifmt
->reserved
[0] = 0;
328 vbifmt
->reserved
[1] = 0;
329 if (!(itv
->v4l2_cap
& V4L2_CAP_SLICED_VBI_OUTPUT
))
331 vbifmt
->io_size
= sizeof(struct v4l2_sliced_vbi_data
) * 36;
332 memset(vbifmt
->service_lines
, 0, sizeof(vbifmt
->service_lines
));
334 vbifmt
->service_lines
[0][21] = V4L2_SLICED_CAPTION_525
;
335 vbifmt
->service_lines
[1][21] = V4L2_SLICED_CAPTION_525
;
337 vbifmt
->service_lines
[0][23] = V4L2_SLICED_WSS_625
;
338 vbifmt
->service_lines
[0][16] = V4L2_SLICED_VPS
;
340 vbifmt
->service_set
= ivtv_get_service_set(vbifmt
);
344 static int ivtv_g_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
346 struct ivtv_open_id
*id
= fh2id(fh
);
347 struct ivtv
*itv
= id
->itv
;
348 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
350 pixfmt
->width
= itv
->cxhdl
.width
;
351 pixfmt
->height
= itv
->cxhdl
.height
;
352 pixfmt
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
353 pixfmt
->field
= V4L2_FIELD_INTERLACED
;
354 if (id
->type
== IVTV_ENC_STREAM_TYPE_YUV
) {
355 pixfmt
->pixelformat
= V4L2_PIX_FMT_HM12
;
356 /* YUV size is (Y=(h*720) + UV=(h*(720/2))) */
357 pixfmt
->sizeimage
= pixfmt
->height
* 720 * 3 / 2;
358 pixfmt
->bytesperline
= 720;
360 pixfmt
->pixelformat
= V4L2_PIX_FMT_MPEG
;
361 pixfmt
->sizeimage
= 128 * 1024;
362 pixfmt
->bytesperline
= 0;
367 static int ivtv_g_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
369 struct ivtv
*itv
= fh2id(fh
)->itv
;
370 struct v4l2_vbi_format
*vbifmt
= &fmt
->fmt
.vbi
;
372 vbifmt
->sampling_rate
= 27000000;
373 vbifmt
->offset
= 248;
374 vbifmt
->samples_per_line
= itv
->vbi
.raw_decoder_line_size
- 4;
375 vbifmt
->sample_format
= V4L2_PIX_FMT_GREY
;
376 vbifmt
->start
[0] = itv
->vbi
.start
[0];
377 vbifmt
->start
[1] = itv
->vbi
.start
[1];
378 vbifmt
->count
[0] = vbifmt
->count
[1] = itv
->vbi
.count
;
380 vbifmt
->reserved
[0] = 0;
381 vbifmt
->reserved
[1] = 0;
385 static int ivtv_g_fmt_sliced_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
387 struct v4l2_sliced_vbi_format
*vbifmt
= &fmt
->fmt
.sliced
;
388 struct ivtv_open_id
*id
= fh2id(fh
);
389 struct ivtv
*itv
= id
->itv
;
391 vbifmt
->reserved
[0] = 0;
392 vbifmt
->reserved
[1] = 0;
393 vbifmt
->io_size
= sizeof(struct v4l2_sliced_vbi_data
) * 36;
395 if (id
->type
== IVTV_DEC_STREAM_TYPE_VBI
) {
396 vbifmt
->service_set
= itv
->is_50hz
? V4L2_SLICED_VBI_625
:
398 ivtv_expand_service_set(vbifmt
, itv
->is_50hz
);
399 vbifmt
->service_set
= ivtv_get_service_set(vbifmt
);
403 v4l2_subdev_call(itv
->sd_video
, vbi
, g_sliced_fmt
, vbifmt
);
404 vbifmt
->service_set
= ivtv_get_service_set(vbifmt
);
408 static int ivtv_g_fmt_vid_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
410 struct ivtv_open_id
*id
= fh2id(fh
);
411 struct ivtv
*itv
= id
->itv
;
412 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
414 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
416 pixfmt
->width
= itv
->main_rect
.width
;
417 pixfmt
->height
= itv
->main_rect
.height
;
418 pixfmt
->colorspace
= V4L2_COLORSPACE_SMPTE170M
;
419 pixfmt
->field
= V4L2_FIELD_INTERLACED
;
420 if (id
->type
== IVTV_DEC_STREAM_TYPE_YUV
) {
421 switch (itv
->yuv_info
.lace_mode
& IVTV_YUV_MODE_MASK
) {
422 case IVTV_YUV_MODE_INTERLACED
:
423 pixfmt
->field
= (itv
->yuv_info
.lace_mode
& IVTV_YUV_SYNC_MASK
) ?
424 V4L2_FIELD_INTERLACED_BT
: V4L2_FIELD_INTERLACED_TB
;
426 case IVTV_YUV_MODE_PROGRESSIVE
:
427 pixfmt
->field
= V4L2_FIELD_NONE
;
430 pixfmt
->field
= V4L2_FIELD_ANY
;
433 pixfmt
->pixelformat
= V4L2_PIX_FMT_HM12
;
434 pixfmt
->bytesperline
= 720;
435 pixfmt
->width
= itv
->yuv_info
.v4l2_src_w
;
436 pixfmt
->height
= itv
->yuv_info
.v4l2_src_h
;
437 /* YUV size is (Y=(h*w) + UV=(h*(w/2))) */
439 1080 * ((pixfmt
->height
+ 31) & ~31);
441 pixfmt
->pixelformat
= V4L2_PIX_FMT_MPEG
;
442 pixfmt
->sizeimage
= 128 * 1024;
443 pixfmt
->bytesperline
= 0;
448 static int ivtv_g_fmt_vid_out_overlay(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
450 struct ivtv
*itv
= fh2id(fh
)->itv
;
451 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
452 struct v4l2_window
*winfmt
= &fmt
->fmt
.win
;
454 if (!(s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
))
456 if (!itv
->osd_video_pbase
)
458 winfmt
->chromakey
= itv
->osd_chroma_key
;
459 winfmt
->global_alpha
= itv
->osd_global_alpha
;
460 winfmt
->field
= V4L2_FIELD_INTERLACED
;
461 winfmt
->clips
= NULL
;
462 winfmt
->clipcount
= 0;
463 winfmt
->bitmap
= NULL
;
464 winfmt
->w
.top
= winfmt
->w
.left
= 0;
465 winfmt
->w
.width
= itv
->osd_rect
.width
;
466 winfmt
->w
.height
= itv
->osd_rect
.height
;
470 static int ivtv_try_fmt_sliced_vbi_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
472 return ivtv_g_fmt_sliced_vbi_out(file
, fh
, fmt
);
475 static int ivtv_try_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
477 struct ivtv_open_id
*id
= fh2id(fh
);
478 struct ivtv
*itv
= id
->itv
;
479 int w
= fmt
->fmt
.pix
.width
;
480 int h
= fmt
->fmt
.pix
.height
;
485 if (id
->type
== IVTV_ENC_STREAM_TYPE_YUV
) {
486 /* YUV height must be a multiple of 32 */
490 h
= min(h
, itv
->is_50hz
? 576 : 480);
492 ivtv_g_fmt_vid_cap(file
, fh
, fmt
);
493 fmt
->fmt
.pix
.width
= w
;
494 fmt
->fmt
.pix
.height
= h
;
498 static int ivtv_try_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
500 return ivtv_g_fmt_vbi_cap(file
, fh
, fmt
);
503 static int ivtv_try_fmt_sliced_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
505 struct v4l2_sliced_vbi_format
*vbifmt
= &fmt
->fmt
.sliced
;
506 struct ivtv_open_id
*id
= fh2id(fh
);
507 struct ivtv
*itv
= id
->itv
;
509 if (id
->type
== IVTV_DEC_STREAM_TYPE_VBI
)
510 return ivtv_g_fmt_sliced_vbi_cap(file
, fh
, fmt
);
512 /* set sliced VBI capture format */
513 vbifmt
->io_size
= sizeof(struct v4l2_sliced_vbi_data
) * 36;
514 vbifmt
->reserved
[0] = 0;
515 vbifmt
->reserved
[1] = 0;
517 if (vbifmt
->service_set
)
518 ivtv_expand_service_set(vbifmt
, itv
->is_50hz
);
519 check_service_set(vbifmt
, itv
->is_50hz
);
520 vbifmt
->service_set
= ivtv_get_service_set(vbifmt
);
524 static int ivtv_try_fmt_vid_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
526 struct ivtv_open_id
*id
= fh2id(fh
);
527 s32 w
= fmt
->fmt
.pix
.width
;
528 s32 h
= fmt
->fmt
.pix
.height
;
529 int field
= fmt
->fmt
.pix
.field
;
530 int ret
= ivtv_g_fmt_vid_out(file
, fh
, fmt
);
534 /* Why can the height be 576 even when the output is NTSC?
536 Internally the buffers of the PVR350 are always set to 720x576. The
537 decoded video frame will always be placed in the top left corner of
538 this buffer. For any video which is not 720x576, the buffer will
539 then be cropped to remove the unused right and lower areas, with
540 the remaining image being scaled by the hardware to fit the display
541 area. The video can be scaled both up and down, so a 720x480 video
542 can be displayed full-screen on PAL and a 720x576 video can be
543 displayed without cropping on NTSC.
545 Note that the scaling only occurs on the video stream, the osd
546 resolution is locked to the broadcast standard and not scaled.
548 Thanks to Ian Armstrong for this explanation. */
551 if (id
->type
== IVTV_DEC_STREAM_TYPE_YUV
)
552 fmt
->fmt
.pix
.field
= field
;
553 fmt
->fmt
.pix
.width
= w
;
554 fmt
->fmt
.pix
.height
= h
;
558 static int ivtv_try_fmt_vid_out_overlay(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
560 struct ivtv
*itv
= fh2id(fh
)->itv
;
561 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
562 u32 chromakey
= fmt
->fmt
.win
.chromakey
;
563 u8 global_alpha
= fmt
->fmt
.win
.global_alpha
;
565 if (!(s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
))
567 if (!itv
->osd_video_pbase
)
569 ivtv_g_fmt_vid_out_overlay(file
, fh
, fmt
);
570 fmt
->fmt
.win
.chromakey
= chromakey
;
571 fmt
->fmt
.win
.global_alpha
= global_alpha
;
575 static int ivtv_s_fmt_sliced_vbi_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
577 return ivtv_g_fmt_sliced_vbi_out(file
, fh
, fmt
);
580 static int ivtv_s_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
582 struct ivtv_open_id
*id
= fh2id(fh
);
583 struct ivtv
*itv
= id
->itv
;
584 struct v4l2_subdev_format format
= {
585 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
587 int ret
= ivtv_try_fmt_vid_cap(file
, fh
, fmt
);
588 int w
= fmt
->fmt
.pix
.width
;
589 int h
= fmt
->fmt
.pix
.height
;
594 if (itv
->cxhdl
.width
== w
&& itv
->cxhdl
.height
== h
)
597 if (atomic_read(&itv
->capturing
) > 0)
600 itv
->cxhdl
.width
= w
;
601 itv
->cxhdl
.height
= h
;
602 if (v4l2_ctrl_g_ctrl(itv
->cxhdl
.video_encoding
) == V4L2_MPEG_VIDEO_ENCODING_MPEG_1
)
603 fmt
->fmt
.pix
.width
/= 2;
604 format
.format
.width
= fmt
->fmt
.pix
.width
;
605 format
.format
.height
= h
;
606 format
.format
.code
= MEDIA_BUS_FMT_FIXED
;
607 v4l2_subdev_call(itv
->sd_video
, pad
, set_fmt
, NULL
, &format
);
608 return ivtv_g_fmt_vid_cap(file
, fh
, fmt
);
611 static int ivtv_s_fmt_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
613 struct ivtv
*itv
= fh2id(fh
)->itv
;
615 if (!ivtv_raw_vbi(itv
) && atomic_read(&itv
->capturing
) > 0)
617 itv
->vbi
.sliced_in
->service_set
= 0;
618 itv
->vbi
.in
.type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
619 v4l2_subdev_call(itv
->sd_video
, vbi
, s_raw_fmt
, &fmt
->fmt
.vbi
);
620 return ivtv_g_fmt_vbi_cap(file
, fh
, fmt
);
623 static int ivtv_s_fmt_sliced_vbi_cap(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
625 struct v4l2_sliced_vbi_format
*vbifmt
= &fmt
->fmt
.sliced
;
626 struct ivtv_open_id
*id
= fh2id(fh
);
627 struct ivtv
*itv
= id
->itv
;
628 int ret
= ivtv_try_fmt_sliced_vbi_cap(file
, fh
, fmt
);
630 if (ret
|| id
->type
== IVTV_DEC_STREAM_TYPE_VBI
)
633 check_service_set(vbifmt
, itv
->is_50hz
);
634 if (ivtv_raw_vbi(itv
) && atomic_read(&itv
->capturing
) > 0)
636 itv
->vbi
.in
.type
= V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
;
637 v4l2_subdev_call(itv
->sd_video
, vbi
, s_sliced_fmt
, vbifmt
);
638 memcpy(itv
->vbi
.sliced_in
, vbifmt
, sizeof(*itv
->vbi
.sliced_in
));
642 static int ivtv_s_fmt_vid_out(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
644 struct ivtv_open_id
*id
= fh2id(fh
);
645 struct ivtv
*itv
= id
->itv
;
646 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
647 int ret
= ivtv_try_fmt_vid_out(file
, fh
, fmt
);
652 if (id
->type
!= IVTV_DEC_STREAM_TYPE_YUV
)
655 /* Return now if we already have some frame data */
659 yi
->v4l2_src_w
= fmt
->fmt
.pix
.width
;
660 yi
->v4l2_src_h
= fmt
->fmt
.pix
.height
;
662 switch (fmt
->fmt
.pix
.field
) {
663 case V4L2_FIELD_NONE
:
664 yi
->lace_mode
= IVTV_YUV_MODE_PROGRESSIVE
;
667 yi
->lace_mode
= IVTV_YUV_MODE_AUTO
;
669 case V4L2_FIELD_INTERLACED_BT
:
671 IVTV_YUV_MODE_INTERLACED
|IVTV_YUV_SYNC_ODD
;
673 case V4L2_FIELD_INTERLACED_TB
:
675 yi
->lace_mode
= IVTV_YUV_MODE_INTERLACED
;
678 yi
->lace_sync_field
= (yi
->lace_mode
& IVTV_YUV_SYNC_MASK
) == IVTV_YUV_SYNC_EVEN
? 0 : 1;
680 if (test_bit(IVTV_F_I_DEC_YUV
, &itv
->i_flags
))
681 itv
->dma_data_req_size
=
682 1080 * ((yi
->v4l2_src_h
+ 31) & ~31);
687 static int ivtv_s_fmt_vid_out_overlay(struct file
*file
, void *fh
, struct v4l2_format
*fmt
)
689 struct ivtv
*itv
= fh2id(fh
)->itv
;
690 int ret
= ivtv_try_fmt_vid_out_overlay(file
, fh
, fmt
);
693 itv
->osd_chroma_key
= fmt
->fmt
.win
.chromakey
;
694 itv
->osd_global_alpha
= fmt
->fmt
.win
.global_alpha
;
695 ivtv_set_osd_alpha(itv
);
700 #ifdef CONFIG_VIDEO_ADV_DEBUG
701 static int ivtv_itvc(struct ivtv
*itv
, bool get
, u64 reg
, u64
*val
)
703 volatile u8 __iomem
*reg_start
;
707 if (reg
>= IVTV_REG_OFFSET
&& reg
< IVTV_REG_OFFSET
+ IVTV_REG_SIZE
)
708 reg_start
= itv
->reg_mem
- IVTV_REG_OFFSET
;
709 else if (itv
->has_cx23415
&& reg
>= IVTV_DECODER_OFFSET
&&
710 reg
< IVTV_DECODER_OFFSET
+ IVTV_DECODER_SIZE
)
711 reg_start
= itv
->dec_mem
- IVTV_DECODER_OFFSET
;
712 else if (reg
< IVTV_ENCODER_SIZE
)
713 reg_start
= itv
->enc_mem
;
718 *val
= readl(reg
+ reg_start
);
720 writel(*val
, reg
+ reg_start
);
724 static int ivtv_g_register(struct file
*file
, void *fh
, struct v4l2_dbg_register
*reg
)
726 struct ivtv
*itv
= fh2id(fh
)->itv
;
729 return ivtv_itvc(itv
, true, reg
->reg
, ®
->val
);
732 static int ivtv_s_register(struct file
*file
, void *fh
, const struct v4l2_dbg_register
*reg
)
734 struct ivtv
*itv
= fh2id(fh
)->itv
;
737 return ivtv_itvc(itv
, false, reg
->reg
, &val
);
741 static int ivtv_querycap(struct file
*file
, void *fh
, struct v4l2_capability
*vcap
)
743 struct ivtv_open_id
*id
= fh2id(file
->private_data
);
744 struct ivtv
*itv
= id
->itv
;
745 struct ivtv_stream
*s
= &itv
->streams
[id
->type
];
747 strlcpy(vcap
->driver
, IVTV_DRIVER_NAME
, sizeof(vcap
->driver
));
748 strlcpy(vcap
->card
, itv
->card_name
, sizeof(vcap
->card
));
749 snprintf(vcap
->bus_info
, sizeof(vcap
->bus_info
), "PCI:%s", pci_name(itv
->pdev
));
750 vcap
->capabilities
= itv
->v4l2_cap
| V4L2_CAP_DEVICE_CAPS
;
751 vcap
->device_caps
= s
->caps
;
752 if ((s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
) &&
753 !itv
->osd_video_pbase
) {
754 vcap
->capabilities
&= ~V4L2_CAP_VIDEO_OUTPUT_OVERLAY
;
755 vcap
->device_caps
&= ~V4L2_CAP_VIDEO_OUTPUT_OVERLAY
;
760 static int ivtv_enumaudio(struct file
*file
, void *fh
, struct v4l2_audio
*vin
)
762 struct ivtv
*itv
= fh2id(fh
)->itv
;
764 return ivtv_get_audio_input(itv
, vin
->index
, vin
);
767 static int ivtv_g_audio(struct file
*file
, void *fh
, struct v4l2_audio
*vin
)
769 struct ivtv
*itv
= fh2id(fh
)->itv
;
771 vin
->index
= itv
->audio_input
;
772 return ivtv_get_audio_input(itv
, vin
->index
, vin
);
775 static int ivtv_s_audio(struct file
*file
, void *fh
, const struct v4l2_audio
*vout
)
777 struct ivtv
*itv
= fh2id(fh
)->itv
;
779 if (vout
->index
>= itv
->nof_audio_inputs
)
782 itv
->audio_input
= vout
->index
;
783 ivtv_audio_set_io(itv
);
788 static int ivtv_enumaudout(struct file
*file
, void *fh
, struct v4l2_audioout
*vin
)
790 struct ivtv
*itv
= fh2id(fh
)->itv
;
792 /* set it to defaults from our table */
793 return ivtv_get_audio_output(itv
, vin
->index
, vin
);
796 static int ivtv_g_audout(struct file
*file
, void *fh
, struct v4l2_audioout
*vin
)
798 struct ivtv
*itv
= fh2id(fh
)->itv
;
801 return ivtv_get_audio_output(itv
, vin
->index
, vin
);
804 static int ivtv_s_audout(struct file
*file
, void *fh
, const struct v4l2_audioout
*vout
)
806 struct ivtv
*itv
= fh2id(fh
)->itv
;
808 if (itv
->card
->video_outputs
== NULL
|| vout
->index
!= 0)
813 static int ivtv_enum_input(struct file
*file
, void *fh
, struct v4l2_input
*vin
)
815 struct ivtv
*itv
= fh2id(fh
)->itv
;
817 /* set it to defaults from our table */
818 return ivtv_get_input(itv
, vin
->index
, vin
);
821 static int ivtv_enum_output(struct file
*file
, void *fh
, struct v4l2_output
*vout
)
823 struct ivtv
*itv
= fh2id(fh
)->itv
;
825 return ivtv_get_output(itv
, vout
->index
, vout
);
828 static int ivtv_cropcap(struct file
*file
, void *fh
, struct v4l2_cropcap
*cropcap
)
830 struct ivtv_open_id
*id
= fh2id(fh
);
831 struct ivtv
*itv
= id
->itv
;
833 if (cropcap
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
834 cropcap
->pixelaspect
.numerator
= itv
->is_50hz
? 54 : 11;
835 cropcap
->pixelaspect
.denominator
= itv
->is_50hz
? 59 : 10;
836 } else if (cropcap
->type
== V4L2_BUF_TYPE_VIDEO_OUTPUT
) {
837 cropcap
->pixelaspect
.numerator
= itv
->is_out_50hz
? 54 : 11;
838 cropcap
->pixelaspect
.denominator
= itv
->is_out_50hz
? 59 : 10;
845 static int ivtv_s_selection(struct file
*file
, void *fh
,
846 struct v4l2_selection
*sel
)
848 struct ivtv_open_id
*id
= fh2id(fh
);
849 struct ivtv
*itv
= id
->itv
;
850 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
851 struct v4l2_rect r
= { 0, 0, 720, 0 };
852 int streamtype
= id
->type
;
854 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
||
855 !(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
858 if (sel
->target
!= V4L2_SEL_TGT_COMPOSE
)
862 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
||
863 !(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
866 r
.height
= itv
->is_out_50hz
? 576 : 480;
867 if (streamtype
== IVTV_DEC_STREAM_TYPE_YUV
&& yi
->track_osd
) {
868 r
.width
= yi
->osd_full_w
;
869 r
.height
= yi
->osd_full_h
;
871 sel
->r
.width
= clamp(sel
->r
.width
, 16U, r
.width
);
872 sel
->r
.height
= clamp(sel
->r
.height
, 16U, r
.height
);
873 sel
->r
.left
= clamp_t(unsigned, sel
->r
.left
, 0, r
.width
- sel
->r
.width
);
874 sel
->r
.top
= clamp_t(unsigned, sel
->r
.top
, 0, r
.height
- sel
->r
.height
);
876 if (streamtype
== IVTV_DEC_STREAM_TYPE_YUV
) {
877 yi
->main_rect
= sel
->r
;
880 if (!ivtv_vapi(itv
, CX2341X_OSD_SET_FRAMEBUFFER_WINDOW
, 4,
881 sel
->r
.width
, sel
->r
.height
, sel
->r
.left
, sel
->r
.top
)) {
882 itv
->main_rect
= sel
->r
;
888 static int ivtv_g_selection(struct file
*file
, void *fh
,
889 struct v4l2_selection
*sel
)
891 struct ivtv_open_id
*id
= fh2id(fh
);
892 struct ivtv
*itv
= id
->itv
;
893 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
894 struct v4l2_rect r
= { 0, 0, 720, 0 };
895 int streamtype
= id
->type
;
897 if (sel
->type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
898 switch (sel
->target
) {
899 case V4L2_SEL_TGT_CROP_DEFAULT
:
900 case V4L2_SEL_TGT_CROP_BOUNDS
:
901 sel
->r
.top
= sel
->r
.left
= 0;
903 sel
->r
.height
= itv
->is_50hz
? 576 : 480;
910 if (sel
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
||
911 !(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
914 switch (sel
->target
) {
915 case V4L2_SEL_TGT_COMPOSE
:
916 if (streamtype
== IVTV_DEC_STREAM_TYPE_YUV
)
917 sel
->r
= yi
->main_rect
;
919 sel
->r
= itv
->main_rect
;
921 case V4L2_SEL_TGT_COMPOSE_DEFAULT
:
922 case V4L2_SEL_TGT_COMPOSE_BOUNDS
:
923 r
.height
= itv
->is_out_50hz
? 576 : 480;
924 if (streamtype
== IVTV_DEC_STREAM_TYPE_YUV
&& yi
->track_osd
) {
925 r
.width
= yi
->osd_full_w
;
926 r
.height
= yi
->osd_full_h
;
934 static int ivtv_enum_fmt_vid_cap(struct file
*file
, void *fh
, struct v4l2_fmtdesc
*fmt
)
936 static const struct v4l2_fmtdesc hm12
= {
937 0, V4L2_BUF_TYPE_VIDEO_CAPTURE
, 0,
938 "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12
,
941 static const struct v4l2_fmtdesc mpeg
= {
942 0, V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FMT_FLAG_COMPRESSED
,
943 "MPEG", V4L2_PIX_FMT_MPEG
,
946 struct ivtv
*itv
= fh2id(fh
)->itv
;
947 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
951 if (s
->type
== IVTV_ENC_STREAM_TYPE_MPG
)
953 else if (s
->type
== IVTV_ENC_STREAM_TYPE_YUV
)
960 static int ivtv_enum_fmt_vid_out(struct file
*file
, void *fh
, struct v4l2_fmtdesc
*fmt
)
962 static const struct v4l2_fmtdesc hm12
= {
963 0, V4L2_BUF_TYPE_VIDEO_OUTPUT
, 0,
964 "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12
,
967 static const struct v4l2_fmtdesc mpeg
= {
968 0, V4L2_BUF_TYPE_VIDEO_OUTPUT
, V4L2_FMT_FLAG_COMPRESSED
,
969 "MPEG", V4L2_PIX_FMT_MPEG
,
972 struct ivtv
*itv
= fh2id(fh
)->itv
;
973 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
977 if (s
->type
== IVTV_DEC_STREAM_TYPE_MPG
)
979 else if (s
->type
== IVTV_DEC_STREAM_TYPE_YUV
)
986 static int ivtv_g_input(struct file
*file
, void *fh
, unsigned int *i
)
988 struct ivtv
*itv
= fh2id(fh
)->itv
;
990 *i
= itv
->active_input
;
995 int ivtv_s_input(struct file
*file
, void *fh
, unsigned int inp
)
997 struct ivtv
*itv
= fh2id(fh
)->itv
;
1001 if (inp
>= itv
->nof_inputs
)
1004 if (inp
== itv
->active_input
) {
1005 IVTV_DEBUG_INFO("Input unchanged\n");
1009 if (atomic_read(&itv
->capturing
) > 0) {
1013 IVTV_DEBUG_INFO("Changing input from %d to %d\n",
1014 itv
->active_input
, inp
);
1016 itv
->active_input
= inp
;
1017 /* Set the audio input to whatever is appropriate for the
1019 itv
->audio_input
= itv
->card
->video_inputs
[inp
].audio_index
;
1021 if (itv
->card
->video_inputs
[inp
].video_type
== IVTV_CARD_INPUT_VID_TUNER
)
1022 std
= itv
->tuner_std
;
1025 for (i
= 0; i
<= IVTV_ENC_STREAM_TYPE_VBI
; i
++)
1026 itv
->streams
[i
].vdev
.tvnorms
= std
;
1028 /* prevent others from messing with the streams until
1029 we're finished changing inputs. */
1031 ivtv_video_set_io(itv
);
1032 ivtv_audio_set_io(itv
);
1038 static int ivtv_g_output(struct file
*file
, void *fh
, unsigned int *i
)
1040 struct ivtv
*itv
= fh2id(fh
)->itv
;
1042 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1045 *i
= itv
->active_output
;
1050 static int ivtv_s_output(struct file
*file
, void *fh
, unsigned int outp
)
1052 struct ivtv
*itv
= fh2id(fh
)->itv
;
1054 if (outp
>= itv
->card
->nof_outputs
)
1057 if (outp
== itv
->active_output
) {
1058 IVTV_DEBUG_INFO("Output unchanged\n");
1061 IVTV_DEBUG_INFO("Changing output from %d to %d\n",
1062 itv
->active_output
, outp
);
1064 itv
->active_output
= outp
;
1065 ivtv_call_hw(itv
, IVTV_HW_SAA7127
, video
, s_routing
,
1066 SAA7127_INPUT_TYPE_NORMAL
,
1067 itv
->card
->video_outputs
[outp
].video_output
, 0);
1072 static int ivtv_g_frequency(struct file
*file
, void *fh
, struct v4l2_frequency
*vf
)
1074 struct ivtv
*itv
= fh2id(fh
)->itv
;
1075 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
1077 if (s
->vdev
.vfl_dir
)
1082 ivtv_call_all(itv
, tuner
, g_frequency
, vf
);
1086 int ivtv_s_frequency(struct file
*file
, void *fh
, const struct v4l2_frequency
*vf
)
1088 struct ivtv
*itv
= fh2id(fh
)->itv
;
1089 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
1091 if (s
->vdev
.vfl_dir
)
1097 IVTV_DEBUG_INFO("v4l2 ioctl: set frequency %d\n", vf
->frequency
);
1098 ivtv_call_all(itv
, tuner
, s_frequency
, vf
);
1103 static int ivtv_g_std(struct file
*file
, void *fh
, v4l2_std_id
*std
)
1105 struct ivtv
*itv
= fh2id(fh
)->itv
;
1111 void ivtv_s_std_enc(struct ivtv
*itv
, v4l2_std_id std
)
1114 itv
->is_60hz
= (std
& V4L2_STD_525_60
) ? 1 : 0;
1115 itv
->is_50hz
= !itv
->is_60hz
;
1116 cx2341x_handler_set_50hz(&itv
->cxhdl
, itv
->is_50hz
);
1117 itv
->cxhdl
.width
= 720;
1118 itv
->cxhdl
.height
= itv
->is_50hz
? 576 : 480;
1119 itv
->vbi
.count
= itv
->is_50hz
? 18 : 12;
1120 itv
->vbi
.start
[0] = itv
->is_50hz
? 6 : 10;
1121 itv
->vbi
.start
[1] = itv
->is_50hz
? 318 : 273;
1123 if (itv
->hw_flags
& IVTV_HW_CX25840
)
1124 itv
->vbi
.sliced_decoder_line_size
= itv
->is_60hz
? 272 : 284;
1127 ivtv_call_all(itv
, video
, s_std
, itv
->std
);
1130 void ivtv_s_std_dec(struct ivtv
*itv
, v4l2_std_id std
)
1132 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
1136 /* set display standard */
1138 itv
->is_out_60hz
= (std
& V4L2_STD_525_60
) ? 1 : 0;
1139 itv
->is_out_50hz
= !itv
->is_out_60hz
;
1140 ivtv_call_all(itv
, video
, s_std_output
, itv
->std_out
);
1143 * The next firmware call is time sensitive. Time it to
1144 * avoid risk of a hard lock, by trying to ensure the call
1145 * happens within the first 100 lines of the top field.
1146 * Make 4 attempts to sync to the decoder before giving up.
1148 mutex_unlock(&itv
->serialize_lock
);
1149 for (f
= 0; f
< 4; f
++) {
1150 prepare_to_wait(&itv
->vsync_waitq
, &wait
,
1151 TASK_UNINTERRUPTIBLE
);
1152 if ((read_reg(IVTV_REG_DEC_LINE_FIELD
) >> 16) < 100)
1154 schedule_timeout(msecs_to_jiffies(25));
1156 finish_wait(&itv
->vsync_waitq
, &wait
);
1157 mutex_lock(&itv
->serialize_lock
);
1160 IVTV_WARN("Mode change failed to sync to decoder\n");
1162 ivtv_vapi(itv
, CX2341X_DEC_SET_STANDARD
, 1, itv
->is_out_50hz
);
1163 itv
->main_rect
.left
= 0;
1164 itv
->main_rect
.top
= 0;
1165 itv
->main_rect
.width
= 720;
1166 itv
->main_rect
.height
= itv
->is_out_50hz
? 576 : 480;
1167 ivtv_vapi(itv
, CX2341X_OSD_SET_FRAMEBUFFER_WINDOW
, 4,
1168 720, itv
->main_rect
.height
, 0, 0);
1169 yi
->main_rect
= itv
->main_rect
;
1170 if (!itv
->osd_info
) {
1171 yi
->osd_full_w
= 720;
1172 yi
->osd_full_h
= itv
->is_out_50hz
? 576 : 480;
1176 static int ivtv_s_std(struct file
*file
, void *fh
, v4l2_std_id std
)
1178 struct ivtv
*itv
= fh2id(fh
)->itv
;
1180 if ((std
& V4L2_STD_ALL
) == 0)
1183 if (std
== itv
->std
)
1186 if (test_bit(IVTV_F_I_RADIO_USER
, &itv
->i_flags
) ||
1187 atomic_read(&itv
->capturing
) > 0 ||
1188 atomic_read(&itv
->decoding
) > 0) {
1189 /* Switching standard would mess with already running
1190 streams, prevent that by returning EBUSY. */
1194 IVTV_DEBUG_INFO("Switching standard to %llx.\n",
1195 (unsigned long long)itv
->std
);
1197 ivtv_s_std_enc(itv
, std
);
1198 if (itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
)
1199 ivtv_s_std_dec(itv
, std
);
1204 static int ivtv_s_tuner(struct file
*file
, void *fh
, const struct v4l2_tuner
*vt
)
1206 struct ivtv_open_id
*id
= fh2id(fh
);
1207 struct ivtv
*itv
= id
->itv
;
1212 ivtv_call_all(itv
, tuner
, s_tuner
, vt
);
1217 static int ivtv_g_tuner(struct file
*file
, void *fh
, struct v4l2_tuner
*vt
)
1219 struct ivtv
*itv
= fh2id(fh
)->itv
;
1224 ivtv_call_all(itv
, tuner
, g_tuner
, vt
);
1226 if (vt
->type
== V4L2_TUNER_RADIO
)
1227 strlcpy(vt
->name
, "ivtv Radio Tuner", sizeof(vt
->name
));
1229 strlcpy(vt
->name
, "ivtv TV Tuner", sizeof(vt
->name
));
1233 static int ivtv_g_sliced_vbi_cap(struct file
*file
, void *fh
, struct v4l2_sliced_vbi_cap
*cap
)
1235 struct ivtv
*itv
= fh2id(fh
)->itv
;
1236 int set
= itv
->is_50hz
? V4L2_SLICED_VBI_625
: V4L2_SLICED_VBI_525
;
1239 if (cap
->type
== V4L2_BUF_TYPE_SLICED_VBI_CAPTURE
) {
1240 for (f
= 0; f
< 2; f
++) {
1241 for (l
= 0; l
< 24; l
++) {
1242 if (valid_service_line(f
, l
, itv
->is_50hz
))
1243 cap
->service_lines
[f
][l
] = set
;
1246 } else if (cap
->type
== V4L2_BUF_TYPE_SLICED_VBI_OUTPUT
) {
1247 if (!(itv
->v4l2_cap
& V4L2_CAP_SLICED_VBI_OUTPUT
))
1250 cap
->service_lines
[0][21] = V4L2_SLICED_CAPTION_525
;
1251 cap
->service_lines
[1][21] = V4L2_SLICED_CAPTION_525
;
1253 cap
->service_lines
[0][23] = V4L2_SLICED_WSS_625
;
1254 cap
->service_lines
[0][16] = V4L2_SLICED_VPS
;
1261 for (f
= 0; f
< 2; f
++)
1262 for (l
= 0; l
< 24; l
++)
1263 set
|= cap
->service_lines
[f
][l
];
1264 cap
->service_set
= set
;
1268 static int ivtv_g_enc_index(struct file
*file
, void *fh
, struct v4l2_enc_idx
*idx
)
1270 struct ivtv
*itv
= fh2id(fh
)->itv
;
1271 struct v4l2_enc_idx_entry
*e
= idx
->entry
;
1275 entries
= (itv
->pgm_info_write_idx
+ IVTV_MAX_PGM_INDEX
- itv
->pgm_info_read_idx
) %
1277 if (entries
> V4L2_ENC_IDX_ENTRIES
)
1278 entries
= V4L2_ENC_IDX_ENTRIES
;
1280 idx
->entries_cap
= IVTV_MAX_PGM_INDEX
;
1281 if (!atomic_read(&itv
->capturing
))
1283 for (i
= 0; i
< entries
; i
++) {
1284 *e
= itv
->pgm_info
[(itv
->pgm_info_read_idx
+ i
) % IVTV_MAX_PGM_INDEX
];
1285 if ((e
->flags
& V4L2_ENC_IDX_FRAME_MASK
) <= V4L2_ENC_IDX_FRAME_B
) {
1290 itv
->pgm_info_read_idx
= (itv
->pgm_info_read_idx
+ idx
->entries
) % IVTV_MAX_PGM_INDEX
;
1294 static int ivtv_encoder_cmd(struct file
*file
, void *fh
, struct v4l2_encoder_cmd
*enc
)
1296 struct ivtv_open_id
*id
= fh2id(fh
);
1297 struct ivtv
*itv
= id
->itv
;
1301 case V4L2_ENC_CMD_START
:
1302 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_START\n");
1304 return ivtv_start_capture(id
);
1306 case V4L2_ENC_CMD_STOP
:
1307 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_STOP\n");
1308 enc
->flags
&= V4L2_ENC_CMD_STOP_AT_GOP_END
;
1309 ivtv_stop_capture(id
, enc
->flags
& V4L2_ENC_CMD_STOP_AT_GOP_END
);
1312 case V4L2_ENC_CMD_PAUSE
:
1313 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_PAUSE\n");
1316 if (!atomic_read(&itv
->capturing
))
1318 if (test_and_set_bit(IVTV_F_I_ENC_PAUSED
, &itv
->i_flags
))
1322 ivtv_vapi(itv
, CX2341X_ENC_PAUSE_ENCODER
, 1, 0);
1325 case V4L2_ENC_CMD_RESUME
:
1326 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_RESUME\n");
1329 if (!atomic_read(&itv
->capturing
))
1332 if (!test_and_clear_bit(IVTV_F_I_ENC_PAUSED
, &itv
->i_flags
))
1335 ivtv_vapi(itv
, CX2341X_ENC_PAUSE_ENCODER
, 1, 1);
1339 IVTV_DEBUG_IOCTL("Unknown cmd %d\n", enc
->cmd
);
1346 static int ivtv_try_encoder_cmd(struct file
*file
, void *fh
, struct v4l2_encoder_cmd
*enc
)
1348 struct ivtv
*itv
= fh2id(fh
)->itv
;
1351 case V4L2_ENC_CMD_START
:
1352 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_START\n");
1356 case V4L2_ENC_CMD_STOP
:
1357 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_STOP\n");
1358 enc
->flags
&= V4L2_ENC_CMD_STOP_AT_GOP_END
;
1361 case V4L2_ENC_CMD_PAUSE
:
1362 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_PAUSE\n");
1366 case V4L2_ENC_CMD_RESUME
:
1367 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_RESUME\n");
1371 IVTV_DEBUG_IOCTL("Unknown cmd %d\n", enc
->cmd
);
1376 static int ivtv_g_fbuf(struct file
*file
, void *fh
, struct v4l2_framebuffer
*fb
)
1378 struct ivtv
*itv
= fh2id(fh
)->itv
;
1379 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
1380 u32 data
[CX2341X_MBOX_MAX_DATA
];
1381 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
1384 static u32 pixel_format
[16] = {
1385 V4L2_PIX_FMT_PAL8
, /* Uses a 256-entry RGB colormap */
1386 V4L2_PIX_FMT_RGB565
,
1387 V4L2_PIX_FMT_RGB555
,
1388 V4L2_PIX_FMT_RGB444
,
1393 V4L2_PIX_FMT_PAL8
, /* Uses a 256-entry YUV colormap */
1394 V4L2_PIX_FMT_YUV565
,
1395 V4L2_PIX_FMT_YUV555
,
1396 V4L2_PIX_FMT_YUV444
,
1403 if (!(s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
))
1405 if (!itv
->osd_video_pbase
)
1408 fb
->capability
= V4L2_FBUF_CAP_EXTERNOVERLAY
| V4L2_FBUF_CAP_CHROMAKEY
|
1409 V4L2_FBUF_CAP_GLOBAL_ALPHA
;
1411 ivtv_vapi_result(itv
, data
, CX2341X_OSD_GET_STATE
, 0);
1412 data
[0] |= (read_reg(0x2a00) >> 7) & 0x40;
1413 pixfmt
= (data
[0] >> 3) & 0xf;
1415 fb
->fmt
.pixelformat
= pixel_format
[pixfmt
];
1416 fb
->fmt
.width
= itv
->osd_rect
.width
;
1417 fb
->fmt
.height
= itv
->osd_rect
.height
;
1418 fb
->fmt
.field
= V4L2_FIELD_INTERLACED
;
1419 fb
->fmt
.bytesperline
= fb
->fmt
.width
;
1420 fb
->fmt
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
1421 fb
->fmt
.field
= V4L2_FIELD_INTERLACED
;
1422 if (fb
->fmt
.pixelformat
!= V4L2_PIX_FMT_PAL8
)
1423 fb
->fmt
.bytesperline
*= 2;
1424 if (fb
->fmt
.pixelformat
== V4L2_PIX_FMT_RGB32
||
1425 fb
->fmt
.pixelformat
== V4L2_PIX_FMT_YUV32
)
1426 fb
->fmt
.bytesperline
*= 2;
1427 fb
->fmt
.sizeimage
= fb
->fmt
.bytesperline
* fb
->fmt
.height
;
1428 fb
->base
= (void *)itv
->osd_video_pbase
;
1431 if (itv
->osd_chroma_key_state
)
1432 fb
->flags
|= V4L2_FBUF_FLAG_CHROMAKEY
;
1434 if (itv
->osd_global_alpha_state
)
1435 fb
->flags
|= V4L2_FBUF_FLAG_GLOBAL_ALPHA
;
1438 fb
->flags
|= V4L2_FBUF_FLAG_OVERLAY
;
1442 /* no local alpha for RGB565 or unknown formats */
1443 if (pixfmt
== 1 || pixfmt
> 4)
1446 /* 16-bit formats have inverted local alpha */
1447 if (pixfmt
== 2 || pixfmt
== 3)
1448 fb
->capability
|= V4L2_FBUF_CAP_LOCAL_INV_ALPHA
;
1450 fb
->capability
|= V4L2_FBUF_CAP_LOCAL_ALPHA
;
1452 if (itv
->osd_local_alpha_state
) {
1453 /* 16-bit formats have inverted local alpha */
1454 if (pixfmt
== 2 || pixfmt
== 3)
1455 fb
->flags
|= V4L2_FBUF_FLAG_LOCAL_INV_ALPHA
;
1457 fb
->flags
|= V4L2_FBUF_FLAG_LOCAL_ALPHA
;
1463 static int ivtv_s_fbuf(struct file
*file
, void *fh
, const struct v4l2_framebuffer
*fb
)
1465 struct ivtv_open_id
*id
= fh2id(fh
);
1466 struct ivtv
*itv
= id
->itv
;
1467 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
1468 struct yuv_playback_info
*yi
= &itv
->yuv_info
;
1470 if (!(s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
))
1472 if (!itv
->osd_video_pbase
)
1475 itv
->osd_global_alpha_state
= (fb
->flags
& V4L2_FBUF_FLAG_GLOBAL_ALPHA
) != 0;
1476 itv
->osd_local_alpha_state
=
1477 (fb
->flags
& (V4L2_FBUF_FLAG_LOCAL_ALPHA
|V4L2_FBUF_FLAG_LOCAL_INV_ALPHA
)) != 0;
1478 itv
->osd_chroma_key_state
= (fb
->flags
& V4L2_FBUF_FLAG_CHROMAKEY
) != 0;
1479 ivtv_set_osd_alpha(itv
);
1480 yi
->track_osd
= (fb
->flags
& V4L2_FBUF_FLAG_OVERLAY
) != 0;
1484 static int ivtv_overlay(struct file
*file
, void *fh
, unsigned int on
)
1486 struct ivtv_open_id
*id
= fh2id(fh
);
1487 struct ivtv
*itv
= id
->itv
;
1488 struct ivtv_stream
*s
= &itv
->streams
[fh2id(fh
)->type
];
1490 if (!(s
->caps
& V4L2_CAP_VIDEO_OUTPUT_OVERLAY
))
1492 if (!itv
->osd_video_pbase
)
1495 ivtv_vapi(itv
, CX2341X_OSD_SET_STATE
, 1, on
!= 0);
1500 static int ivtv_subscribe_event(struct v4l2_fh
*fh
, const struct v4l2_event_subscription
*sub
)
1502 switch (sub
->type
) {
1503 case V4L2_EVENT_VSYNC
:
1504 case V4L2_EVENT_EOS
:
1505 return v4l2_event_subscribe(fh
, sub
, 0, NULL
);
1506 case V4L2_EVENT_CTRL
:
1507 return v4l2_event_subscribe(fh
, sub
, 0, &v4l2_ctrl_sub_ev_ops
);
1513 static int ivtv_log_status(struct file
*file
, void *fh
)
1515 struct ivtv
*itv
= fh2id(fh
)->itv
;
1516 u32 data
[CX2341X_MBOX_MAX_DATA
];
1518 int has_output
= itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
;
1519 struct v4l2_input vidin
;
1520 struct v4l2_audio audin
;
1523 IVTV_INFO("Version: %s Card: %s\n", IVTV_VERSION
, itv
->card_name
);
1524 if (itv
->hw_flags
& IVTV_HW_TVEEPROM
) {
1527 ivtv_read_eeprom(itv
, &tv
);
1529 ivtv_call_all(itv
, core
, log_status
);
1530 ivtv_get_input(itv
, itv
->active_input
, &vidin
);
1531 ivtv_get_audio_input(itv
, itv
->audio_input
, &audin
);
1532 IVTV_INFO("Video Input: %s\n", vidin
.name
);
1533 IVTV_INFO("Audio Input: %s%s\n", audin
.name
,
1534 itv
->dualwatch_stereo_mode
== V4L2_MPEG_AUDIO_MODE_DUAL
?
1535 " (Bilingual)" : "");
1537 struct v4l2_output vidout
;
1538 struct v4l2_audioout audout
;
1539 int mode
= itv
->output_mode
;
1540 static const char * const output_modes
[5] = {
1547 static const char * const alpha_mode
[4] = {
1553 static const char * const pixel_format
[16] = {
1572 ivtv_get_output(itv
, itv
->active_output
, &vidout
);
1573 ivtv_get_audio_output(itv
, 0, &audout
);
1574 IVTV_INFO("Video Output: %s\n", vidout
.name
);
1575 if (mode
< 0 || mode
> OUT_PASSTHROUGH
)
1577 IVTV_INFO("Output Mode: %s\n", output_modes
[mode
]);
1578 ivtv_vapi_result(itv
, data
, CX2341X_OSD_GET_STATE
, 0);
1579 data
[0] |= (read_reg(0x2a00) >> 7) & 0x40;
1580 IVTV_INFO("Overlay: %s, Alpha: %s, Pixel Format: %s\n",
1581 data
[0] & 1 ? "On" : "Off",
1582 alpha_mode
[(data
[0] >> 1) & 0x3],
1583 pixel_format
[(data
[0] >> 3) & 0xf]);
1585 IVTV_INFO("Tuner: %s\n",
1586 test_bit(IVTV_F_I_RADIO_USER
, &itv
->i_flags
) ? "Radio" : "TV");
1587 v4l2_ctrl_handler_log_status(&itv
->cxhdl
.hdl
, itv
->v4l2_dev
.name
);
1588 IVTV_INFO("Status flags: 0x%08lx\n", itv
->i_flags
);
1589 for (i
= 0; i
< IVTV_MAX_STREAMS
; i
++) {
1590 struct ivtv_stream
*s
= &itv
->streams
[i
];
1592 if (s
->vdev
.v4l2_dev
== NULL
|| s
->buffers
== 0)
1594 IVTV_INFO("Stream %s: status 0x%04lx, %d%% of %d KiB (%d buffers) in use\n", s
->name
, s
->s_flags
,
1595 (s
->buffers
- s
->q_free
.buffers
) * 100 / s
->buffers
,
1596 (s
->buffers
* s
->buf_size
) / 1024, s
->buffers
);
1599 IVTV_INFO("Read MPG/VBI: %lld/%lld bytes\n",
1600 (long long)itv
->mpg_data_received
,
1601 (long long)itv
->vbi_data_inserted
);
1605 static int ivtv_decoder_cmd(struct file
*file
, void *fh
, struct v4l2_decoder_cmd
*dec
)
1607 struct ivtv_open_id
*id
= fh2id(file
->private_data
);
1608 struct ivtv
*itv
= id
->itv
;
1610 IVTV_DEBUG_IOCTL("VIDIOC_DECODER_CMD %d\n", dec
->cmd
);
1611 return ivtv_video_command(itv
, id
, dec
, false);
1614 static int ivtv_try_decoder_cmd(struct file
*file
, void *fh
, struct v4l2_decoder_cmd
*dec
)
1616 struct ivtv_open_id
*id
= fh2id(file
->private_data
);
1617 struct ivtv
*itv
= id
->itv
;
1619 IVTV_DEBUG_IOCTL("VIDIOC_TRY_DECODER_CMD %d\n", dec
->cmd
);
1620 return ivtv_video_command(itv
, id
, dec
, true);
1623 static int ivtv_decoder_ioctls(struct file
*filp
, unsigned int cmd
, void *arg
)
1625 struct ivtv_open_id
*id
= fh2id(filp
->private_data
);
1626 struct ivtv
*itv
= id
->itv
;
1627 int nonblocking
= filp
->f_flags
& O_NONBLOCK
;
1628 struct ivtv_stream
*s
= &itv
->streams
[id
->type
];
1629 unsigned long iarg
= (unsigned long)arg
;
1632 case IVTV_IOC_DMA_FRAME
: {
1633 struct ivtv_dma_frame
*args
= arg
;
1635 IVTV_DEBUG_IOCTL("IVTV_IOC_DMA_FRAME\n");
1636 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1638 if (args
->type
!= V4L2_BUF_TYPE_VIDEO_OUTPUT
)
1640 if (itv
->output_mode
== OUT_UDMA_YUV
&& args
->y_source
== NULL
)
1642 if (ivtv_start_decoding(id
, id
->type
)) {
1645 if (ivtv_set_output_mode(itv
, OUT_UDMA_YUV
) != OUT_UDMA_YUV
) {
1646 ivtv_release_stream(s
);
1649 /* Mark that this file handle started the UDMA_YUV mode */
1651 if (args
->y_source
== NULL
)
1653 return ivtv_yuv_prep_frame(itv
, args
);
1656 case IVTV_IOC_PASSTHROUGH_MODE
:
1657 IVTV_DEBUG_IOCTL("IVTV_IOC_PASSTHROUGH_MODE\n");
1658 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1660 return ivtv_passthrough_mode(itv
, *(int *)arg
!= 0);
1662 case VIDEO_GET_PTS
: {
1666 IVTV_DEBUG_IOCTL("VIDEO_GET_PTS\n");
1667 if (s
->type
< IVTV_DEC_STREAM_TYPE_MPG
) {
1671 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1673 return ivtv_g_pts_frame(itv
, pts
, &frame
);
1676 case VIDEO_GET_FRAME_COUNT
: {
1680 IVTV_DEBUG_IOCTL("VIDEO_GET_FRAME_COUNT\n");
1681 if (s
->type
< IVTV_DEC_STREAM_TYPE_MPG
) {
1685 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1687 return ivtv_g_pts_frame(itv
, &pts
, frame
);
1691 struct v4l2_decoder_cmd dc
;
1693 IVTV_DEBUG_IOCTL("VIDEO_PLAY\n");
1694 memset(&dc
, 0, sizeof(dc
));
1695 dc
.cmd
= V4L2_DEC_CMD_START
;
1696 return ivtv_video_command(itv
, id
, &dc
, 0);
1700 struct v4l2_decoder_cmd dc
;
1702 IVTV_DEBUG_IOCTL("VIDEO_STOP\n");
1703 memset(&dc
, 0, sizeof(dc
));
1704 dc
.cmd
= V4L2_DEC_CMD_STOP
;
1705 dc
.flags
= V4L2_DEC_CMD_STOP_TO_BLACK
| V4L2_DEC_CMD_STOP_IMMEDIATELY
;
1706 return ivtv_video_command(itv
, id
, &dc
, 0);
1709 case VIDEO_FREEZE
: {
1710 struct v4l2_decoder_cmd dc
;
1712 IVTV_DEBUG_IOCTL("VIDEO_FREEZE\n");
1713 memset(&dc
, 0, sizeof(dc
));
1714 dc
.cmd
= V4L2_DEC_CMD_PAUSE
;
1715 return ivtv_video_command(itv
, id
, &dc
, 0);
1718 case VIDEO_CONTINUE
: {
1719 struct v4l2_decoder_cmd dc
;
1721 IVTV_DEBUG_IOCTL("VIDEO_CONTINUE\n");
1722 memset(&dc
, 0, sizeof(dc
));
1723 dc
.cmd
= V4L2_DEC_CMD_RESUME
;
1724 return ivtv_video_command(itv
, id
, &dc
, 0);
1728 case VIDEO_TRY_COMMAND
: {
1729 /* Note: struct v4l2_decoder_cmd has the same layout as
1730 struct video_command */
1731 struct v4l2_decoder_cmd
*dc
= arg
;
1732 int try = (cmd
== VIDEO_TRY_COMMAND
);
1735 IVTV_DEBUG_IOCTL("VIDEO_TRY_COMMAND %d\n", dc
->cmd
);
1737 IVTV_DEBUG_IOCTL("VIDEO_COMMAND %d\n", dc
->cmd
);
1738 return ivtv_video_command(itv
, id
, dc
, try);
1741 case VIDEO_GET_EVENT
: {
1742 struct video_event
*ev
= arg
;
1745 IVTV_DEBUG_IOCTL("VIDEO_GET_EVENT\n");
1746 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1748 memset(ev
, 0, sizeof(*ev
));
1749 set_bit(IVTV_F_I_EV_VSYNC_ENABLED
, &itv
->i_flags
);
1752 if (test_and_clear_bit(IVTV_F_I_EV_DEC_STOPPED
, &itv
->i_flags
))
1753 ev
->type
= VIDEO_EVENT_DECODER_STOPPED
;
1754 else if (test_and_clear_bit(IVTV_F_I_EV_VSYNC
, &itv
->i_flags
)) {
1755 ev
->type
= VIDEO_EVENT_VSYNC
;
1756 ev
->u
.vsync_field
= test_bit(IVTV_F_I_EV_VSYNC_FIELD
, &itv
->i_flags
) ?
1757 VIDEO_VSYNC_FIELD_ODD
: VIDEO_VSYNC_FIELD_EVEN
;
1758 if (itv
->output_mode
== OUT_UDMA_YUV
&&
1759 (itv
->yuv_info
.lace_mode
& IVTV_YUV_MODE_MASK
) ==
1760 IVTV_YUV_MODE_PROGRESSIVE
) {
1761 ev
->u
.vsync_field
= VIDEO_VSYNC_FIELD_PROGRESSIVE
;
1768 /* Wait for event. Note that serialize_lock is locked,
1769 so to allow other processes to access the driver while
1770 we are waiting unlock first and later lock again. */
1771 mutex_unlock(&itv
->serialize_lock
);
1772 prepare_to_wait(&itv
->event_waitq
, &wait
, TASK_INTERRUPTIBLE
);
1773 if (!test_bit(IVTV_F_I_EV_DEC_STOPPED
, &itv
->i_flags
) &&
1774 !test_bit(IVTV_F_I_EV_VSYNC
, &itv
->i_flags
))
1776 finish_wait(&itv
->event_waitq
, &wait
);
1777 mutex_lock(&itv
->serialize_lock
);
1778 if (signal_pending(current
)) {
1779 /* return if a signal was received */
1780 IVTV_DEBUG_INFO("User stopped wait for event\n");
1787 case VIDEO_SELECT_SOURCE
:
1788 IVTV_DEBUG_IOCTL("VIDEO_SELECT_SOURCE\n");
1789 if (!(itv
->v4l2_cap
& V4L2_CAP_VIDEO_OUTPUT
))
1791 return ivtv_passthrough_mode(itv
, iarg
== VIDEO_SOURCE_DEMUX
);
1793 case AUDIO_SET_MUTE
:
1794 IVTV_DEBUG_IOCTL("AUDIO_SET_MUTE\n");
1795 itv
->speed_mute_audio
= iarg
;
1798 case AUDIO_CHANNEL_SELECT
:
1799 IVTV_DEBUG_IOCTL("AUDIO_CHANNEL_SELECT\n");
1800 if (iarg
> AUDIO_STEREO_SWAPPED
)
1802 return v4l2_ctrl_s_ctrl(itv
->ctrl_audio_playback
, iarg
+ 1);
1804 case AUDIO_BILINGUAL_CHANNEL_SELECT
:
1805 IVTV_DEBUG_IOCTL("AUDIO_BILINGUAL_CHANNEL_SELECT\n");
1806 if (iarg
> AUDIO_STEREO_SWAPPED
)
1808 return v4l2_ctrl_s_ctrl(itv
->ctrl_audio_multilingual_playback
, iarg
+ 1);
1816 static long ivtv_default(struct file
*file
, void *fh
, bool valid_prio
,
1817 unsigned int cmd
, void *arg
)
1819 struct ivtv
*itv
= fh2id(fh
)->itv
;
1823 case IVTV_IOC_PASSTHROUGH_MODE
:
1827 case VIDEO_CONTINUE
:
1829 case VIDEO_SELECT_SOURCE
:
1830 case AUDIO_SET_MUTE
:
1831 case AUDIO_CHANNEL_SELECT
:
1832 case AUDIO_BILINGUAL_CHANNEL_SELECT
:
1838 case VIDIOC_INT_RESET
: {
1839 u32 val
= *(u32
*)arg
;
1841 if ((val
== 0 && itv
->options
.newi2c
) || (val
& 0x01))
1842 ivtv_reset_ir_gpio(itv
);
1844 v4l2_subdev_call(itv
->sd_video
, core
, reset
, 0);
1848 case IVTV_IOC_DMA_FRAME
:
1849 case IVTV_IOC_PASSTHROUGH_MODE
:
1851 case VIDEO_GET_FRAME_COUNT
:
1852 case VIDEO_GET_EVENT
:
1856 case VIDEO_CONTINUE
:
1858 case VIDEO_TRY_COMMAND
:
1859 case VIDEO_SELECT_SOURCE
:
1860 case AUDIO_SET_MUTE
:
1861 case AUDIO_CHANNEL_SELECT
:
1862 case AUDIO_BILINGUAL_CHANNEL_SELECT
:
1863 return ivtv_decoder_ioctls(file
, cmd
, (void *)arg
);
1871 static const struct v4l2_ioctl_ops ivtv_ioctl_ops
= {
1872 .vidioc_querycap
= ivtv_querycap
,
1873 .vidioc_s_audio
= ivtv_s_audio
,
1874 .vidioc_g_audio
= ivtv_g_audio
,
1875 .vidioc_enumaudio
= ivtv_enumaudio
,
1876 .vidioc_s_audout
= ivtv_s_audout
,
1877 .vidioc_g_audout
= ivtv_g_audout
,
1878 .vidioc_enum_input
= ivtv_enum_input
,
1879 .vidioc_enum_output
= ivtv_enum_output
,
1880 .vidioc_enumaudout
= ivtv_enumaudout
,
1881 .vidioc_cropcap
= ivtv_cropcap
,
1882 .vidioc_s_selection
= ivtv_s_selection
,
1883 .vidioc_g_selection
= ivtv_g_selection
,
1884 .vidioc_g_input
= ivtv_g_input
,
1885 .vidioc_s_input
= ivtv_s_input
,
1886 .vidioc_g_output
= ivtv_g_output
,
1887 .vidioc_s_output
= ivtv_s_output
,
1888 .vidioc_g_frequency
= ivtv_g_frequency
,
1889 .vidioc_s_frequency
= ivtv_s_frequency
,
1890 .vidioc_s_tuner
= ivtv_s_tuner
,
1891 .vidioc_g_tuner
= ivtv_g_tuner
,
1892 .vidioc_g_enc_index
= ivtv_g_enc_index
,
1893 .vidioc_g_fbuf
= ivtv_g_fbuf
,
1894 .vidioc_s_fbuf
= ivtv_s_fbuf
,
1895 .vidioc_g_std
= ivtv_g_std
,
1896 .vidioc_s_std
= ivtv_s_std
,
1897 .vidioc_overlay
= ivtv_overlay
,
1898 .vidioc_log_status
= ivtv_log_status
,
1899 .vidioc_enum_fmt_vid_cap
= ivtv_enum_fmt_vid_cap
,
1900 .vidioc_encoder_cmd
= ivtv_encoder_cmd
,
1901 .vidioc_try_encoder_cmd
= ivtv_try_encoder_cmd
,
1902 .vidioc_decoder_cmd
= ivtv_decoder_cmd
,
1903 .vidioc_try_decoder_cmd
= ivtv_try_decoder_cmd
,
1904 .vidioc_enum_fmt_vid_out
= ivtv_enum_fmt_vid_out
,
1905 .vidioc_g_fmt_vid_cap
= ivtv_g_fmt_vid_cap
,
1906 .vidioc_g_fmt_vbi_cap
= ivtv_g_fmt_vbi_cap
,
1907 .vidioc_g_fmt_sliced_vbi_cap
= ivtv_g_fmt_sliced_vbi_cap
,
1908 .vidioc_g_fmt_vid_out
= ivtv_g_fmt_vid_out
,
1909 .vidioc_g_fmt_vid_out_overlay
= ivtv_g_fmt_vid_out_overlay
,
1910 .vidioc_g_fmt_sliced_vbi_out
= ivtv_g_fmt_sliced_vbi_out
,
1911 .vidioc_s_fmt_vid_cap
= ivtv_s_fmt_vid_cap
,
1912 .vidioc_s_fmt_vbi_cap
= ivtv_s_fmt_vbi_cap
,
1913 .vidioc_s_fmt_sliced_vbi_cap
= ivtv_s_fmt_sliced_vbi_cap
,
1914 .vidioc_s_fmt_vid_out
= ivtv_s_fmt_vid_out
,
1915 .vidioc_s_fmt_vid_out_overlay
= ivtv_s_fmt_vid_out_overlay
,
1916 .vidioc_s_fmt_sliced_vbi_out
= ivtv_s_fmt_sliced_vbi_out
,
1917 .vidioc_try_fmt_vid_cap
= ivtv_try_fmt_vid_cap
,
1918 .vidioc_try_fmt_vbi_cap
= ivtv_try_fmt_vbi_cap
,
1919 .vidioc_try_fmt_sliced_vbi_cap
= ivtv_try_fmt_sliced_vbi_cap
,
1920 .vidioc_try_fmt_vid_out
= ivtv_try_fmt_vid_out
,
1921 .vidioc_try_fmt_vid_out_overlay
= ivtv_try_fmt_vid_out_overlay
,
1922 .vidioc_try_fmt_sliced_vbi_out
= ivtv_try_fmt_sliced_vbi_out
,
1923 .vidioc_g_sliced_vbi_cap
= ivtv_g_sliced_vbi_cap
,
1924 #ifdef CONFIG_VIDEO_ADV_DEBUG
1925 .vidioc_g_register
= ivtv_g_register
,
1926 .vidioc_s_register
= ivtv_s_register
,
1928 .vidioc_default
= ivtv_default
,
1929 .vidioc_subscribe_event
= ivtv_subscribe_event
,
1930 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1933 void ivtv_set_funcs(struct video_device
*vdev
)
1935 vdev
->ioctl_ops
= &ivtv_ioctl_ops
;