]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/media/video/ivtv/ivtv-ioctl.c
Merge commit 'linus/master' into merge-linus
[linux-2.6-omap-h63xx.git] / drivers / media / video / ivtv / ivtv-ioctl.c
1 /*
2     ioctl system call
3     Copyright (C) 2003-2004  Kevin Thayer <nufan_wfk at yahoo.com>
4     Copyright (C) 2005-2007  Hans Verkuil <hverkuil@xs4all.nl>
5
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.
10
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.
15
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
19  */
20
21 #include "ivtv-driver.h"
22 #include "ivtv-version.h"
23 #include "ivtv-mailbox.h"
24 #include "ivtv-i2c.h"
25 #include "ivtv-queue.h"
26 #include "ivtv-fileops.h"
27 #include "ivtv-vbi.h"
28 #include "ivtv-routing.h"
29 #include "ivtv-streams.h"
30 #include "ivtv-yuv.h"
31 #include "ivtv-ioctl.h"
32 #include "ivtv-gpio.h"
33 #include "ivtv-controls.h"
34 #include "ivtv-cards.h"
35 #include <media/saa7127.h>
36 #include <media/tveeprom.h>
37 #include <media/v4l2-chip-ident.h>
38 #include <linux/dvb/audio.h>
39 #include <linux/i2c-id.h>
40
41 u16 ivtv_service2vbi(int type)
42 {
43         switch (type) {
44                 case V4L2_SLICED_TELETEXT_B:
45                         return IVTV_SLICED_TYPE_TELETEXT_B;
46                 case V4L2_SLICED_CAPTION_525:
47                         return IVTV_SLICED_TYPE_CAPTION_525;
48                 case V4L2_SLICED_WSS_625:
49                         return IVTV_SLICED_TYPE_WSS_625;
50                 case V4L2_SLICED_VPS:
51                         return IVTV_SLICED_TYPE_VPS;
52                 default:
53                         return 0;
54         }
55 }
56
57 static int valid_service_line(int field, int line, int is_pal)
58 {
59         return (is_pal && line >= 6 && (line != 23 || field == 0)) ||
60                (!is_pal && line >= 10 && line < 22);
61 }
62
63 static u16 select_service_from_set(int field, int line, u16 set, int is_pal)
64 {
65         u16 valid_set = (is_pal ? V4L2_SLICED_VBI_625 : V4L2_SLICED_VBI_525);
66         int i;
67
68         set = set & valid_set;
69         if (set == 0 || !valid_service_line(field, line, is_pal)) {
70                 return 0;
71         }
72         if (!is_pal) {
73                 if (line == 21 && (set & V4L2_SLICED_CAPTION_525))
74                         return V4L2_SLICED_CAPTION_525;
75         }
76         else {
77                 if (line == 16 && field == 0 && (set & V4L2_SLICED_VPS))
78                         return V4L2_SLICED_VPS;
79                 if (line == 23 && field == 0 && (set & V4L2_SLICED_WSS_625))
80                         return V4L2_SLICED_WSS_625;
81                 if (line == 23)
82                         return 0;
83         }
84         for (i = 0; i < 32; i++) {
85                 if ((1 << i) & set)
86                         return 1 << i;
87         }
88         return 0;
89 }
90
91 void ivtv_expand_service_set(struct v4l2_sliced_vbi_format *fmt, int is_pal)
92 {
93         u16 set = fmt->service_set;
94         int f, l;
95
96         fmt->service_set = 0;
97         for (f = 0; f < 2; f++) {
98                 for (l = 0; l < 24; l++) {
99                         fmt->service_lines[f][l] = select_service_from_set(f, l, set, is_pal);
100                 }
101         }
102 }
103
104 static void check_service_set(struct v4l2_sliced_vbi_format *fmt, int is_pal)
105 {
106         int f, l;
107
108         for (f = 0; f < 2; f++) {
109                 for (l = 0; l < 24; l++) {
110                         fmt->service_lines[f][l] = select_service_from_set(f, l, fmt->service_lines[f][l], is_pal);
111                 }
112         }
113 }
114
115 u16 ivtv_get_service_set(struct v4l2_sliced_vbi_format *fmt)
116 {
117         int f, l;
118         u16 set = 0;
119
120         for (f = 0; f < 2; f++) {
121                 for (l = 0; l < 24; l++) {
122                         set |= fmt->service_lines[f][l];
123                 }
124         }
125         return set;
126 }
127
128 void ivtv_set_osd_alpha(struct ivtv *itv)
129 {
130         ivtv_vapi(itv, CX2341X_OSD_SET_GLOBAL_ALPHA, 3,
131                 itv->osd_global_alpha_state, itv->osd_global_alpha, !itv->osd_local_alpha_state);
132         ivtv_vapi(itv, CX2341X_OSD_SET_CHROMA_KEY, 2, itv->osd_chroma_key_state, itv->osd_chroma_key);
133 }
134
135 int ivtv_set_speed(struct ivtv *itv, int speed)
136 {
137         u32 data[CX2341X_MBOX_MAX_DATA];
138         struct ivtv_stream *s;
139         int single_step = (speed == 1 || speed == -1);
140         DEFINE_WAIT(wait);
141
142         if (speed == 0) speed = 1000;
143
144         /* No change? */
145         if (speed == itv->speed && !single_step)
146                 return 0;
147
148         s = &itv->streams[IVTV_DEC_STREAM_TYPE_MPG];
149
150         if (single_step && (speed < 0) == (itv->speed < 0)) {
151                 /* Single step video and no need to change direction */
152                 ivtv_vapi(itv, CX2341X_DEC_STEP_VIDEO, 1, 0);
153                 itv->speed = speed;
154                 return 0;
155         }
156         if (single_step)
157                 /* Need to change direction */
158                 speed = speed < 0 ? -1000 : 1000;
159
160         data[0] = (speed > 1000 || speed < -1000) ? 0x80000000 : 0;
161         data[0] |= (speed > 1000 || speed < -1500) ? 0x40000000 : 0;
162         data[1] = (speed < 0);
163         data[2] = speed < 0 ? 3 : 7;
164         data[3] = itv->params.video_b_frames;
165         data[4] = (speed == 1500 || speed == 500) ? itv->speed_mute_audio : 0;
166         data[5] = 0;
167         data[6] = 0;
168
169         if (speed == 1500 || speed == -1500) data[0] |= 1;
170         else if (speed == 2000 || speed == -2000) data[0] |= 2;
171         else if (speed > -1000 && speed < 0) data[0] |= (-1000 / speed);
172         else if (speed < 1000 && speed > 0) data[0] |= (1000 / speed);
173
174         /* If not decoding, just change speed setting */
175         if (atomic_read(&itv->decoding) > 0) {
176                 int got_sig = 0;
177
178                 /* Stop all DMA and decoding activity */
179                 ivtv_vapi(itv, CX2341X_DEC_PAUSE_PLAYBACK, 1, 0);
180
181                 /* Wait for any DMA to finish */
182                 prepare_to_wait(&itv->dma_waitq, &wait, TASK_INTERRUPTIBLE);
183                 while (itv->i_flags & IVTV_F_I_DMA) {
184                         got_sig = signal_pending(current);
185                         if (got_sig)
186                                 break;
187                         got_sig = 0;
188                         schedule();
189                 }
190                 finish_wait(&itv->dma_waitq, &wait);
191                 if (got_sig)
192                         return -EINTR;
193
194                 /* Change Speed safely */
195                 ivtv_api(itv, CX2341X_DEC_SET_PLAYBACK_SPEED, 7, data);
196                 IVTV_DEBUG_INFO("Setting Speed to 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x\n",
197                                 data[0], data[1], data[2], data[3], data[4], data[5], data[6]);
198         }
199         if (single_step) {
200                 speed = (speed < 0) ? -1 : 1;
201                 ivtv_vapi(itv, CX2341X_DEC_STEP_VIDEO, 1, 0);
202         }
203         itv->speed = speed;
204         return 0;
205 }
206
207 static int ivtv_validate_speed(int cur_speed, int new_speed)
208 {
209         int fact = new_speed < 0 ? -1 : 1;
210         int s;
211
212         if (cur_speed == 0)
213                 cur_speed = 1000;
214         if (new_speed < 0)
215                 new_speed = -new_speed;
216         if (cur_speed < 0)
217                 cur_speed = -cur_speed;
218
219         if (cur_speed <= new_speed) {
220                 if (new_speed > 1500)
221                         return fact * 2000;
222                 if (new_speed > 1000)
223                         return fact * 1500;
224         }
225         else {
226                 if (new_speed >= 2000)
227                         return fact * 2000;
228                 if (new_speed >= 1500)
229                         return fact * 1500;
230                 if (new_speed >= 1000)
231                         return fact * 1000;
232         }
233         if (new_speed == 0)
234                 return 1000;
235         if (new_speed == 1 || new_speed == 1000)
236                 return fact * new_speed;
237
238         s = new_speed;
239         new_speed = 1000 / new_speed;
240         if (1000 / cur_speed == new_speed)
241                 new_speed += (cur_speed < s) ? -1 : 1;
242         if (new_speed > 60) return 1000 / (fact * 60);
243         return 1000 / (fact * new_speed);
244 }
245
246 static int ivtv_video_command(struct ivtv *itv, struct ivtv_open_id *id,
247                 struct video_command *vc, int try)
248 {
249         struct ivtv_stream *s = &itv->streams[IVTV_DEC_STREAM_TYPE_MPG];
250
251         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
252                 return -EINVAL;
253
254         switch (vc->cmd) {
255         case VIDEO_CMD_PLAY: {
256                 vc->flags = 0;
257                 vc->play.speed = ivtv_validate_speed(itv->speed, vc->play.speed);
258                 if (vc->play.speed < 0)
259                         vc->play.format = VIDEO_PLAY_FMT_GOP;
260                 if (try) break;
261
262                 if (ivtv_set_output_mode(itv, OUT_MPG) != OUT_MPG)
263                         return -EBUSY;
264                 if (test_and_clear_bit(IVTV_F_I_DEC_PAUSED, &itv->i_flags)) {
265                         /* forces ivtv_set_speed to be called */
266                         itv->speed = 0;
267                 }
268                 return ivtv_start_decoding(id, vc->play.speed);
269         }
270
271         case VIDEO_CMD_STOP:
272                 vc->flags &= VIDEO_CMD_STOP_IMMEDIATELY|VIDEO_CMD_STOP_TO_BLACK;
273                 if (vc->flags & VIDEO_CMD_STOP_IMMEDIATELY)
274                         vc->stop.pts = 0;
275                 if (try) break;
276                 if (atomic_read(&itv->decoding) == 0)
277                         return 0;
278                 if (itv->output_mode != OUT_MPG)
279                         return -EBUSY;
280
281                 itv->output_mode = OUT_NONE;
282                 return ivtv_stop_v4l2_decode_stream(s, vc->flags, vc->stop.pts);
283
284         case VIDEO_CMD_FREEZE:
285                 vc->flags &= VIDEO_CMD_FREEZE_TO_BLACK;
286                 if (try) break;
287                 if (itv->output_mode != OUT_MPG)
288                         return -EBUSY;
289                 if (atomic_read(&itv->decoding) > 0) {
290                         ivtv_vapi(itv, CX2341X_DEC_PAUSE_PLAYBACK, 1,
291                                 (vc->flags & VIDEO_CMD_FREEZE_TO_BLACK) ? 1 : 0);
292                         set_bit(IVTV_F_I_DEC_PAUSED, &itv->i_flags);
293                 }
294                 break;
295
296         case VIDEO_CMD_CONTINUE:
297                 vc->flags = 0;
298                 if (try) break;
299                 if (itv->output_mode != OUT_MPG)
300                         return -EBUSY;
301                 if (test_and_clear_bit(IVTV_F_I_DEC_PAUSED, &itv->i_flags)) {
302                         int speed = itv->speed;
303                         itv->speed = 0;
304                         return ivtv_start_decoding(id, speed);
305                 }
306                 break;
307
308         default:
309                 return -EINVAL;
310         }
311         return 0;
312 }
313
314 static int ivtv_g_fmt_sliced_vbi_out(struct file *file, void *fh, struct v4l2_format *fmt)
315 {
316         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
317         struct v4l2_sliced_vbi_format *vbifmt = &fmt->fmt.sliced;
318
319         vbifmt->reserved[0] = 0;
320         vbifmt->reserved[1] = 0;
321         if (!(itv->v4l2_cap & V4L2_CAP_SLICED_VBI_OUTPUT))
322                 return -EINVAL;
323         vbifmt->io_size = sizeof(struct v4l2_sliced_vbi_data) * 36;
324         if (itv->is_60hz) {
325                 vbifmt->service_lines[0][21] = V4L2_SLICED_CAPTION_525;
326                 vbifmt->service_lines[1][21] = V4L2_SLICED_CAPTION_525;
327         } else {
328                 vbifmt->service_lines[0][23] = V4L2_SLICED_WSS_625;
329                 vbifmt->service_lines[0][16] = V4L2_SLICED_VPS;
330         }
331         vbifmt->service_set = ivtv_get_service_set(vbifmt);
332         return 0;
333 }
334
335 static int ivtv_g_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
336 {
337         struct ivtv_open_id *id = fh;
338         struct ivtv *itv = id->itv;
339         struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
340
341         pixfmt->width = itv->params.width;
342         pixfmt->height = itv->params.height;
343         pixfmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
344         pixfmt->field = V4L2_FIELD_INTERLACED;
345         pixfmt->priv = 0;
346         if (id->type == IVTV_ENC_STREAM_TYPE_YUV) {
347                 pixfmt->pixelformat = V4L2_PIX_FMT_HM12;
348                 /* YUV size is (Y=(h*w) + UV=(h*(w/2))) */
349                 pixfmt->sizeimage =
350                         pixfmt->height * pixfmt->width +
351                         pixfmt->height * (pixfmt->width / 2);
352                 pixfmt->bytesperline = 720;
353         } else {
354                 pixfmt->pixelformat = V4L2_PIX_FMT_MPEG;
355                 pixfmt->sizeimage = 128 * 1024;
356                 pixfmt->bytesperline = 0;
357         }
358         return 0;
359 }
360
361 static int ivtv_g_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
362 {
363         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
364         struct v4l2_vbi_format *vbifmt = &fmt->fmt.vbi;
365
366         vbifmt->sampling_rate = 27000000;
367         vbifmt->offset = 248;
368         vbifmt->samples_per_line = itv->vbi.raw_decoder_line_size - 4;
369         vbifmt->sample_format = V4L2_PIX_FMT_GREY;
370         vbifmt->start[0] = itv->vbi.start[0];
371         vbifmt->start[1] = itv->vbi.start[1];
372         vbifmt->count[0] = vbifmt->count[1] = itv->vbi.count;
373         vbifmt->flags = 0;
374         vbifmt->reserved[0] = 0;
375         vbifmt->reserved[1] = 0;
376         return 0;
377 }
378
379 static int ivtv_g_fmt_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
380 {
381         struct v4l2_sliced_vbi_format *vbifmt = &fmt->fmt.sliced;
382         struct ivtv_open_id *id = fh;
383         struct ivtv *itv = id->itv;
384
385         vbifmt->reserved[0] = 0;
386         vbifmt->reserved[1] = 0;
387         vbifmt->io_size = sizeof(struct v4l2_sliced_vbi_data) * 36;
388
389         if (id->type == IVTV_DEC_STREAM_TYPE_VBI) {
390                 vbifmt->service_set = itv->is_50hz ? V4L2_SLICED_VBI_625 :
391                         V4L2_SLICED_VBI_525;
392                 ivtv_expand_service_set(vbifmt, itv->is_50hz);
393                 return 0;
394         }
395
396         itv->video_dec_func(itv, VIDIOC_G_FMT, fmt);
397         vbifmt->service_set = ivtv_get_service_set(vbifmt);
398         return 0;
399 }
400
401 static int ivtv_g_fmt_vid_out(struct file *file, void *fh, struct v4l2_format *fmt)
402 {
403         struct ivtv_open_id *id = fh;
404         struct ivtv *itv = id->itv;
405         struct v4l2_pix_format *pixfmt = &fmt->fmt.pix;
406
407         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
408                 return -EINVAL;
409         pixfmt->width = itv->main_rect.width;
410         pixfmt->height = itv->main_rect.height;
411         pixfmt->colorspace = V4L2_COLORSPACE_SMPTE170M;
412         pixfmt->field = V4L2_FIELD_INTERLACED;
413         pixfmt->priv = 0;
414         if (id->type == IVTV_DEC_STREAM_TYPE_YUV) {
415                 switch (itv->yuv_info.lace_mode & IVTV_YUV_MODE_MASK) {
416                 case IVTV_YUV_MODE_INTERLACED:
417                         pixfmt->field = (itv->yuv_info.lace_mode & IVTV_YUV_SYNC_MASK) ?
418                                 V4L2_FIELD_INTERLACED_BT : V4L2_FIELD_INTERLACED_TB;
419                         break;
420                 case IVTV_YUV_MODE_PROGRESSIVE:
421                         pixfmt->field = V4L2_FIELD_NONE;
422                         break;
423                 default:
424                         pixfmt->field = V4L2_FIELD_ANY;
425                         break;
426                 }
427                 pixfmt->pixelformat = V4L2_PIX_FMT_HM12;
428                 pixfmt->bytesperline = 720;
429                 pixfmt->width = itv->yuv_info.v4l2_src_w;
430                 pixfmt->height = itv->yuv_info.v4l2_src_h;
431                 /* YUV size is (Y=(h*w) + UV=(h*(w/2))) */
432                 pixfmt->sizeimage =
433                         1080 * ((pixfmt->height + 31) & ~31);
434         } else {
435                 pixfmt->pixelformat = V4L2_PIX_FMT_MPEG;
436                 pixfmt->sizeimage = 128 * 1024;
437                 pixfmt->bytesperline = 0;
438         }
439         return 0;
440 }
441
442 static int ivtv_g_fmt_vid_out_overlay(struct file *file, void *fh, struct v4l2_format *fmt)
443 {
444         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
445         struct v4l2_window *winfmt = &fmt->fmt.win;
446
447         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
448                 return -EINVAL;
449         winfmt->chromakey = itv->osd_chroma_key;
450         winfmt->global_alpha = itv->osd_global_alpha;
451         winfmt->field = V4L2_FIELD_INTERLACED;
452         winfmt->clips = NULL;
453         winfmt->clipcount = 0;
454         winfmt->bitmap = NULL;
455         winfmt->w.top = winfmt->w.left = 0;
456         winfmt->w.width = itv->osd_rect.width;
457         winfmt->w.height = itv->osd_rect.height;
458         return 0;
459 }
460
461 static int ivtv_try_fmt_sliced_vbi_out(struct file *file, void *fh, struct v4l2_format *fmt)
462 {
463         return ivtv_g_fmt_sliced_vbi_out(file, fh, fmt);
464 }
465
466 static int ivtv_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
467 {
468         struct ivtv_open_id *id = fh;
469         struct ivtv *itv = id->itv;
470         int w = fmt->fmt.pix.width;
471         int h = fmt->fmt.pix.height;
472
473         w = min(w, 720);
474         w = max(w, 2);
475         h = min(h, itv->is_50hz ? 576 : 480);
476         h = max(h, 2);
477         ivtv_g_fmt_vid_cap(file, fh, fmt);
478         fmt->fmt.pix.width = w;
479         fmt->fmt.pix.height = h;
480         return 0;
481 }
482
483 static int ivtv_try_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
484 {
485         return ivtv_g_fmt_vbi_cap(file, fh, fmt);
486 }
487
488 static int ivtv_try_fmt_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
489 {
490         struct v4l2_sliced_vbi_format *vbifmt = &fmt->fmt.sliced;
491         struct ivtv_open_id *id = fh;
492         struct ivtv *itv = id->itv;
493
494         if (id->type == IVTV_DEC_STREAM_TYPE_VBI)
495                 return ivtv_g_fmt_sliced_vbi_cap(file, fh, fmt);
496
497         /* set sliced VBI capture format */
498         vbifmt->io_size = sizeof(struct v4l2_sliced_vbi_data) * 36;
499         vbifmt->reserved[0] = 0;
500         vbifmt->reserved[1] = 0;
501
502         if (vbifmt->service_set)
503                 ivtv_expand_service_set(vbifmt, itv->is_50hz);
504         check_service_set(vbifmt, itv->is_50hz);
505         vbifmt->service_set = ivtv_get_service_set(vbifmt);
506         return 0;
507 }
508
509 static int ivtv_try_fmt_vid_out(struct file *file, void *fh, struct v4l2_format *fmt)
510 {
511         struct ivtv_open_id *id = fh;
512         struct ivtv *itv = id->itv;
513         s32 w = fmt->fmt.pix.width;
514         s32 h = fmt->fmt.pix.height;
515         int field = fmt->fmt.pix.field;
516         int ret = ivtv_g_fmt_vid_out(file, fh, fmt);
517
518         w = min(w, 720);
519         w = max(w, 2);
520         h = min(h, itv->is_out_50hz ? 576 : 480);
521         h = max(h, 2);
522         if (id->type == IVTV_DEC_STREAM_TYPE_YUV)
523                 fmt->fmt.pix.field = field;
524         fmt->fmt.pix.width = w;
525         fmt->fmt.pix.height = h;
526         return ret;
527 }
528
529 static int ivtv_try_fmt_vid_out_overlay(struct file *file, void *fh, struct v4l2_format *fmt)
530 {
531         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
532         u32 chromakey = fmt->fmt.win.chromakey;
533         u8 global_alpha = fmt->fmt.win.global_alpha;
534
535         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
536                 return -EINVAL;
537         ivtv_g_fmt_vid_out_overlay(file, fh, fmt);
538         fmt->fmt.win.chromakey = chromakey;
539         fmt->fmt.win.global_alpha = global_alpha;
540         return 0;
541 }
542
543 static int ivtv_s_fmt_sliced_vbi_out(struct file *file, void *fh, struct v4l2_format *fmt)
544 {
545         return ivtv_g_fmt_sliced_vbi_out(file, fh, fmt);
546 }
547
548 static int ivtv_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
549 {
550         struct ivtv_open_id *id = fh;
551         struct ivtv *itv = id->itv;
552         struct cx2341x_mpeg_params *p = &itv->params;
553         int ret = ivtv_try_fmt_vid_cap(file, fh, fmt);
554         int w = fmt->fmt.pix.width;
555         int h = fmt->fmt.pix.height;
556
557         if (ret)
558                 return ret;
559
560         if (p->width == w && p->height == h)
561                 return 0;
562
563         if (atomic_read(&itv->capturing) > 0)
564                 return -EBUSY;
565
566         p->width = w;
567         p->height = h;
568         if (p->video_encoding == V4L2_MPEG_VIDEO_ENCODING_MPEG_1)
569                 fmt->fmt.pix.width /= 2;
570         itv->video_dec_func(itv, VIDIOC_S_FMT, fmt);
571         return ivtv_g_fmt_vid_cap(file, fh, fmt);
572 }
573
574 static int ivtv_s_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
575 {
576         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
577
578         if (!ivtv_raw_vbi(itv) && atomic_read(&itv->capturing) > 0)
579                 return -EBUSY;
580         itv->vbi.sliced_in->service_set = 0;
581         itv->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE;
582         itv->video_dec_func(itv, VIDIOC_S_FMT, fmt);
583         return ivtv_g_fmt_vbi_cap(file, fh, fmt);
584 }
585
586 static int ivtv_s_fmt_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_format *fmt)
587 {
588         struct v4l2_sliced_vbi_format *vbifmt = &fmt->fmt.sliced;
589         struct ivtv_open_id *id = fh;
590         struct ivtv *itv = id->itv;
591         int ret = ivtv_try_fmt_sliced_vbi_cap(file, fh, fmt);
592
593         if (ret || id->type == IVTV_DEC_STREAM_TYPE_VBI)
594                 return ret;
595
596         check_service_set(vbifmt, itv->is_50hz);
597         if (ivtv_raw_vbi(itv) && atomic_read(&itv->capturing) > 0)
598                 return -EBUSY;
599         itv->vbi.in.type = V4L2_BUF_TYPE_SLICED_VBI_CAPTURE;
600         itv->video_dec_func(itv, VIDIOC_S_FMT, fmt);
601         memcpy(itv->vbi.sliced_in, vbifmt, sizeof(*itv->vbi.sliced_in));
602         return 0;
603 }
604
605 static int ivtv_s_fmt_vid_out(struct file *file, void *fh, struct v4l2_format *fmt)
606 {
607         struct ivtv_open_id *id = fh;
608         struct ivtv *itv = id->itv;
609         struct yuv_playback_info *yi = &itv->yuv_info;
610         int ret = ivtv_try_fmt_vid_out(file, fh, fmt);
611
612         if (ret)
613                 return ret;
614
615         if (id->type != IVTV_DEC_STREAM_TYPE_YUV)
616                 return 0;
617
618         /* Return now if we already have some frame data */
619         if (yi->stream_size)
620                 return -EBUSY;
621
622         yi->v4l2_src_w = fmt->fmt.pix.width;
623         yi->v4l2_src_h = fmt->fmt.pix.height;
624
625         switch (fmt->fmt.pix.field) {
626         case V4L2_FIELD_NONE:
627                 yi->lace_mode = IVTV_YUV_MODE_PROGRESSIVE;
628                 break;
629         case V4L2_FIELD_ANY:
630                 yi->lace_mode = IVTV_YUV_MODE_AUTO;
631                 break;
632         case V4L2_FIELD_INTERLACED_BT:
633                 yi->lace_mode =
634                         IVTV_YUV_MODE_INTERLACED|IVTV_YUV_SYNC_ODD;
635                 break;
636         case V4L2_FIELD_INTERLACED_TB:
637         default:
638                 yi->lace_mode = IVTV_YUV_MODE_INTERLACED;
639                 break;
640         }
641         yi->lace_sync_field = (yi->lace_mode & IVTV_YUV_SYNC_MASK) == IVTV_YUV_SYNC_EVEN ? 0 : 1;
642
643         if (test_bit(IVTV_F_I_DEC_YUV, &itv->i_flags))
644                 itv->dma_data_req_size =
645                         1080 * ((yi->v4l2_src_h + 31) & ~31);
646
647         return 0;
648 }
649
650 static int ivtv_s_fmt_vid_out_overlay(struct file *file, void *fh, struct v4l2_format *fmt)
651 {
652         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
653         int ret = ivtv_try_fmt_vid_out_overlay(file, fh, fmt);
654
655         if (ret == 0) {
656                 itv->osd_chroma_key = fmt->fmt.win.chromakey;
657                 itv->osd_global_alpha = fmt->fmt.win.global_alpha;
658                 ivtv_set_osd_alpha(itv);
659         }
660         return ret;
661 }
662
663 static int ivtv_g_chip_ident(struct file *file, void *fh, struct v4l2_chip_ident *chip)
664 {
665         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
666
667         chip->ident = V4L2_IDENT_NONE;
668         chip->revision = 0;
669         if (chip->match_type == V4L2_CHIP_MATCH_HOST) {
670                 if (v4l2_chip_match_host(chip->match_type, chip->match_chip))
671                         chip->ident = itv->has_cx23415 ? V4L2_IDENT_CX23415 : V4L2_IDENT_CX23416;
672                 return 0;
673         }
674         if (chip->match_type == V4L2_CHIP_MATCH_I2C_DRIVER)
675                 return ivtv_i2c_id(itv, chip->match_chip, VIDIOC_G_CHIP_IDENT, chip);
676         if (chip->match_type == V4L2_CHIP_MATCH_I2C_ADDR)
677                 return ivtv_call_i2c_client(itv, chip->match_chip, VIDIOC_G_CHIP_IDENT, chip);
678         return -EINVAL;
679 }
680
681 #ifdef CONFIG_VIDEO_ADV_DEBUG
682 static int ivtv_itvc(struct ivtv *itv, unsigned int cmd, void *arg)
683 {
684         struct v4l2_register *regs = arg;
685         unsigned long flags;
686         volatile u8 __iomem *reg_start;
687
688         if (!capable(CAP_SYS_ADMIN))
689                 return -EPERM;
690         if (regs->reg >= IVTV_REG_OFFSET && regs->reg < IVTV_REG_OFFSET + IVTV_REG_SIZE)
691                 reg_start = itv->reg_mem - IVTV_REG_OFFSET;
692         else if (itv->has_cx23415 && regs->reg >= IVTV_DECODER_OFFSET &&
693                         regs->reg < IVTV_DECODER_OFFSET + IVTV_DECODER_SIZE)
694                 reg_start = itv->dec_mem - IVTV_DECODER_OFFSET;
695         else if (regs->reg >= 0 && regs->reg < IVTV_ENCODER_SIZE)
696                 reg_start = itv->enc_mem;
697         else
698                 return -EINVAL;
699
700         spin_lock_irqsave(&ivtv_cards_lock, flags);
701         if (cmd == VIDIOC_DBG_G_REGISTER)
702                 regs->val = readl(regs->reg + reg_start);
703         else
704                 writel(regs->val, regs->reg + reg_start);
705         spin_unlock_irqrestore(&ivtv_cards_lock, flags);
706         return 0;
707 }
708
709 static int ivtv_g_register(struct file *file, void *fh, struct v4l2_register *reg)
710 {
711         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
712
713         if (v4l2_chip_match_host(reg->match_type, reg->match_chip))
714                 return ivtv_itvc(itv, VIDIOC_DBG_G_REGISTER, reg);
715         if (reg->match_type == V4L2_CHIP_MATCH_I2C_DRIVER)
716                 return ivtv_i2c_id(itv, reg->match_chip, VIDIOC_DBG_G_REGISTER, reg);
717         return ivtv_call_i2c_client(itv, reg->match_chip, VIDIOC_DBG_G_REGISTER, reg);
718 }
719
720 static int ivtv_s_register(struct file *file, void *fh, struct v4l2_register *reg)
721 {
722         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
723
724         if (v4l2_chip_match_host(reg->match_type, reg->match_chip))
725                 return ivtv_itvc(itv, VIDIOC_DBG_S_REGISTER, reg);
726         if (reg->match_type == V4L2_CHIP_MATCH_I2C_DRIVER)
727                 return ivtv_i2c_id(itv, reg->match_chip, VIDIOC_DBG_S_REGISTER, reg);
728         return ivtv_call_i2c_client(itv, reg->match_chip, VIDIOC_DBG_S_REGISTER, reg);
729 }
730 #endif
731
732 static int ivtv_g_priority(struct file *file, void *fh, enum v4l2_priority *p)
733 {
734         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
735
736         *p = v4l2_prio_max(&itv->prio);
737
738         return 0;
739 }
740
741 static int ivtv_s_priority(struct file *file, void *fh, enum v4l2_priority prio)
742 {
743         struct ivtv_open_id *id = fh;
744         struct ivtv *itv = id->itv;
745
746         return v4l2_prio_change(&itv->prio, &id->prio, prio);
747 }
748
749 static int ivtv_querycap(struct file *file, void *fh, struct v4l2_capability *vcap)
750 {
751         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
752
753         strlcpy(vcap->driver, IVTV_DRIVER_NAME, sizeof(vcap->driver));
754         strlcpy(vcap->card, itv->card_name, sizeof(vcap->card));
755         snprintf(vcap->bus_info, sizeof(vcap->bus_info), "PCI:%s", pci_name(itv->dev));
756         vcap->version = IVTV_DRIVER_VERSION;        /* version */
757         vcap->capabilities = itv->v4l2_cap;         /* capabilities */
758         return 0;
759 }
760
761 static int ivtv_enumaudio(struct file *file, void *fh, struct v4l2_audio *vin)
762 {
763         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
764
765         return ivtv_get_audio_input(itv, vin->index, vin);
766 }
767
768 static int ivtv_g_audio(struct file *file, void *fh, struct v4l2_audio *vin)
769 {
770         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
771
772         vin->index = itv->audio_input;
773         return ivtv_get_audio_input(itv, vin->index, vin);
774 }
775
776 static int ivtv_s_audio(struct file *file, void *fh, struct v4l2_audio *vout)
777 {
778         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
779
780         if (vout->index >= itv->nof_audio_inputs)
781                 return -EINVAL;
782
783         itv->audio_input = vout->index;
784         ivtv_audio_set_io(itv);
785
786         return 0;
787 }
788
789 static int ivtv_enumaudout(struct file *file, void *fh, struct v4l2_audioout *vin)
790 {
791         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
792
793         /* set it to defaults from our table */
794         return ivtv_get_audio_output(itv, vin->index, vin);
795 }
796
797 static int ivtv_g_audout(struct file *file, void *fh, struct v4l2_audioout *vin)
798 {
799         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
800
801         vin->index = 0;
802         return ivtv_get_audio_output(itv, vin->index, vin);
803 }
804
805 static int ivtv_s_audout(struct file *file, void *fh, struct v4l2_audioout *vout)
806 {
807         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
808
809         return ivtv_get_audio_output(itv, vout->index, vout);
810 }
811
812 static int ivtv_enum_input(struct file *file, void *fh, struct v4l2_input *vin)
813 {
814         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
815
816         /* set it to defaults from our table */
817         return ivtv_get_input(itv, vin->index, vin);
818 }
819
820 static int ivtv_enum_output(struct file *file, void *fh, struct v4l2_output *vout)
821 {
822         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
823
824         return ivtv_get_output(itv, vout->index, vout);
825 }
826
827 static int ivtv_cropcap(struct file *file, void *fh, struct v4l2_cropcap *cropcap)
828 {
829         struct ivtv_open_id *id = fh;
830         struct ivtv *itv = id->itv;
831         struct yuv_playback_info *yi = &itv->yuv_info;
832         int streamtype;
833
834         streamtype = id->type;
835
836         if (cropcap->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
837                 return -EINVAL;
838         cropcap->bounds.top = cropcap->bounds.left = 0;
839         cropcap->bounds.width = 720;
840         if (cropcap->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
841                 cropcap->bounds.height = itv->is_50hz ? 576 : 480;
842                 cropcap->pixelaspect.numerator = itv->is_50hz ? 59 : 10;
843                 cropcap->pixelaspect.denominator = itv->is_50hz ? 54 : 11;
844         } else if (streamtype == IVTV_DEC_STREAM_TYPE_YUV) {
845                 if (yi->track_osd) {
846                         cropcap->bounds.width = yi->osd_full_w;
847                         cropcap->bounds.height = yi->osd_full_h;
848                 } else {
849                         cropcap->bounds.width = 720;
850                         cropcap->bounds.height =
851                                         itv->is_out_50hz ? 576 : 480;
852                 }
853                 cropcap->pixelaspect.numerator = itv->is_out_50hz ? 59 : 10;
854                 cropcap->pixelaspect.denominator = itv->is_out_50hz ? 54 : 11;
855         } else {
856                 cropcap->bounds.height = itv->is_out_50hz ? 576 : 480;
857                 cropcap->pixelaspect.numerator = itv->is_out_50hz ? 59 : 10;
858                 cropcap->pixelaspect.denominator = itv->is_out_50hz ? 54 : 11;
859         }
860         cropcap->defrect = cropcap->bounds;
861         return 0;
862 }
863
864 static int ivtv_s_crop(struct file *file, void *fh, struct v4l2_crop *crop)
865 {
866         struct ivtv_open_id *id = fh;
867         struct ivtv *itv = id->itv;
868         struct yuv_playback_info *yi = &itv->yuv_info;
869         int streamtype;
870
871         streamtype = id->type;
872
873         if (ivtv_debug & IVTV_DBGFLG_IOCTL) {
874                 printk(KERN_INFO "ivtv%d ioctl: ", itv->num);
875                 /* Should be replaced */
876                 /* v4l_printk_ioctl(VIDIOC_S_CROP); */
877         }
878
879         if (crop->type == V4L2_BUF_TYPE_VIDEO_OUTPUT &&
880             (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT)) {
881                 if (streamtype == IVTV_DEC_STREAM_TYPE_YUV) {
882                         yi->main_rect = crop->c;
883                         return 0;
884                 } else {
885                         if (!ivtv_vapi(itv, CX2341X_OSD_SET_FRAMEBUFFER_WINDOW, 4,
886                                 crop->c.width, crop->c.height, crop->c.left, crop->c.top)) {
887                                 itv->main_rect = crop->c;
888                                 return 0;
889                         }
890                 }
891                 return -EINVAL;
892         }
893         return -EINVAL;
894 }
895
896 static int ivtv_g_crop(struct file *file, void *fh, struct v4l2_crop *crop)
897 {
898         struct ivtv_open_id *id = fh;
899         struct ivtv *itv = id->itv;
900         struct yuv_playback_info *yi = &itv->yuv_info;
901         int streamtype;
902
903         streamtype = id->type;
904
905         if (crop->type == V4L2_BUF_TYPE_VIDEO_OUTPUT &&
906             (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT)) {
907                 if (streamtype == IVTV_DEC_STREAM_TYPE_YUV)
908                         crop->c = yi->main_rect;
909                 else
910                         crop->c = itv->main_rect;
911                 return 0;
912         }
913         return -EINVAL;
914 }
915
916 static int ivtv_enum_fmt_vid_cap(struct file *file, void *fh, struct v4l2_fmtdesc *fmt)
917 {
918         static struct v4l2_fmtdesc formats[] = {
919                 { 0, 0, 0,
920                   "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12,
921                   { 0, 0, 0, 0 }
922                 },
923                 { 1, 0, V4L2_FMT_FLAG_COMPRESSED,
924                   "MPEG", V4L2_PIX_FMT_MPEG,
925                   { 0, 0, 0, 0 }
926                 }
927         };
928         enum v4l2_buf_type type = fmt->type;
929
930         if (fmt->index > 1)
931                 return -EINVAL;
932
933         *fmt = formats[fmt->index];
934         fmt->type = type;
935         return 0;
936 }
937
938 static int ivtv_enum_fmt_vid_out(struct file *file, void *fh, struct v4l2_fmtdesc *fmt)
939 {
940         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
941
942         static struct v4l2_fmtdesc formats[] = {
943                 { 0, 0, 0,
944                   "HM12 (YUV 4:2:0)", V4L2_PIX_FMT_HM12,
945                   { 0, 0, 0, 0 }
946                 },
947                 { 1, 0, V4L2_FMT_FLAG_COMPRESSED,
948                   "MPEG", V4L2_PIX_FMT_MPEG,
949                   { 0, 0, 0, 0 }
950                 }
951         };
952         enum v4l2_buf_type type = fmt->type;
953
954         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
955                 return -EINVAL;
956
957         if (fmt->index > 1)
958                 return -EINVAL;
959
960         *fmt = formats[fmt->index];
961         fmt->type = type;
962
963         return 0;
964 }
965
966 static int ivtv_g_input(struct file *file, void *fh, unsigned int *i)
967 {
968         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
969
970         *i = itv->active_input;
971
972         return 0;
973 }
974
975 int ivtv_s_input(struct file *file, void *fh, unsigned int inp)
976 {
977         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
978
979         if (inp < 0 || inp >= itv->nof_inputs)
980                 return -EINVAL;
981
982         if (inp == itv->active_input) {
983                 IVTV_DEBUG_INFO("Input unchanged\n");
984                 return 0;
985         }
986
987         if (atomic_read(&itv->capturing) > 0) {
988                 return -EBUSY;
989         }
990
991         IVTV_DEBUG_INFO("Changing input from %d to %d\n",
992                         itv->active_input, inp);
993
994         itv->active_input = inp;
995         /* Set the audio input to whatever is appropriate for the
996            input type. */
997         itv->audio_input = itv->card->video_inputs[inp].audio_index;
998
999         /* prevent others from messing with the streams until
1000            we're finished changing inputs. */
1001         ivtv_mute(itv);
1002         ivtv_video_set_io(itv);
1003         ivtv_audio_set_io(itv);
1004         ivtv_unmute(itv);
1005
1006         return 0;
1007 }
1008
1009 static int ivtv_g_output(struct file *file, void *fh, unsigned int *i)
1010 {
1011         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1012
1013         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1014                 return -EINVAL;
1015
1016         *i = itv->active_output;
1017
1018         return 0;
1019 }
1020
1021 static int ivtv_s_output(struct file *file, void *fh, unsigned int outp)
1022 {
1023         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1024         struct v4l2_routing route;
1025
1026         if (outp >= itv->card->nof_outputs)
1027                 return -EINVAL;
1028
1029         if (outp == itv->active_output) {
1030                 IVTV_DEBUG_INFO("Output unchanged\n");
1031                 return 0;
1032         }
1033         IVTV_DEBUG_INFO("Changing output from %d to %d\n",
1034                    itv->active_output, outp);
1035
1036         itv->active_output = outp;
1037         route.input = SAA7127_INPUT_TYPE_NORMAL;
1038         route.output = itv->card->video_outputs[outp].video_output;
1039         ivtv_saa7127(itv, VIDIOC_INT_S_VIDEO_ROUTING, &route);
1040
1041         return 0;
1042 }
1043
1044 static int ivtv_g_frequency(struct file *file, void *fh, struct v4l2_frequency *vf)
1045 {
1046         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1047
1048         if (vf->tuner != 0)
1049                 return -EINVAL;
1050
1051         ivtv_call_i2c_clients(itv, VIDIOC_G_FREQUENCY, vf);
1052         return 0;
1053 }
1054
1055 int ivtv_s_frequency(struct file *file, void *fh, struct v4l2_frequency *vf)
1056 {
1057         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1058
1059         if (vf->tuner != 0)
1060                 return -EINVAL;
1061
1062         ivtv_mute(itv);
1063         IVTV_DEBUG_INFO("v4l2 ioctl: set frequency %d\n", vf->frequency);
1064         ivtv_call_i2c_clients(itv, VIDIOC_S_FREQUENCY, vf);
1065         ivtv_unmute(itv);
1066         return 0;
1067 }
1068
1069 static int ivtv_g_std(struct file *file, void *fh, v4l2_std_id *std)
1070 {
1071         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1072
1073         *std = itv->std;
1074         return 0;
1075 }
1076
1077 int ivtv_s_std(struct file *file, void *fh, v4l2_std_id *std)
1078 {
1079         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1080         struct yuv_playback_info *yi = &itv->yuv_info;
1081
1082         if ((*std & V4L2_STD_ALL) == 0)
1083                 return -EINVAL;
1084
1085         if (*std == itv->std)
1086                 return 0;
1087
1088         if (test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags) ||
1089             atomic_read(&itv->capturing) > 0 ||
1090             atomic_read(&itv->decoding) > 0) {
1091                 /* Switching standard would turn off the radio or mess
1092                    with already running streams, prevent that by
1093                    returning EBUSY. */
1094                 return -EBUSY;
1095         }
1096
1097         itv->std = *std;
1098         itv->is_60hz = (*std & V4L2_STD_525_60) ? 1 : 0;
1099         itv->params.is_50hz = itv->is_50hz = !itv->is_60hz;
1100         itv->params.width = 720;
1101         itv->params.height = itv->is_50hz ? 576 : 480;
1102         itv->vbi.count = itv->is_50hz ? 18 : 12;
1103         itv->vbi.start[0] = itv->is_50hz ? 6 : 10;
1104         itv->vbi.start[1] = itv->is_50hz ? 318 : 273;
1105
1106         if (itv->hw_flags & IVTV_HW_CX25840)
1107                 itv->vbi.sliced_decoder_line_size = itv->is_60hz ? 272 : 284;
1108
1109         IVTV_DEBUG_INFO("Switching standard to %llx.\n", (unsigned long long)itv->std);
1110
1111         /* Tuner */
1112         ivtv_call_i2c_clients(itv, VIDIOC_S_STD, &itv->std);
1113
1114         if (itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT) {
1115                 /* set display standard */
1116                 itv->std_out = *std;
1117                 itv->is_out_60hz = itv->is_60hz;
1118                 itv->is_out_50hz = itv->is_50hz;
1119                 ivtv_call_i2c_clients(itv, VIDIOC_INT_S_STD_OUTPUT, &itv->std_out);
1120                 ivtv_vapi(itv, CX2341X_DEC_SET_STANDARD, 1, itv->is_out_50hz);
1121                 itv->main_rect.left = itv->main_rect.top = 0;
1122                 itv->main_rect.width = 720;
1123                 itv->main_rect.height = itv->params.height;
1124                 ivtv_vapi(itv, CX2341X_OSD_SET_FRAMEBUFFER_WINDOW, 4,
1125                         720, itv->main_rect.height, 0, 0);
1126                 yi->main_rect = itv->main_rect;
1127                 if (!itv->osd_info) {
1128                         yi->osd_full_w = 720;
1129                         yi->osd_full_h = itv->is_out_50hz ? 576 : 480;
1130                 }
1131         }
1132         return 0;
1133 }
1134
1135 static int ivtv_s_tuner(struct file *file, void *fh, struct v4l2_tuner *vt)
1136 {
1137         struct ivtv_open_id *id = fh;
1138         struct ivtv *itv = id->itv;
1139
1140         if (vt->index != 0)
1141                 return -EINVAL;
1142
1143         ivtv_call_i2c_clients(itv, VIDIOC_S_TUNER, vt);
1144
1145         return 0;
1146 }
1147
1148 static int ivtv_g_tuner(struct file *file, void *fh, struct v4l2_tuner *vt)
1149 {
1150         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1151
1152         if (vt->index != 0)
1153                 return -EINVAL;
1154
1155         ivtv_call_i2c_clients(itv, VIDIOC_G_TUNER, vt);
1156
1157         if (test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags)) {
1158                 strlcpy(vt->name, "ivtv Radio Tuner", sizeof(vt->name));
1159                 vt->type = V4L2_TUNER_RADIO;
1160         } else {
1161                 strlcpy(vt->name, "ivtv TV Tuner", sizeof(vt->name));
1162                 vt->type = V4L2_TUNER_ANALOG_TV;
1163         }
1164
1165         return 0;
1166 }
1167
1168 static int ivtv_g_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_sliced_vbi_cap *cap)
1169 {
1170         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1171         int set = itv->is_50hz ? V4L2_SLICED_VBI_625 : V4L2_SLICED_VBI_525;
1172         int f, l;
1173
1174         if (cap->type == V4L2_BUF_TYPE_SLICED_VBI_CAPTURE) {
1175                 for (f = 0; f < 2; f++) {
1176                         for (l = 0; l < 24; l++) {
1177                                 if (valid_service_line(f, l, itv->is_50hz))
1178                                         cap->service_lines[f][l] = set;
1179                         }
1180                 }
1181                 return 0;
1182         }
1183         if (cap->type == V4L2_BUF_TYPE_SLICED_VBI_OUTPUT) {
1184                 if (!(itv->v4l2_cap & V4L2_CAP_SLICED_VBI_OUTPUT))
1185                         return -EINVAL;
1186                 if (itv->is_60hz) {
1187                         cap->service_lines[0][21] = V4L2_SLICED_CAPTION_525;
1188                         cap->service_lines[1][21] = V4L2_SLICED_CAPTION_525;
1189                 } else {
1190                         cap->service_lines[0][23] = V4L2_SLICED_WSS_625;
1191                         cap->service_lines[0][16] = V4L2_SLICED_VPS;
1192                 }
1193                 return 0;
1194         }
1195         return -EINVAL;
1196 }
1197
1198 static int ivtv_g_enc_index(struct file *file, void *fh, struct v4l2_enc_idx *idx)
1199 {
1200         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1201         struct v4l2_enc_idx_entry *e = idx->entry;
1202         int entries;
1203         int i;
1204
1205         entries = (itv->pgm_info_write_idx + IVTV_MAX_PGM_INDEX - itv->pgm_info_read_idx) %
1206                                 IVTV_MAX_PGM_INDEX;
1207         if (entries > V4L2_ENC_IDX_ENTRIES)
1208                 entries = V4L2_ENC_IDX_ENTRIES;
1209         idx->entries = 0;
1210         for (i = 0; i < entries; i++) {
1211                 *e = itv->pgm_info[(itv->pgm_info_read_idx + i) % IVTV_MAX_PGM_INDEX];
1212                 if ((e->flags & V4L2_ENC_IDX_FRAME_MASK) <= V4L2_ENC_IDX_FRAME_B) {
1213                         idx->entries++;
1214                         e++;
1215                 }
1216         }
1217         itv->pgm_info_read_idx = (itv->pgm_info_read_idx + idx->entries) % IVTV_MAX_PGM_INDEX;
1218         return 0;
1219 }
1220
1221 static int ivtv_encoder_cmd(struct file *file, void *fh, struct v4l2_encoder_cmd *enc)
1222 {
1223         struct ivtv_open_id *id = fh;
1224         struct ivtv *itv = id->itv;
1225
1226
1227         switch (enc->cmd) {
1228         case V4L2_ENC_CMD_START:
1229                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_START\n");
1230                 enc->flags = 0;
1231                 return ivtv_start_capture(id);
1232
1233         case V4L2_ENC_CMD_STOP:
1234                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_STOP\n");
1235                 enc->flags &= V4L2_ENC_CMD_STOP_AT_GOP_END;
1236                 ivtv_stop_capture(id, enc->flags & V4L2_ENC_CMD_STOP_AT_GOP_END);
1237                 return 0;
1238
1239         case V4L2_ENC_CMD_PAUSE:
1240                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_PAUSE\n");
1241                 enc->flags = 0;
1242
1243                 if (!atomic_read(&itv->capturing))
1244                         return -EPERM;
1245                 if (test_and_set_bit(IVTV_F_I_ENC_PAUSED, &itv->i_flags))
1246                         return 0;
1247
1248                 ivtv_mute(itv);
1249                 ivtv_vapi(itv, CX2341X_ENC_PAUSE_ENCODER, 1, 0);
1250                 break;
1251
1252         case V4L2_ENC_CMD_RESUME:
1253                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_RESUME\n");
1254                 enc->flags = 0;
1255
1256                 if (!atomic_read(&itv->capturing))
1257                         return -EPERM;
1258
1259                 if (!test_and_clear_bit(IVTV_F_I_ENC_PAUSED, &itv->i_flags))
1260                         return 0;
1261
1262                 ivtv_vapi(itv, CX2341X_ENC_PAUSE_ENCODER, 1, 1);
1263                 ivtv_unmute(itv);
1264                 break;
1265         default:
1266                 IVTV_DEBUG_IOCTL("Unknown cmd %d\n", enc->cmd);
1267                 return -EINVAL;
1268         }
1269
1270         return 0;
1271 }
1272
1273 static int ivtv_try_encoder_cmd(struct file *file, void *fh, struct v4l2_encoder_cmd *enc)
1274 {
1275         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1276
1277         switch (enc->cmd) {
1278         case V4L2_ENC_CMD_START:
1279                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_START\n");
1280                 enc->flags = 0;
1281                 return 0;
1282
1283         case V4L2_ENC_CMD_STOP:
1284                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_STOP\n");
1285                 enc->flags &= V4L2_ENC_CMD_STOP_AT_GOP_END;
1286                 return 0;
1287
1288         case V4L2_ENC_CMD_PAUSE:
1289                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_PAUSE\n");
1290                 enc->flags = 0;
1291                 return 0;
1292
1293         case V4L2_ENC_CMD_RESUME:
1294                 IVTV_DEBUG_IOCTL("V4L2_ENC_CMD_RESUME\n");
1295                 enc->flags = 0;
1296                 return 0;
1297         default:
1298                 IVTV_DEBUG_IOCTL("Unknown cmd %d\n", enc->cmd);
1299                 return -EINVAL;
1300         }
1301 }
1302
1303 static int ivtv_g_fbuf(struct file *file, void *fh, struct v4l2_framebuffer *fb)
1304 {
1305         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1306         u32 data[CX2341X_MBOX_MAX_DATA];
1307         struct yuv_playback_info *yi = &itv->yuv_info;
1308
1309         int pixfmt;
1310         static u32 pixel_format[16] = {
1311                 V4L2_PIX_FMT_PAL8, /* Uses a 256-entry RGB colormap */
1312                 V4L2_PIX_FMT_RGB565,
1313                 V4L2_PIX_FMT_RGB555,
1314                 V4L2_PIX_FMT_RGB444,
1315                 V4L2_PIX_FMT_RGB32,
1316                 0,
1317                 0,
1318                 0,
1319                 V4L2_PIX_FMT_PAL8, /* Uses a 256-entry YUV colormap */
1320                 V4L2_PIX_FMT_YUV565,
1321                 V4L2_PIX_FMT_YUV555,
1322                 V4L2_PIX_FMT_YUV444,
1323                 V4L2_PIX_FMT_YUV32,
1324                 0,
1325                 0,
1326                 0,
1327         };
1328
1329         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT_OVERLAY))
1330                 return -EINVAL;
1331         if (!itv->osd_video_pbase)
1332                 return -EINVAL;
1333
1334         fb->capability = V4L2_FBUF_CAP_EXTERNOVERLAY | V4L2_FBUF_CAP_CHROMAKEY |
1335                 V4L2_FBUF_CAP_GLOBAL_ALPHA;
1336
1337         ivtv_vapi_result(itv, data, CX2341X_OSD_GET_STATE, 0);
1338         data[0] |= (read_reg(0x2a00) >> 7) & 0x40;
1339         pixfmt = (data[0] >> 3) & 0xf;
1340
1341         fb->fmt.pixelformat = pixel_format[pixfmt];
1342         fb->fmt.width = itv->osd_rect.width;
1343         fb->fmt.height = itv->osd_rect.height;
1344         fb->fmt.field = V4L2_FIELD_INTERLACED;
1345         fb->fmt.bytesperline = fb->fmt.width;
1346         fb->fmt.colorspace = V4L2_COLORSPACE_SMPTE170M;
1347         fb->fmt.field = V4L2_FIELD_INTERLACED;
1348         fb->fmt.priv = 0;
1349         if (fb->fmt.pixelformat != V4L2_PIX_FMT_PAL8)
1350                 fb->fmt.bytesperline *= 2;
1351         if (fb->fmt.pixelformat == V4L2_PIX_FMT_RGB32 ||
1352             fb->fmt.pixelformat == V4L2_PIX_FMT_YUV32)
1353                 fb->fmt.bytesperline *= 2;
1354         fb->fmt.sizeimage = fb->fmt.bytesperline * fb->fmt.height;
1355         fb->base = (void *)itv->osd_video_pbase;
1356         fb->flags = 0;
1357
1358         if (itv->osd_chroma_key_state)
1359                 fb->flags |= V4L2_FBUF_FLAG_CHROMAKEY;
1360
1361         if (itv->osd_global_alpha_state)
1362                 fb->flags |= V4L2_FBUF_FLAG_GLOBAL_ALPHA;
1363
1364         if (yi->track_osd)
1365                 fb->flags |= V4L2_FBUF_FLAG_OVERLAY;
1366
1367         pixfmt &= 7;
1368
1369         /* no local alpha for RGB565 or unknown formats */
1370         if (pixfmt == 1 || pixfmt > 4)
1371                 return 0;
1372
1373         /* 16-bit formats have inverted local alpha */
1374         if (pixfmt == 2 || pixfmt == 3)
1375                 fb->capability |= V4L2_FBUF_CAP_LOCAL_INV_ALPHA;
1376         else
1377                 fb->capability |= V4L2_FBUF_CAP_LOCAL_ALPHA;
1378
1379         if (itv->osd_local_alpha_state) {
1380                 /* 16-bit formats have inverted local alpha */
1381                 if (pixfmt == 2 || pixfmt == 3)
1382                         fb->flags |= V4L2_FBUF_FLAG_LOCAL_INV_ALPHA;
1383                 else
1384                         fb->flags |= V4L2_FBUF_FLAG_LOCAL_ALPHA;
1385         }
1386
1387         return 0;
1388 }
1389
1390 static int ivtv_s_fbuf(struct file *file, void *fh, struct v4l2_framebuffer *fb)
1391 {
1392         struct ivtv_open_id *id = fh;
1393         struct ivtv *itv = id->itv;
1394         struct yuv_playback_info *yi = &itv->yuv_info;
1395
1396         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT_OVERLAY))
1397                 return -EINVAL;
1398         if (!itv->osd_video_pbase)
1399                 return -EINVAL;
1400
1401         itv->osd_global_alpha_state = (fb->flags & V4L2_FBUF_FLAG_GLOBAL_ALPHA) != 0;
1402         itv->osd_local_alpha_state =
1403                 (fb->flags & (V4L2_FBUF_FLAG_LOCAL_ALPHA|V4L2_FBUF_FLAG_LOCAL_INV_ALPHA)) != 0;
1404         itv->osd_chroma_key_state = (fb->flags & V4L2_FBUF_FLAG_CHROMAKEY) != 0;
1405         ivtv_set_osd_alpha(itv);
1406         yi->track_osd = (fb->flags & V4L2_FBUF_FLAG_OVERLAY) != 0;
1407         return ivtv_g_fbuf(file, fh, fb);
1408 }
1409
1410 static int ivtv_overlay(struct file *file, void *fh, unsigned int on)
1411 {
1412         struct ivtv_open_id *id = fh;
1413         struct ivtv *itv = id->itv;
1414
1415         if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT_OVERLAY))
1416                 return -EINVAL;
1417
1418         ivtv_vapi(itv, CX2341X_OSD_SET_STATE, 1, on != 0);
1419
1420         return 0;
1421 }
1422
1423 static int ivtv_log_status(struct file *file, void *fh)
1424 {
1425         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1426         u32 data[CX2341X_MBOX_MAX_DATA];
1427
1428         int has_output = itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT;
1429         struct v4l2_input vidin;
1430         struct v4l2_audio audin;
1431         int i;
1432
1433         IVTV_INFO("=================  START STATUS CARD #%d  =================\n", itv->num);
1434         IVTV_INFO("Version: %s Card: %s\n", IVTV_VERSION, itv->card_name);
1435         if (itv->hw_flags & IVTV_HW_TVEEPROM) {
1436                 struct tveeprom tv;
1437
1438                 ivtv_read_eeprom(itv, &tv);
1439         }
1440         ivtv_call_i2c_clients(itv, VIDIOC_LOG_STATUS, NULL);
1441         ivtv_get_input(itv, itv->active_input, &vidin);
1442         ivtv_get_audio_input(itv, itv->audio_input, &audin);
1443         IVTV_INFO("Video Input:  %s\n", vidin.name);
1444         IVTV_INFO("Audio Input:  %s%s\n", audin.name,
1445                 (itv->dualwatch_stereo_mode & ~0x300) == 0x200 ? " (Bilingual)" : "");
1446         if (has_output) {
1447                 struct v4l2_output vidout;
1448                 struct v4l2_audioout audout;
1449                 int mode = itv->output_mode;
1450                 static const char * const output_modes[5] = {
1451                         "None",
1452                         "MPEG Streaming",
1453                         "YUV Streaming",
1454                         "YUV Frames",
1455                         "Passthrough",
1456                 };
1457                 static const char * const audio_modes[5] = {
1458                         "Stereo",
1459                         "Left",
1460                         "Right",
1461                         "Mono",
1462                         "Swapped"
1463                 };
1464                 static const char * const alpha_mode[4] = {
1465                         "None",
1466                         "Global",
1467                         "Local",
1468                         "Global and Local"
1469                 };
1470                 static const char * const pixel_format[16] = {
1471                         "ARGB Indexed",
1472                         "RGB 5:6:5",
1473                         "ARGB 1:5:5:5",
1474                         "ARGB 1:4:4:4",
1475                         "ARGB 8:8:8:8",
1476                         "5",
1477                         "6",
1478                         "7",
1479                         "AYUV Indexed",
1480                         "YUV 5:6:5",
1481                         "AYUV 1:5:5:5",
1482                         "AYUV 1:4:4:4",
1483                         "AYUV 8:8:8:8",
1484                         "13",
1485                         "14",
1486                         "15",
1487                 };
1488
1489                 ivtv_get_output(itv, itv->active_output, &vidout);
1490                 ivtv_get_audio_output(itv, 0, &audout);
1491                 IVTV_INFO("Video Output: %s\n", vidout.name);
1492                 IVTV_INFO("Audio Output: %s (Stereo/Bilingual: %s/%s)\n", audout.name,
1493                         audio_modes[itv->audio_stereo_mode],
1494                         audio_modes[itv->audio_bilingual_mode]);
1495                 if (mode < 0 || mode > OUT_PASSTHROUGH)
1496                         mode = OUT_NONE;
1497                 IVTV_INFO("Output Mode:  %s\n", output_modes[mode]);
1498                 ivtv_vapi_result(itv, data, CX2341X_OSD_GET_STATE, 0);
1499                 data[0] |= (read_reg(0x2a00) >> 7) & 0x40;
1500                 IVTV_INFO("Overlay:      %s, Alpha: %s, Pixel Format: %s\n",
1501                         data[0] & 1 ? "On" : "Off",
1502                         alpha_mode[(data[0] >> 1) & 0x3],
1503                         pixel_format[(data[0] >> 3) & 0xf]);
1504         }
1505         IVTV_INFO("Tuner:  %s\n",
1506                 test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags) ? "Radio" : "TV");
1507         cx2341x_log_status(&itv->params, itv->name);
1508         IVTV_INFO("Status flags:    0x%08lx\n", itv->i_flags);
1509         for (i = 0; i < IVTV_MAX_STREAMS; i++) {
1510                 struct ivtv_stream *s = &itv->streams[i];
1511
1512                 if (s->v4l2dev == NULL || s->buffers == 0)
1513                         continue;
1514                 IVTV_INFO("Stream %s: status 0x%04lx, %d%% of %d KiB (%d buffers) in use\n", s->name, s->s_flags,
1515                                 (s->buffers - s->q_free.buffers) * 100 / s->buffers,
1516                                 (s->buffers * s->buf_size) / 1024, s->buffers);
1517         }
1518
1519         IVTV_INFO("Read MPG/VBI: %lld/%lld bytes\n", (long long)itv->mpg_data_received, (long long)itv->vbi_data_inserted);
1520         IVTV_INFO("==================  END STATUS CARD #%d  ==================\n", itv->num);
1521
1522         return 0;
1523 }
1524
1525 static int ivtv_decoder_ioctls(struct file *filp, unsigned int cmd, void *arg)
1526 {
1527         struct ivtv_open_id *id = (struct ivtv_open_id *)filp->private_data;
1528         struct ivtv *itv = id->itv;
1529         int nonblocking = filp->f_flags & O_NONBLOCK;
1530         struct ivtv_stream *s = &itv->streams[id->type];
1531
1532         switch (cmd) {
1533         case IVTV_IOC_DMA_FRAME: {
1534                 struct ivtv_dma_frame *args = arg;
1535
1536                 IVTV_DEBUG_IOCTL("IVTV_IOC_DMA_FRAME\n");
1537                 if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1538                         return -EINVAL;
1539                 if (args->type != V4L2_BUF_TYPE_VIDEO_OUTPUT)
1540                         return -EINVAL;
1541                 if (itv->output_mode == OUT_UDMA_YUV && args->y_source == NULL)
1542                         return 0;
1543                 if (ivtv_start_decoding(id, id->type)) {
1544                         return -EBUSY;
1545                 }
1546                 if (ivtv_set_output_mode(itv, OUT_UDMA_YUV) != OUT_UDMA_YUV) {
1547                         ivtv_release_stream(s);
1548                         return -EBUSY;
1549                 }
1550                 /* Mark that this file handle started the UDMA_YUV mode */
1551                 id->yuv_frames = 1;
1552                 if (args->y_source == NULL)
1553                         return 0;
1554                 return ivtv_yuv_prep_frame(itv, args);
1555         }
1556
1557         case VIDEO_GET_PTS: {
1558                 u32 data[CX2341X_MBOX_MAX_DATA];
1559                 u64 *pts = arg;
1560
1561                 IVTV_DEBUG_IOCTL("VIDEO_GET_PTS\n");
1562                 if (s->type < IVTV_DEC_STREAM_TYPE_MPG) {
1563                         *pts = s->dma_pts;
1564                         break;
1565                 }
1566                 if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1567                         return -EINVAL;
1568
1569                 if (test_bit(IVTV_F_I_VALID_DEC_TIMINGS, &itv->i_flags)) {
1570                         *pts = (u64) ((u64)itv->last_dec_timing[2] << 32) |
1571                                         (u64)itv->last_dec_timing[1];
1572                         break;
1573                 }
1574                 *pts = 0;
1575                 if (atomic_read(&itv->decoding)) {
1576                         if (ivtv_api(itv, CX2341X_DEC_GET_TIMING_INFO, 5, data)) {
1577                                 IVTV_DEBUG_WARN("GET_TIMING: couldn't read clock\n");
1578                                 return -EIO;
1579                         }
1580                         memcpy(itv->last_dec_timing, data, sizeof(itv->last_dec_timing));
1581                         set_bit(IVTV_F_I_VALID_DEC_TIMINGS, &itv->i_flags);
1582                         *pts = (u64) ((u64) data[2] << 32) | (u64) data[1];
1583                         /*timing->scr = (u64) (((u64) data[4] << 32) | (u64) (data[3]));*/
1584                 }
1585                 break;
1586         }
1587
1588         case VIDEO_GET_FRAME_COUNT: {
1589                 u32 data[CX2341X_MBOX_MAX_DATA];
1590                 u64 *frame = arg;
1591
1592                 IVTV_DEBUG_IOCTL("VIDEO_GET_FRAME_COUNT\n");
1593                 if (s->type < IVTV_DEC_STREAM_TYPE_MPG) {
1594                         *frame = 0;
1595                         break;
1596                 }
1597                 if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1598                         return -EINVAL;
1599
1600                 if (test_bit(IVTV_F_I_VALID_DEC_TIMINGS, &itv->i_flags)) {
1601                         *frame = itv->last_dec_timing[0];
1602                         break;
1603                 }
1604                 *frame = 0;
1605                 if (atomic_read(&itv->decoding)) {
1606                         if (ivtv_api(itv, CX2341X_DEC_GET_TIMING_INFO, 5, data)) {
1607                                 IVTV_DEBUG_WARN("GET_TIMING: couldn't read clock\n");
1608                                 return -EIO;
1609                         }
1610                         memcpy(itv->last_dec_timing, data, sizeof(itv->last_dec_timing));
1611                         set_bit(IVTV_F_I_VALID_DEC_TIMINGS, &itv->i_flags);
1612                         *frame = data[0];
1613                 }
1614                 break;
1615         }
1616
1617         case VIDEO_PLAY: {
1618                 struct video_command vc;
1619
1620                 IVTV_DEBUG_IOCTL("VIDEO_PLAY\n");
1621                 memset(&vc, 0, sizeof(vc));
1622                 vc.cmd = VIDEO_CMD_PLAY;
1623                 return ivtv_video_command(itv, id, &vc, 0);
1624         }
1625
1626         case VIDEO_STOP: {
1627                 struct video_command vc;
1628
1629                 IVTV_DEBUG_IOCTL("VIDEO_STOP\n");
1630                 memset(&vc, 0, sizeof(vc));
1631                 vc.cmd = VIDEO_CMD_STOP;
1632                 vc.flags = VIDEO_CMD_STOP_TO_BLACK | VIDEO_CMD_STOP_IMMEDIATELY;
1633                 return ivtv_video_command(itv, id, &vc, 0);
1634         }
1635
1636         case VIDEO_FREEZE: {
1637                 struct video_command vc;
1638
1639                 IVTV_DEBUG_IOCTL("VIDEO_FREEZE\n");
1640                 memset(&vc, 0, sizeof(vc));
1641                 vc.cmd = VIDEO_CMD_FREEZE;
1642                 return ivtv_video_command(itv, id, &vc, 0);
1643         }
1644
1645         case VIDEO_CONTINUE: {
1646                 struct video_command vc;
1647
1648                 IVTV_DEBUG_IOCTL("VIDEO_CONTINUE\n");
1649                 memset(&vc, 0, sizeof(vc));
1650                 vc.cmd = VIDEO_CMD_CONTINUE;
1651                 return ivtv_video_command(itv, id, &vc, 0);
1652         }
1653
1654         case VIDEO_COMMAND:
1655         case VIDEO_TRY_COMMAND: {
1656                 struct video_command *vc = arg;
1657                 int try = (cmd == VIDEO_TRY_COMMAND);
1658
1659                 if (try)
1660                         IVTV_DEBUG_IOCTL("VIDEO_TRY_COMMAND %d\n", vc->cmd);
1661                 else
1662                         IVTV_DEBUG_IOCTL("VIDEO_COMMAND %d\n", vc->cmd);
1663                 return ivtv_video_command(itv, id, vc, try);
1664         }
1665
1666         case VIDEO_GET_EVENT: {
1667                 struct video_event *ev = arg;
1668                 DEFINE_WAIT(wait);
1669
1670                 IVTV_DEBUG_IOCTL("VIDEO_GET_EVENT\n");
1671                 if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1672                         return -EINVAL;
1673                 memset(ev, 0, sizeof(*ev));
1674                 set_bit(IVTV_F_I_EV_VSYNC_ENABLED, &itv->i_flags);
1675
1676                 while (1) {
1677                         if (test_and_clear_bit(IVTV_F_I_EV_DEC_STOPPED, &itv->i_flags))
1678                                 ev->type = VIDEO_EVENT_DECODER_STOPPED;
1679                         else if (test_and_clear_bit(IVTV_F_I_EV_VSYNC, &itv->i_flags)) {
1680                                 ev->type = VIDEO_EVENT_VSYNC;
1681                                 ev->u.vsync_field = test_bit(IVTV_F_I_EV_VSYNC_FIELD, &itv->i_flags) ?
1682                                         VIDEO_VSYNC_FIELD_ODD : VIDEO_VSYNC_FIELD_EVEN;
1683                                 if (itv->output_mode == OUT_UDMA_YUV &&
1684                                         (itv->yuv_info.lace_mode & IVTV_YUV_MODE_MASK) ==
1685                                                                 IVTV_YUV_MODE_PROGRESSIVE) {
1686                                         ev->u.vsync_field = VIDEO_VSYNC_FIELD_PROGRESSIVE;
1687                                 }
1688                         }
1689                         if (ev->type)
1690                                 return 0;
1691                         if (nonblocking)
1692                                 return -EAGAIN;
1693                         /* Wait for event. Note that serialize_lock is locked,
1694                            so to allow other processes to access the driver while
1695                            we are waiting unlock first and later lock again. */
1696                         mutex_unlock(&itv->serialize_lock);
1697                         prepare_to_wait(&itv->event_waitq, &wait, TASK_INTERRUPTIBLE);
1698                         if ((itv->i_flags & (IVTV_F_I_EV_DEC_STOPPED|IVTV_F_I_EV_VSYNC)) == 0)
1699                                 schedule();
1700                         finish_wait(&itv->event_waitq, &wait);
1701                         mutex_lock(&itv->serialize_lock);
1702                         if (signal_pending(current)) {
1703                                 /* return if a signal was received */
1704                                 IVTV_DEBUG_INFO("User stopped wait for event\n");
1705                                 return -EINTR;
1706                         }
1707                 }
1708                 break;
1709         }
1710
1711         default:
1712                 return -EINVAL;
1713         }
1714         return 0;
1715 }
1716
1717 static int ivtv_default(struct file *file, void *fh, int cmd, void *arg)
1718 {
1719         struct ivtv *itv = ((struct ivtv_open_id *)fh)->itv;
1720
1721         switch (cmd) {
1722         case VIDIOC_INT_S_AUDIO_ROUTING: {
1723                 struct v4l2_routing *route = arg;
1724
1725                 ivtv_i2c_hw(itv, itv->card->hw_audio, VIDIOC_INT_S_AUDIO_ROUTING, route);
1726                 break;
1727         }
1728
1729         case VIDIOC_INT_RESET: {
1730                 u32 val = *(u32 *)arg;
1731
1732                 if ((val == 0 && itv->options.newi2c) || (val & 0x01))
1733                         ivtv_reset_ir_gpio(itv);
1734                 if (val & 0x02)
1735                         itv->video_dec_func(itv, cmd, NULL);
1736                 break;
1737         }
1738
1739         default:
1740                 return -EINVAL;
1741         }
1742         return 0;
1743 }
1744
1745 static int ivtv_serialized_ioctl(struct ivtv *itv, struct inode *inode, struct file *filp,
1746                 unsigned int cmd, unsigned long arg)
1747 {
1748         struct video_device *vfd = video_devdata(filp);
1749         struct ivtv_open_id *id = (struct ivtv_open_id *)filp->private_data;
1750         int ret;
1751
1752         /* Filter dvb ioctls that cannot be handled by the v4l ioctl framework */
1753         switch (cmd) {
1754         case VIDEO_SELECT_SOURCE:
1755                 IVTV_DEBUG_IOCTL("VIDEO_SELECT_SOURCE\n");
1756                 if (!(itv->v4l2_cap & V4L2_CAP_VIDEO_OUTPUT))
1757                         return -EINVAL;
1758                 return ivtv_passthrough_mode(itv, arg == VIDEO_SOURCE_DEMUX);
1759
1760         case AUDIO_SET_MUTE:
1761                 IVTV_DEBUG_IOCTL("AUDIO_SET_MUTE\n");
1762                 itv->speed_mute_audio = arg;
1763                 return 0;
1764
1765         case AUDIO_CHANNEL_SELECT:
1766                 IVTV_DEBUG_IOCTL("AUDIO_CHANNEL_SELECT\n");
1767                 if (arg > AUDIO_STEREO_SWAPPED)
1768                         return -EINVAL;
1769                 itv->audio_stereo_mode = arg;
1770                 ivtv_vapi(itv, CX2341X_DEC_SET_AUDIO_MODE, 2, itv->audio_bilingual_mode, itv->audio_stereo_mode);
1771                 return 0;
1772
1773         case AUDIO_BILINGUAL_CHANNEL_SELECT:
1774                 IVTV_DEBUG_IOCTL("AUDIO_BILINGUAL_CHANNEL_SELECT\n");
1775                 if (arg > AUDIO_STEREO_SWAPPED)
1776                         return -EINVAL;
1777                 itv->audio_bilingual_mode = arg;
1778                 ivtv_vapi(itv, CX2341X_DEC_SET_AUDIO_MODE, 2, itv->audio_bilingual_mode, itv->audio_stereo_mode);
1779                 return 0;
1780
1781         case IVTV_IOC_DMA_FRAME:
1782         case VIDEO_GET_PTS:
1783         case VIDEO_GET_FRAME_COUNT:
1784         case VIDEO_GET_EVENT:
1785         case VIDEO_PLAY:
1786         case VIDEO_STOP:
1787         case VIDEO_FREEZE:
1788         case VIDEO_CONTINUE:
1789         case VIDEO_COMMAND:
1790         case VIDEO_TRY_COMMAND:
1791                 return ivtv_decoder_ioctls(filp, cmd, (void *)arg);
1792
1793         default:
1794                 break;
1795         }
1796
1797         /* check priority */
1798         switch (cmd) {
1799         case VIDIOC_S_CTRL:
1800         case VIDIOC_S_STD:
1801         case VIDIOC_S_INPUT:
1802         case VIDIOC_S_OUTPUT:
1803         case VIDIOC_S_TUNER:
1804         case VIDIOC_S_FREQUENCY:
1805         case VIDIOC_S_FMT:
1806         case VIDIOC_S_CROP:
1807         case VIDIOC_S_AUDIO:
1808         case VIDIOC_S_AUDOUT:
1809         case VIDIOC_S_EXT_CTRLS:
1810         case VIDIOC_S_FBUF:
1811         case VIDIOC_OVERLAY:
1812                 ret = v4l2_prio_check(&itv->prio, &id->prio);
1813                 if (ret)
1814                         return ret;
1815         }
1816
1817         if (ivtv_debug & IVTV_DBGFLG_IOCTL)
1818                 vfd->debug = V4L2_DEBUG_IOCTL | V4L2_DEBUG_IOCTL_ARG;
1819         ret = video_ioctl2(inode, filp, cmd, arg);
1820         vfd->debug = 0;
1821         return ret;
1822 }
1823
1824 int ivtv_v4l2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
1825                     unsigned long arg)
1826 {
1827         struct ivtv_open_id *id = (struct ivtv_open_id *)filp->private_data;
1828         struct ivtv *itv = id->itv;
1829         int res;
1830
1831         mutex_lock(&itv->serialize_lock);
1832         res = ivtv_serialized_ioctl(itv, inode, filp, cmd, arg);
1833         mutex_unlock(&itv->serialize_lock);
1834         return res;
1835 }
1836
1837 static const struct v4l2_ioctl_ops ivtv_ioctl_ops = {
1838         .vidioc_querycap                    = ivtv_querycap,
1839         .vidioc_g_priority                  = ivtv_g_priority,
1840         .vidioc_s_priority                  = ivtv_s_priority,
1841         .vidioc_s_audio                     = ivtv_s_audio,
1842         .vidioc_g_audio                     = ivtv_g_audio,
1843         .vidioc_enumaudio                   = ivtv_enumaudio,
1844         .vidioc_s_audout                    = ivtv_s_audout,
1845         .vidioc_g_audout                    = ivtv_g_audout,
1846         .vidioc_enum_input                  = ivtv_enum_input,
1847         .vidioc_enum_output                 = ivtv_enum_output,
1848         .vidioc_enumaudout                  = ivtv_enumaudout,
1849         .vidioc_cropcap                     = ivtv_cropcap,
1850         .vidioc_s_crop                      = ivtv_s_crop,
1851         .vidioc_g_crop                      = ivtv_g_crop,
1852         .vidioc_g_input                     = ivtv_g_input,
1853         .vidioc_s_input                     = ivtv_s_input,
1854         .vidioc_g_output                    = ivtv_g_output,
1855         .vidioc_s_output                    = ivtv_s_output,
1856         .vidioc_g_frequency                 = ivtv_g_frequency,
1857         .vidioc_s_frequency                 = ivtv_s_frequency,
1858         .vidioc_s_tuner                     = ivtv_s_tuner,
1859         .vidioc_g_tuner                     = ivtv_g_tuner,
1860         .vidioc_g_enc_index                 = ivtv_g_enc_index,
1861         .vidioc_g_fbuf                      = ivtv_g_fbuf,
1862         .vidioc_s_fbuf                      = ivtv_s_fbuf,
1863         .vidioc_g_std                       = ivtv_g_std,
1864         .vidioc_s_std                       = ivtv_s_std,
1865         .vidioc_overlay                     = ivtv_overlay,
1866         .vidioc_log_status                  = ivtv_log_status,
1867         .vidioc_enum_fmt_vid_cap            = ivtv_enum_fmt_vid_cap,
1868         .vidioc_encoder_cmd                 = ivtv_encoder_cmd,
1869         .vidioc_try_encoder_cmd             = ivtv_try_encoder_cmd,
1870         .vidioc_enum_fmt_vid_out            = ivtv_enum_fmt_vid_out,
1871         .vidioc_g_fmt_vid_cap               = ivtv_g_fmt_vid_cap,
1872         .vidioc_g_fmt_vbi_cap               = ivtv_g_fmt_vbi_cap,
1873         .vidioc_g_fmt_sliced_vbi_cap        = ivtv_g_fmt_sliced_vbi_cap,
1874         .vidioc_g_fmt_vid_out               = ivtv_g_fmt_vid_out,
1875         .vidioc_g_fmt_vid_out_overlay       = ivtv_g_fmt_vid_out_overlay,
1876         .vidioc_g_fmt_sliced_vbi_out        = ivtv_g_fmt_sliced_vbi_out,
1877         .vidioc_s_fmt_vid_cap               = ivtv_s_fmt_vid_cap,
1878         .vidioc_s_fmt_vbi_cap               = ivtv_s_fmt_vbi_cap,
1879         .vidioc_s_fmt_sliced_vbi_cap        = ivtv_s_fmt_sliced_vbi_cap,
1880         .vidioc_s_fmt_vid_out               = ivtv_s_fmt_vid_out,
1881         .vidioc_s_fmt_vid_out_overlay       = ivtv_s_fmt_vid_out_overlay,
1882         .vidioc_s_fmt_sliced_vbi_out        = ivtv_s_fmt_sliced_vbi_out,
1883         .vidioc_try_fmt_vid_cap             = ivtv_try_fmt_vid_cap,
1884         .vidioc_try_fmt_vbi_cap             = ivtv_try_fmt_vbi_cap,
1885         .vidioc_try_fmt_sliced_vbi_cap      = ivtv_try_fmt_sliced_vbi_cap,
1886         .vidioc_try_fmt_vid_out             = ivtv_try_fmt_vid_out,
1887         .vidioc_try_fmt_vid_out_overlay     = ivtv_try_fmt_vid_out_overlay,
1888         .vidioc_try_fmt_sliced_vbi_out      = ivtv_try_fmt_sliced_vbi_out,
1889         .vidioc_g_sliced_vbi_cap            = ivtv_g_sliced_vbi_cap,
1890         .vidioc_g_chip_ident                = ivtv_g_chip_ident,
1891 #ifdef CONFIG_VIDEO_ADV_DEBUG
1892         .vidioc_g_register                  = ivtv_g_register,
1893         .vidioc_s_register                  = ivtv_s_register,
1894 #endif
1895         .vidioc_default                     = ivtv_default,
1896         .vidioc_queryctrl                   = ivtv_queryctrl,
1897         .vidioc_querymenu                   = ivtv_querymenu,
1898         .vidioc_g_ext_ctrls                 = ivtv_g_ext_ctrls,
1899         .vidioc_s_ext_ctrls                 = ivtv_s_ext_ctrls,
1900         .vidioc_try_ext_ctrls               = ivtv_try_ext_ctrls,
1901 };
1902
1903 void ivtv_set_funcs(struct video_device *vdev)
1904 {
1905         vdev->ioctl_ops = &ivtv_ioctl_ops;
1906 }