V4L/DVB (6269): V4L: Fix a "scheduling while atomic" bug in saa7134
[safe/jmp/linux-2.6] / drivers / media / video / saa7134 / saa7134-video.c
1 /*
2  *
3  * device driver for philips saa7134 based TV cards
4  * video4linux video interface
5  *
6  * (c) 2001-03 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #include <linux/init.h>
24 #include <linux/list.h>
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/sort.h>
29
30 #include "saa7134-reg.h"
31 #include "saa7134.h"
32 #include <media/v4l2-common.h>
33
34 #ifdef CONFIG_VIDEO_V4L1_COMPAT
35 /* Include V4L1 specific functions. Should be removed soon */
36 #include <linux/videodev.h>
37 #endif
38
39 /* ------------------------------------------------------------------ */
40
41 static unsigned int video_debug   = 0;
42 static unsigned int gbuffers      = 8;
43 static unsigned int noninterlaced = 1;
44 static unsigned int gbufsize      = 720*576*4;
45 static unsigned int gbufsize_max  = 720*576*4;
46 static char secam[] = "--";
47 module_param(video_debug, int, 0644);
48 MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
49 module_param(gbuffers, int, 0444);
50 MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32");
51 module_param(noninterlaced, int, 0644);
52 MODULE_PARM_DESC(noninterlaced,"capture non interlaced video");
53 module_param_string(secam, secam, sizeof(secam), 0644);
54 MODULE_PARM_DESC(secam, "force SECAM variant, either DK,L or Lc");
55
56
57 #define dprintk(fmt, arg...)    if (video_debug) \
58         printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg)
59
60 /* ------------------------------------------------------------------ */
61 /* Defines for Video Output Port Register at address 0x191            */
62
63 /* Bit 0: VIP code T bit polarity */
64
65 #define VP_T_CODE_P_NON_INVERTED        0x00
66 #define VP_T_CODE_P_INVERTED            0x01
67
68 /* ------------------------------------------------------------------ */
69 /* Defines for Video Output Port Register at address 0x195            */
70
71 /* Bit 2: Video output clock delay control */
72
73 #define VP_CLK_CTRL2_NOT_DELAYED        0x00
74 #define VP_CLK_CTRL2_DELAYED            0x04
75
76 /* Bit 1: Video output clock invert control */
77
78 #define VP_CLK_CTRL1_NON_INVERTED       0x00
79 #define VP_CLK_CTRL1_INVERTED           0x02
80
81 /* ------------------------------------------------------------------ */
82 /* Defines for Video Output Port Register at address 0x196            */
83
84 /* Bits 2 to 0: VSYNC pin video vertical sync type */
85
86 #define VP_VS_TYPE_MASK                 0x07
87
88 #define VP_VS_TYPE_OFF                  0x00
89 #define VP_VS_TYPE_V123                 0x01
90 #define VP_VS_TYPE_V_ITU                0x02
91 #define VP_VS_TYPE_VGATE_L              0x03
92 #define VP_VS_TYPE_RESERVED1            0x04
93 #define VP_VS_TYPE_RESERVED2            0x05
94 #define VP_VS_TYPE_F_ITU                0x06
95 #define VP_VS_TYPE_SC_FID               0x07
96
97 /* ------------------------------------------------------------------ */
98 /* data structs for video                                             */
99
100 static int video_out[][9] = {
101         [CCIR656] = { 0x00, 0xb1, 0x00, 0xa1, 0x00, 0x04, 0x06, 0x00, 0x00 },
102 };
103
104 static struct saa7134_format formats[] = {
105         {
106                 .name     = "8 bpp gray",
107                 .fourcc   = V4L2_PIX_FMT_GREY,
108                 .depth    = 8,
109                 .pm       = 0x06,
110         },{
111                 .name     = "15 bpp RGB, le",
112                 .fourcc   = V4L2_PIX_FMT_RGB555,
113                 .depth    = 16,
114                 .pm       = 0x13 | 0x80,
115         },{
116                 .name     = "15 bpp RGB, be",
117                 .fourcc   = V4L2_PIX_FMT_RGB555X,
118                 .depth    = 16,
119                 .pm       = 0x13 | 0x80,
120                 .bswap    = 1,
121         },{
122                 .name     = "16 bpp RGB, le",
123                 .fourcc   = V4L2_PIX_FMT_RGB565,
124                 .depth    = 16,
125                 .pm       = 0x10 | 0x80,
126         },{
127                 .name     = "16 bpp RGB, be",
128                 .fourcc   = V4L2_PIX_FMT_RGB565X,
129                 .depth    = 16,
130                 .pm       = 0x10 | 0x80,
131                 .bswap    = 1,
132         },{
133                 .name     = "24 bpp RGB, le",
134                 .fourcc   = V4L2_PIX_FMT_BGR24,
135                 .depth    = 24,
136                 .pm       = 0x11,
137         },{
138                 .name     = "24 bpp RGB, be",
139                 .fourcc   = V4L2_PIX_FMT_RGB24,
140                 .depth    = 24,
141                 .pm       = 0x11,
142                 .bswap    = 1,
143         },{
144                 .name     = "32 bpp RGB, le",
145                 .fourcc   = V4L2_PIX_FMT_BGR32,
146                 .depth    = 32,
147                 .pm       = 0x12,
148         },{
149                 .name     = "32 bpp RGB, be",
150                 .fourcc   = V4L2_PIX_FMT_RGB32,
151                 .depth    = 32,
152                 .pm       = 0x12,
153                 .bswap    = 1,
154                 .wswap    = 1,
155         },{
156                 .name     = "4:2:2 packed, YUYV",
157                 .fourcc   = V4L2_PIX_FMT_YUYV,
158                 .depth    = 16,
159                 .pm       = 0x00,
160                 .bswap    = 1,
161                 .yuv      = 1,
162         },{
163                 .name     = "4:2:2 packed, UYVY",
164                 .fourcc   = V4L2_PIX_FMT_UYVY,
165                 .depth    = 16,
166                 .pm       = 0x00,
167                 .yuv      = 1,
168         },{
169                 .name     = "4:2:2 planar, Y-Cb-Cr",
170                 .fourcc   = V4L2_PIX_FMT_YUV422P,
171                 .depth    = 16,
172                 .pm       = 0x09,
173                 .yuv      = 1,
174                 .planar   = 1,
175                 .hshift   = 1,
176                 .vshift   = 0,
177         },{
178                 .name     = "4:2:0 planar, Y-Cb-Cr",
179                 .fourcc   = V4L2_PIX_FMT_YUV420,
180                 .depth    = 12,
181                 .pm       = 0x0a,
182                 .yuv      = 1,
183                 .planar   = 1,
184                 .hshift   = 1,
185                 .vshift   = 1,
186         },{
187                 .name     = "4:2:0 planar, Y-Cb-Cr",
188                 .fourcc   = V4L2_PIX_FMT_YVU420,
189                 .depth    = 12,
190                 .pm       = 0x0a,
191                 .yuv      = 1,
192                 .planar   = 1,
193                 .uvswap   = 1,
194                 .hshift   = 1,
195                 .vshift   = 1,
196         }
197 };
198 #define FORMATS ARRAY_SIZE(formats)
199
200 #define NORM_625_50                     \
201                 .h_start       = 0,     \
202                 .h_stop        = 719,   \
203                 .video_v_start = 24,    \
204                 .video_v_stop  = 311,   \
205                 .vbi_v_start_0 = 7,     \
206                 .vbi_v_stop_0  = 22,    \
207                 .vbi_v_start_1 = 319,   \
208                 .src_timing    = 4
209
210 #define NORM_525_60                     \
211                 .h_start       = 0,     \
212                 .h_stop        = 703,   \
213                 .video_v_start = 23,    \
214                 .video_v_stop  = 262,   \
215                 .vbi_v_start_0 = 10,    \
216                 .vbi_v_stop_0  = 21,    \
217                 .vbi_v_start_1 = 273,   \
218                 .src_timing    = 7
219
220 static struct saa7134_tvnorm tvnorms[] = {
221         {
222                 .name          = "PAL", /* autodetect */
223                 .id            = V4L2_STD_PAL,
224                 NORM_625_50,
225
226                 .sync_control  = 0x18,
227                 .luma_control  = 0x40,
228                 .chroma_ctrl1  = 0x81,
229                 .chroma_gain   = 0x2a,
230                 .chroma_ctrl2  = 0x06,
231                 .vgate_misc    = 0x1c,
232
233         },{
234                 .name          = "PAL-BG",
235                 .id            = V4L2_STD_PAL_BG,
236                 NORM_625_50,
237
238                 .sync_control  = 0x18,
239                 .luma_control  = 0x40,
240                 .chroma_ctrl1  = 0x81,
241                 .chroma_gain   = 0x2a,
242                 .chroma_ctrl2  = 0x06,
243                 .vgate_misc    = 0x1c,
244
245         },{
246                 .name          = "PAL-I",
247                 .id            = V4L2_STD_PAL_I,
248                 NORM_625_50,
249
250                 .sync_control  = 0x18,
251                 .luma_control  = 0x40,
252                 .chroma_ctrl1  = 0x81,
253                 .chroma_gain   = 0x2a,
254                 .chroma_ctrl2  = 0x06,
255                 .vgate_misc    = 0x1c,
256
257         },{
258                 .name          = "PAL-DK",
259                 .id            = V4L2_STD_PAL_DK,
260                 NORM_625_50,
261
262                 .sync_control  = 0x18,
263                 .luma_control  = 0x40,
264                 .chroma_ctrl1  = 0x81,
265                 .chroma_gain   = 0x2a,
266                 .chroma_ctrl2  = 0x06,
267                 .vgate_misc    = 0x1c,
268
269         },{
270                 .name          = "NTSC",
271                 .id            = V4L2_STD_NTSC,
272                 NORM_525_60,
273
274                 .sync_control  = 0x59,
275                 .luma_control  = 0x40,
276                 .chroma_ctrl1  = 0x89,
277                 .chroma_gain   = 0x2a,
278                 .chroma_ctrl2  = 0x0e,
279                 .vgate_misc    = 0x18,
280
281         },{
282                 .name          = "SECAM",
283                 .id            = V4L2_STD_SECAM,
284                 NORM_625_50,
285
286                 .sync_control  = 0x18,
287                 .luma_control  = 0x1b,
288                 .chroma_ctrl1  = 0xd1,
289                 .chroma_gain   = 0x80,
290                 .chroma_ctrl2  = 0x00,
291                 .vgate_misc    = 0x1c,
292
293         },{
294                 .name          = "SECAM-DK",
295                 .id            = V4L2_STD_SECAM_DK,
296                 NORM_625_50,
297
298                 .sync_control  = 0x18,
299                 .luma_control  = 0x1b,
300                 .chroma_ctrl1  = 0xd1,
301                 .chroma_gain   = 0x80,
302                 .chroma_ctrl2  = 0x00,
303                 .vgate_misc    = 0x1c,
304
305         },{
306                 .name          = "SECAM-L",
307                 .id            = V4L2_STD_SECAM_L,
308                 NORM_625_50,
309
310                 .sync_control  = 0x18,
311                 .luma_control  = 0x1b,
312                 .chroma_ctrl1  = 0xd1,
313                 .chroma_gain   = 0x80,
314                 .chroma_ctrl2  = 0x00,
315                 .vgate_misc    = 0x1c,
316
317         },{
318                 .name          = "SECAM-Lc",
319                 .id            = V4L2_STD_SECAM_LC,
320                 NORM_625_50,
321
322                 .sync_control  = 0x18,
323                 .luma_control  = 0x1b,
324                 .chroma_ctrl1  = 0xd1,
325                 .chroma_gain   = 0x80,
326                 .chroma_ctrl2  = 0x00,
327                 .vgate_misc    = 0x1c,
328
329         },{
330                 .name          = "PAL-M",
331                 .id            = V4L2_STD_PAL_M,
332                 NORM_525_60,
333
334                 .sync_control  = 0x59,
335                 .luma_control  = 0x40,
336                 .chroma_ctrl1  = 0xb9,
337                 .chroma_gain   = 0x2a,
338                 .chroma_ctrl2  = 0x0e,
339                 .vgate_misc    = 0x18,
340
341         },{
342                 .name          = "PAL-Nc",
343                 .id            = V4L2_STD_PAL_Nc,
344                 NORM_625_50,
345
346                 .sync_control  = 0x18,
347                 .luma_control  = 0x40,
348                 .chroma_ctrl1  = 0xa1,
349                 .chroma_gain   = 0x2a,
350                 .chroma_ctrl2  = 0x06,
351                 .vgate_misc    = 0x1c,
352
353         },{
354                 .name          = "PAL-60",
355                 .id            = V4L2_STD_PAL_60,
356
357                 .h_start       = 0,
358                 .h_stop        = 719,
359                 .video_v_start = 23,
360                 .video_v_stop  = 262,
361                 .vbi_v_start_0 = 10,
362                 .vbi_v_stop_0  = 21,
363                 .vbi_v_start_1 = 273,
364                 .src_timing    = 7,
365
366                 .sync_control  = 0x18,
367                 .luma_control  = 0x40,
368                 .chroma_ctrl1  = 0x81,
369                 .chroma_gain   = 0x2a,
370                 .chroma_ctrl2  = 0x06,
371                 .vgate_misc    = 0x1c,
372         }
373 };
374 #define TVNORMS ARRAY_SIZE(tvnorms)
375
376 #define V4L2_CID_PRIVATE_INVERT      (V4L2_CID_PRIVATE_BASE + 0)
377 #define V4L2_CID_PRIVATE_Y_ODD       (V4L2_CID_PRIVATE_BASE + 1)
378 #define V4L2_CID_PRIVATE_Y_EVEN      (V4L2_CID_PRIVATE_BASE + 2)
379 #define V4L2_CID_PRIVATE_AUTOMUTE    (V4L2_CID_PRIVATE_BASE + 3)
380 #define V4L2_CID_PRIVATE_LASTP1      (V4L2_CID_PRIVATE_BASE + 4)
381
382 static const struct v4l2_queryctrl no_ctrl = {
383         .name  = "42",
384         .flags = V4L2_CTRL_FLAG_DISABLED,
385 };
386 static const struct v4l2_queryctrl video_ctrls[] = {
387         /* --- video --- */
388         {
389                 .id            = V4L2_CID_BRIGHTNESS,
390                 .name          = "Brightness",
391                 .minimum       = 0,
392                 .maximum       = 255,
393                 .step          = 1,
394                 .default_value = 128,
395                 .type          = V4L2_CTRL_TYPE_INTEGER,
396         },{
397                 .id            = V4L2_CID_CONTRAST,
398                 .name          = "Contrast",
399                 .minimum       = 0,
400                 .maximum       = 127,
401                 .step          = 1,
402                 .default_value = 68,
403                 .type          = V4L2_CTRL_TYPE_INTEGER,
404         },{
405                 .id            = V4L2_CID_SATURATION,
406                 .name          = "Saturation",
407                 .minimum       = 0,
408                 .maximum       = 127,
409                 .step          = 1,
410                 .default_value = 64,
411                 .type          = V4L2_CTRL_TYPE_INTEGER,
412         },{
413                 .id            = V4L2_CID_HUE,
414                 .name          = "Hue",
415                 .minimum       = -128,
416                 .maximum       = 127,
417                 .step          = 1,
418                 .default_value = 0,
419                 .type          = V4L2_CTRL_TYPE_INTEGER,
420         },{
421                 .id            = V4L2_CID_HFLIP,
422                 .name          = "Mirror",
423                 .minimum       = 0,
424                 .maximum       = 1,
425                 .type          = V4L2_CTRL_TYPE_BOOLEAN,
426         },
427         /* --- audio --- */
428         {
429                 .id            = V4L2_CID_AUDIO_MUTE,
430                 .name          = "Mute",
431                 .minimum       = 0,
432                 .maximum       = 1,
433                 .type          = V4L2_CTRL_TYPE_BOOLEAN,
434         },{
435                 .id            = V4L2_CID_AUDIO_VOLUME,
436                 .name          = "Volume",
437                 .minimum       = -15,
438                 .maximum       = 15,
439                 .step          = 1,
440                 .default_value = 0,
441                 .type          = V4L2_CTRL_TYPE_INTEGER,
442         },
443         /* --- private --- */
444         {
445                 .id            = V4L2_CID_PRIVATE_INVERT,
446                 .name          = "Invert",
447                 .minimum       = 0,
448                 .maximum       = 1,
449                 .type          = V4L2_CTRL_TYPE_BOOLEAN,
450         },{
451                 .id            = V4L2_CID_PRIVATE_Y_ODD,
452                 .name          = "y offset odd field",
453                 .minimum       = 0,
454                 .maximum       = 128,
455                 .default_value = 0,
456                 .type          = V4L2_CTRL_TYPE_INTEGER,
457         },{
458                 .id            = V4L2_CID_PRIVATE_Y_EVEN,
459                 .name          = "y offset even field",
460                 .minimum       = 0,
461                 .maximum       = 128,
462                 .default_value = 0,
463                 .type          = V4L2_CTRL_TYPE_INTEGER,
464         },{
465                 .id            = V4L2_CID_PRIVATE_AUTOMUTE,
466                 .name          = "automute",
467                 .minimum       = 0,
468                 .maximum       = 1,
469                 .default_value = 1,
470                 .type          = V4L2_CTRL_TYPE_BOOLEAN,
471         }
472 };
473 static const unsigned int CTRLS = ARRAY_SIZE(video_ctrls);
474
475 static const struct v4l2_queryctrl* ctrl_by_id(unsigned int id)
476 {
477         unsigned int i;
478
479         for (i = 0; i < CTRLS; i++)
480                 if (video_ctrls[i].id == id)
481                         return video_ctrls+i;
482         return NULL;
483 }
484
485 static struct saa7134_format* format_by_fourcc(unsigned int fourcc)
486 {
487         unsigned int i;
488
489         for (i = 0; i < FORMATS; i++)
490                 if (formats[i].fourcc == fourcc)
491                         return formats+i;
492         return NULL;
493 }
494
495 /* ----------------------------------------------------------------------- */
496 /* resource management                                                     */
497
498 static int res_get(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bit)
499 {
500         if (fh->resources & bit)
501                 /* have it already allocated */
502                 return 1;
503
504         /* is it free? */
505         mutex_lock(&dev->lock);
506         if (dev->resources & bit) {
507                 /* no, someone else uses it */
508                 mutex_unlock(&dev->lock);
509                 return 0;
510         }
511         /* it's free, grab it */
512         fh->resources  |= bit;
513         dev->resources |= bit;
514         dprintk("res: get %d\n",bit);
515         mutex_unlock(&dev->lock);
516         return 1;
517 }
518
519 static int res_check(struct saa7134_fh *fh, unsigned int bit)
520 {
521         return (fh->resources & bit);
522 }
523
524 static int res_locked(struct saa7134_dev *dev, unsigned int bit)
525 {
526         return (dev->resources & bit);
527 }
528
529 static
530 void res_free(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bits)
531 {
532         BUG_ON((fh->resources & bits) != bits);
533
534         mutex_lock(&dev->lock);
535         fh->resources  &= ~bits;
536         dev->resources &= ~bits;
537         dprintk("res: put %d\n",bits);
538         mutex_unlock(&dev->lock);
539 }
540
541 /* ------------------------------------------------------------------ */
542
543 static void set_tvnorm(struct saa7134_dev *dev, struct saa7134_tvnorm *norm)
544 {
545         int luma_control,sync_control,mux;
546
547         dprintk("set tv norm = %s\n",norm->name);
548         dev->tvnorm = norm;
549
550         mux = card_in(dev,dev->ctl_input).vmux;
551         luma_control = norm->luma_control;
552         sync_control = norm->sync_control;
553
554         if (mux > 5)
555                 luma_control |= 0x80; /* svideo */
556         if (noninterlaced || dev->nosignal)
557                 sync_control |= 0x20;
558
559         /* setup cropping */
560         dev->crop_bounds.left    = norm->h_start;
561         dev->crop_defrect.left   = norm->h_start;
562         dev->crop_bounds.width   = norm->h_stop - norm->h_start +1;
563         dev->crop_defrect.width  = norm->h_stop - norm->h_start +1;
564
565         dev->crop_bounds.top     = (norm->vbi_v_stop_0+1)*2;
566         dev->crop_defrect.top    = norm->video_v_start*2;
567         dev->crop_bounds.height  = ((norm->id & V4L2_STD_525_60) ? 524 : 624)
568                 - dev->crop_bounds.top;
569         dev->crop_defrect.height = (norm->video_v_stop - norm->video_v_start +1)*2;
570
571         dev->crop_current = dev->crop_defrect;
572
573         /* setup video decoder */
574         saa_writeb(SAA7134_INCR_DELAY,            0x08);
575         saa_writeb(SAA7134_ANALOG_IN_CTRL1,       0xc0 | mux);
576         saa_writeb(SAA7134_ANALOG_IN_CTRL2,       0x00);
577
578         saa_writeb(SAA7134_ANALOG_IN_CTRL3,       0x90);
579         saa_writeb(SAA7134_ANALOG_IN_CTRL4,       0x90);
580         saa_writeb(SAA7134_HSYNC_START,           0xeb);
581         saa_writeb(SAA7134_HSYNC_STOP,            0xe0);
582         saa_writeb(SAA7134_SOURCE_TIMING1,        norm->src_timing);
583
584         saa_writeb(SAA7134_SYNC_CTRL,             sync_control);
585         saa_writeb(SAA7134_LUMA_CTRL,             luma_control);
586         saa_writeb(SAA7134_DEC_LUMA_BRIGHT,       dev->ctl_bright);
587         saa_writeb(SAA7134_DEC_LUMA_CONTRAST,     dev->ctl_contrast);
588
589         saa_writeb(SAA7134_DEC_CHROMA_SATURATION, dev->ctl_saturation);
590         saa_writeb(SAA7134_DEC_CHROMA_HUE,        dev->ctl_hue);
591         saa_writeb(SAA7134_CHROMA_CTRL1,          norm->chroma_ctrl1);
592         saa_writeb(SAA7134_CHROMA_GAIN,           norm->chroma_gain);
593
594         saa_writeb(SAA7134_CHROMA_CTRL2,          norm->chroma_ctrl2);
595         saa_writeb(SAA7134_MODE_DELAY_CTRL,       0x00);
596
597         saa_writeb(SAA7134_ANALOG_ADC,            0x01);
598         saa_writeb(SAA7134_VGATE_START,           0x11);
599         saa_writeb(SAA7134_VGATE_STOP,            0xfe);
600         saa_writeb(SAA7134_MISC_VGATE_MSB,        norm->vgate_misc);
601         saa_writeb(SAA7134_RAW_DATA_GAIN,         0x40);
602         saa_writeb(SAA7134_RAW_DATA_OFFSET,       0x80);
603
604         /* only tell the tuner if this is a tv input */
605         if (card_in(dev,dev->ctl_input).tv) {
606                 if ((card(dev).tuner_type == TUNER_PHILIPS_TDA8290)
607                                 && ((card(dev).tuner_config == 1)
608                                 ||  (card(dev).tuner_config == 2)))
609                         saa7134_set_gpio(dev, 22, 5);
610                 saa7134_i2c_call_clients(dev,VIDIOC_S_STD,&norm->id);
611         }
612 }
613
614 static void video_mux(struct saa7134_dev *dev, int input)
615 {
616         dprintk("video input = %d [%s]\n",input,card_in(dev,input).name);
617         dev->ctl_input = input;
618         set_tvnorm(dev,dev->tvnorm);
619         saa7134_tvaudio_setinput(dev,&card_in(dev,input));
620 }
621
622 static void set_h_prescale(struct saa7134_dev *dev, int task, int prescale)
623 {
624         static const struct {
625                 int xpsc;
626                 int xacl;
627                 int xc2_1;
628                 int xdcg;
629                 int vpfy;
630         } vals[] = {
631                 /* XPSC XACL XC2_1 XDCG VPFY */
632                 {    1,   0,    0,    0,   0 },
633                 {    2,   2,    1,    2,   2 },
634                 {    3,   4,    1,    3,   2 },
635                 {    4,   8,    1,    4,   2 },
636                 {    5,   8,    1,    4,   2 },
637                 {    6,   8,    1,    4,   3 },
638                 {    7,   8,    1,    4,   3 },
639                 {    8,  15,    0,    4,   3 },
640                 {    9,  15,    0,    4,   3 },
641                 {   10,  16,    1,    5,   3 },
642         };
643         static const int count = ARRAY_SIZE(vals);
644         int i;
645
646         for (i = 0; i < count; i++)
647                 if (vals[i].xpsc == prescale)
648                         break;
649         if (i == count)
650                 return;
651
652         saa_writeb(SAA7134_H_PRESCALE(task), vals[i].xpsc);
653         saa_writeb(SAA7134_ACC_LENGTH(task), vals[i].xacl);
654         saa_writeb(SAA7134_LEVEL_CTRL(task),
655                    (vals[i].xc2_1 << 3) | (vals[i].xdcg));
656         saa_andorb(SAA7134_FIR_PREFILTER_CTRL(task), 0x0f,
657                    (vals[i].vpfy << 2) | vals[i].vpfy);
658 }
659
660 static void set_v_scale(struct saa7134_dev *dev, int task, int yscale)
661 {
662         int val,mirror;
663
664         saa_writeb(SAA7134_V_SCALE_RATIO1(task), yscale &  0xff);
665         saa_writeb(SAA7134_V_SCALE_RATIO2(task), yscale >> 8);
666
667         mirror = (dev->ctl_mirror) ? 0x02 : 0x00;
668         if (yscale < 2048) {
669                 /* LPI */
670                 dprintk("yscale LPI yscale=%d\n",yscale);
671                 saa_writeb(SAA7134_V_FILTER(task), 0x00 | mirror);
672                 saa_writeb(SAA7134_LUMA_CONTRAST(task), 0x40);
673                 saa_writeb(SAA7134_CHROMA_SATURATION(task), 0x40);
674         } else {
675                 /* ACM */
676                 val = 0x40 * 1024 / yscale;
677                 dprintk("yscale ACM yscale=%d val=0x%x\n",yscale,val);
678                 saa_writeb(SAA7134_V_FILTER(task), 0x01 | mirror);
679                 saa_writeb(SAA7134_LUMA_CONTRAST(task), val);
680                 saa_writeb(SAA7134_CHROMA_SATURATION(task), val);
681         }
682         saa_writeb(SAA7134_LUMA_BRIGHT(task),       0x80);
683 }
684
685 static void set_size(struct saa7134_dev *dev, int task,
686                      int width, int height, int interlace)
687 {
688         int prescale,xscale,yscale,y_even,y_odd;
689         int h_start, h_stop, v_start, v_stop;
690         int div = interlace ? 2 : 1;
691
692         /* setup video scaler */
693         h_start = dev->crop_current.left;
694         v_start = dev->crop_current.top/2;
695         h_stop  = (dev->crop_current.left + dev->crop_current.width -1);
696         v_stop  = (dev->crop_current.top + dev->crop_current.height -1)/2;
697
698         saa_writeb(SAA7134_VIDEO_H_START1(task), h_start &  0xff);
699         saa_writeb(SAA7134_VIDEO_H_START2(task), h_start >> 8);
700         saa_writeb(SAA7134_VIDEO_H_STOP1(task),  h_stop  &  0xff);
701         saa_writeb(SAA7134_VIDEO_H_STOP2(task),  h_stop  >> 8);
702         saa_writeb(SAA7134_VIDEO_V_START1(task), v_start &  0xff);
703         saa_writeb(SAA7134_VIDEO_V_START2(task), v_start >> 8);
704         saa_writeb(SAA7134_VIDEO_V_STOP1(task),  v_stop  &  0xff);
705         saa_writeb(SAA7134_VIDEO_V_STOP2(task),  v_stop  >> 8);
706
707         prescale = dev->crop_current.width / width;
708         if (0 == prescale)
709                 prescale = 1;
710         xscale = 1024 * dev->crop_current.width / prescale / width;
711         yscale = 512 * div * dev->crop_current.height / height;
712         dprintk("prescale=%d xscale=%d yscale=%d\n",prescale,xscale,yscale);
713         set_h_prescale(dev,task,prescale);
714         saa_writeb(SAA7134_H_SCALE_INC1(task),      xscale &  0xff);
715         saa_writeb(SAA7134_H_SCALE_INC2(task),      xscale >> 8);
716         set_v_scale(dev,task,yscale);
717
718         saa_writeb(SAA7134_VIDEO_PIXELS1(task),     width  & 0xff);
719         saa_writeb(SAA7134_VIDEO_PIXELS2(task),     width  >> 8);
720         saa_writeb(SAA7134_VIDEO_LINES1(task),      height/div & 0xff);
721         saa_writeb(SAA7134_VIDEO_LINES2(task),      height/div >> 8);
722
723         /* deinterlace y offsets */
724         y_odd  = dev->ctl_y_odd;
725         y_even = dev->ctl_y_even;
726         saa_writeb(SAA7134_V_PHASE_OFFSET0(task), y_odd);
727         saa_writeb(SAA7134_V_PHASE_OFFSET1(task), y_even);
728         saa_writeb(SAA7134_V_PHASE_OFFSET2(task), y_odd);
729         saa_writeb(SAA7134_V_PHASE_OFFSET3(task), y_even);
730 }
731
732 /* ------------------------------------------------------------------ */
733
734 struct cliplist {
735         __u16 position;
736         __u8  enable;
737         __u8  disable;
738 };
739
740 static void set_cliplist(struct saa7134_dev *dev, int reg,
741                         struct cliplist *cl, int entries, char *name)
742 {
743         __u8 winbits = 0;
744         int i;
745
746         for (i = 0; i < entries; i++) {
747                 winbits |= cl[i].enable;
748                 winbits &= ~cl[i].disable;
749                 if (i < 15 && cl[i].position == cl[i+1].position)
750                         continue;
751                 saa_writeb(reg + 0, winbits);
752                 saa_writeb(reg + 2, cl[i].position & 0xff);
753                 saa_writeb(reg + 3, cl[i].position >> 8);
754                 dprintk("clip: %s winbits=%02x pos=%d\n",
755                         name,winbits,cl[i].position);
756                 reg += 8;
757         }
758         for (; reg < 0x400; reg += 8) {
759                 saa_writeb(reg+ 0, 0);
760                 saa_writeb(reg + 1, 0);
761                 saa_writeb(reg + 2, 0);
762                 saa_writeb(reg + 3, 0);
763         }
764 }
765
766 static int clip_range(int val)
767 {
768         if (val < 0)
769                 val = 0;
770         return val;
771 }
772
773 /* Sort into smallest position first order */
774 static int cliplist_cmp(const void *a, const void *b)
775 {
776         const struct cliplist *cla = a;
777         const struct cliplist *clb = b;
778         if (cla->position < clb->position)
779                 return -1;
780         if (cla->position > clb->position)
781                 return 1;
782         return 0;
783 }
784
785 static int setup_clipping(struct saa7134_dev *dev, struct v4l2_clip *clips,
786                           int nclips, int interlace)
787 {
788         struct cliplist col[16], row[16];
789         int cols = 0, rows = 0, i;
790         int div = interlace ? 2 : 1;
791
792         memset(col, 0, sizeof(col));
793         memset(row, 0, sizeof(row));
794         for (i = 0; i < nclips && i < 8; i++) {
795                 col[cols].position = clip_range(clips[i].c.left);
796                 col[cols].enable   = (1 << i);
797                 cols++;
798                 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width);
799                 col[cols].disable  = (1 << i);
800                 cols++;
801                 row[rows].position = clip_range(clips[i].c.top / div);
802                 row[rows].enable   = (1 << i);
803                 rows++;
804                 row[rows].position = clip_range((clips[i].c.top + clips[i].c.height)
805                                                 / div);
806                 row[rows].disable  = (1 << i);
807                 rows++;
808         }
809         sort(col, cols, sizeof col[0], cliplist_cmp, NULL);
810         sort(row, rows, sizeof row[0], cliplist_cmp, NULL);
811         set_cliplist(dev,0x380,col,cols,"cols");
812         set_cliplist(dev,0x384,row,rows,"rows");
813         return 0;
814 }
815
816 static int verify_preview(struct saa7134_dev *dev, struct v4l2_window *win)
817 {
818         enum v4l2_field field;
819         int maxw, maxh;
820
821         if (NULL == dev->ovbuf.base)
822                 return -EINVAL;
823         if (NULL == dev->ovfmt)
824                 return -EINVAL;
825         if (win->w.width < 48 || win->w.height <  32)
826                 return -EINVAL;
827         if (win->clipcount > 2048)
828                 return -EINVAL;
829
830         field = win->field;
831         maxw  = dev->crop_current.width;
832         maxh  = dev->crop_current.height;
833
834         if (V4L2_FIELD_ANY == field) {
835                 field = (win->w.height > maxh/2)
836                         ? V4L2_FIELD_INTERLACED
837                         : V4L2_FIELD_TOP;
838         }
839         switch (field) {
840         case V4L2_FIELD_TOP:
841         case V4L2_FIELD_BOTTOM:
842                 maxh = maxh / 2;
843                 break;
844         case V4L2_FIELD_INTERLACED:
845                 break;
846         default:
847                 return -EINVAL;
848         }
849
850         win->field = field;
851         if (win->w.width > maxw)
852                 win->w.width = maxw;
853         if (win->w.height > maxh)
854                 win->w.height = maxh;
855         return 0;
856 }
857
858 static int start_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
859 {
860         unsigned long base,control,bpl;
861         int err;
862
863         err = verify_preview(dev,&fh->win);
864         if (0 != err)
865                 return err;
866
867         dev->ovfield = fh->win.field;
868         dprintk("start_preview %dx%d+%d+%d %s field=%s\n",
869                 fh->win.w.width,fh->win.w.height,
870                 fh->win.w.left,fh->win.w.top,
871                 dev->ovfmt->name,v4l2_field_names[dev->ovfield]);
872
873         /* setup window + clipping */
874         set_size(dev,TASK_B,fh->win.w.width,fh->win.w.height,
875                  V4L2_FIELD_HAS_BOTH(dev->ovfield));
876         setup_clipping(dev,fh->clips,fh->nclips,
877                        V4L2_FIELD_HAS_BOTH(dev->ovfield));
878         if (dev->ovfmt->yuv)
879                 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x03);
880         else
881                 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x01);
882         saa_writeb(SAA7134_OFMT_VIDEO_B, dev->ovfmt->pm | 0x20);
883
884         /* dma: setup channel 1 (= Video Task B) */
885         base  = (unsigned long)dev->ovbuf.base;
886         base += dev->ovbuf.fmt.bytesperline * fh->win.w.top;
887         base += dev->ovfmt->depth/8         * fh->win.w.left;
888         bpl   = dev->ovbuf.fmt.bytesperline;
889         control = SAA7134_RS_CONTROL_BURST_16;
890         if (dev->ovfmt->bswap)
891                 control |= SAA7134_RS_CONTROL_BSWAP;
892         if (dev->ovfmt->wswap)
893                 control |= SAA7134_RS_CONTROL_WSWAP;
894         if (V4L2_FIELD_HAS_BOTH(dev->ovfield)) {
895                 saa_writel(SAA7134_RS_BA1(1),base);
896                 saa_writel(SAA7134_RS_BA2(1),base+bpl);
897                 saa_writel(SAA7134_RS_PITCH(1),bpl*2);
898                 saa_writel(SAA7134_RS_CONTROL(1),control);
899         } else {
900                 saa_writel(SAA7134_RS_BA1(1),base);
901                 saa_writel(SAA7134_RS_BA2(1),base);
902                 saa_writel(SAA7134_RS_PITCH(1),bpl);
903                 saa_writel(SAA7134_RS_CONTROL(1),control);
904         }
905
906         /* start dma */
907         dev->ovenable = 1;
908         saa7134_set_dmabits(dev);
909
910         return 0;
911 }
912
913 static int stop_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
914 {
915         dev->ovenable = 0;
916         saa7134_set_dmabits(dev);
917         return 0;
918 }
919
920 /* ------------------------------------------------------------------ */
921
922 static int buffer_activate(struct saa7134_dev *dev,
923                            struct saa7134_buf *buf,
924                            struct saa7134_buf *next)
925 {
926         unsigned long base,control,bpl;
927         unsigned long bpl_uv,lines_uv,base2,base3,tmp; /* planar */
928
929         dprintk("buffer_activate buf=%p\n",buf);
930         buf->vb.state = STATE_ACTIVE;
931         buf->top_seen = 0;
932
933         set_size(dev,TASK_A,buf->vb.width,buf->vb.height,
934                  V4L2_FIELD_HAS_BOTH(buf->vb.field));
935         if (buf->fmt->yuv)
936                 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x03);
937         else
938                 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x01);
939         saa_writeb(SAA7134_OFMT_VIDEO_A, buf->fmt->pm);
940
941         /* DMA: setup channel 0 (= Video Task A0) */
942         base  = saa7134_buffer_base(buf);
943         if (buf->fmt->planar)
944                 bpl = buf->vb.width;
945         else
946                 bpl = (buf->vb.width * buf->fmt->depth) / 8;
947         control = SAA7134_RS_CONTROL_BURST_16 |
948                 SAA7134_RS_CONTROL_ME |
949                 (buf->pt->dma >> 12);
950         if (buf->fmt->bswap)
951                 control |= SAA7134_RS_CONTROL_BSWAP;
952         if (buf->fmt->wswap)
953                 control |= SAA7134_RS_CONTROL_WSWAP;
954         if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
955                 /* interlaced */
956                 saa_writel(SAA7134_RS_BA1(0),base);
957                 saa_writel(SAA7134_RS_BA2(0),base+bpl);
958                 saa_writel(SAA7134_RS_PITCH(0),bpl*2);
959         } else {
960                 /* non-interlaced */
961                 saa_writel(SAA7134_RS_BA1(0),base);
962                 saa_writel(SAA7134_RS_BA2(0),base);
963                 saa_writel(SAA7134_RS_PITCH(0),bpl);
964         }
965         saa_writel(SAA7134_RS_CONTROL(0),control);
966
967         if (buf->fmt->planar) {
968                 /* DMA: setup channel 4+5 (= planar task A) */
969                 bpl_uv   = bpl >> buf->fmt->hshift;
970                 lines_uv = buf->vb.height >> buf->fmt->vshift;
971                 base2    = base + bpl * buf->vb.height;
972                 base3    = base2 + bpl_uv * lines_uv;
973                 if (buf->fmt->uvswap)
974                         tmp = base2, base2 = base3, base3 = tmp;
975                 dprintk("uv: bpl=%ld lines=%ld base2/3=%ld/%ld\n",
976                         bpl_uv,lines_uv,base2,base3);
977                 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
978                         /* interlaced */
979                         saa_writel(SAA7134_RS_BA1(4),base2);
980                         saa_writel(SAA7134_RS_BA2(4),base2+bpl_uv);
981                         saa_writel(SAA7134_RS_PITCH(4),bpl_uv*2);
982                         saa_writel(SAA7134_RS_BA1(5),base3);
983                         saa_writel(SAA7134_RS_BA2(5),base3+bpl_uv);
984                         saa_writel(SAA7134_RS_PITCH(5),bpl_uv*2);
985                 } else {
986                         /* non-interlaced */
987                         saa_writel(SAA7134_RS_BA1(4),base2);
988                         saa_writel(SAA7134_RS_BA2(4),base2);
989                         saa_writel(SAA7134_RS_PITCH(4),bpl_uv);
990                         saa_writel(SAA7134_RS_BA1(5),base3);
991                         saa_writel(SAA7134_RS_BA2(5),base3);
992                         saa_writel(SAA7134_RS_PITCH(5),bpl_uv);
993                 }
994                 saa_writel(SAA7134_RS_CONTROL(4),control);
995                 saa_writel(SAA7134_RS_CONTROL(5),control);
996         }
997
998         /* start DMA */
999         saa7134_set_dmabits(dev);
1000         mod_timer(&dev->video_q.timeout, jiffies+BUFFER_TIMEOUT);
1001         return 0;
1002 }
1003
1004 static int buffer_prepare(struct videobuf_queue *q,
1005                           struct videobuf_buffer *vb,
1006                           enum v4l2_field field)
1007 {
1008         struct saa7134_fh *fh = q->priv_data;
1009         struct saa7134_dev *dev = fh->dev;
1010         struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1011         unsigned int size;
1012         int err;
1013
1014         /* sanity checks */
1015         if (NULL == fh->fmt)
1016                 return -EINVAL;
1017         if (fh->width    < 48 ||
1018             fh->height   < 32 ||
1019             fh->width/4  > dev->crop_current.width  ||
1020             fh->height/4 > dev->crop_current.height ||
1021             fh->width    > dev->crop_bounds.width  ||
1022             fh->height   > dev->crop_bounds.height)
1023                 return -EINVAL;
1024         size = (fh->width * fh->height * fh->fmt->depth) >> 3;
1025         if (0 != buf->vb.baddr  &&  buf->vb.bsize < size)
1026                 return -EINVAL;
1027
1028         dprintk("buffer_prepare [%d,size=%dx%d,bytes=%d,fields=%s,%s]\n",
1029                 vb->i,fh->width,fh->height,size,v4l2_field_names[field],
1030                 fh->fmt->name);
1031         if (buf->vb.width  != fh->width  ||
1032             buf->vb.height != fh->height ||
1033             buf->vb.size   != size       ||
1034             buf->vb.field  != field      ||
1035             buf->fmt       != fh->fmt) {
1036                 saa7134_dma_free(q,buf);
1037         }
1038
1039         if (STATE_NEEDS_INIT == buf->vb.state) {
1040                 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
1041
1042                 buf->vb.width  = fh->width;
1043                 buf->vb.height = fh->height;
1044                 buf->vb.size   = size;
1045                 buf->vb.field  = field;
1046                 buf->fmt       = fh->fmt;
1047                 buf->pt        = &fh->pt_cap;
1048
1049                 err = videobuf_iolock(q,&buf->vb,&dev->ovbuf);
1050                 if (err)
1051                         goto oops;
1052                 err = saa7134_pgtable_build(dev->pci,buf->pt,
1053                                             dma->sglist,
1054                                             dma->sglen,
1055                                             saa7134_buffer_startpage(buf));
1056                 if (err)
1057                         goto oops;
1058         }
1059         buf->vb.state = STATE_PREPARED;
1060         buf->activate = buffer_activate;
1061         return 0;
1062
1063  oops:
1064         saa7134_dma_free(q,buf);
1065         return err;
1066 }
1067
1068 static int
1069 buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1070 {
1071         struct saa7134_fh *fh = q->priv_data;
1072
1073         *size = fh->fmt->depth * fh->width * fh->height >> 3;
1074         if (0 == *count)
1075                 *count = gbuffers;
1076         *count = saa7134_buffer_count(*size,*count);
1077         return 0;
1078 }
1079
1080 static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1081 {
1082         struct saa7134_fh *fh = q->priv_data;
1083         struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1084
1085         saa7134_buffer_queue(fh->dev,&fh->dev->video_q,buf);
1086 }
1087
1088 static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1089 {
1090         struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1091
1092         saa7134_dma_free(q,buf);
1093 }
1094
1095 static struct videobuf_queue_ops video_qops = {
1096         .buf_setup    = buffer_setup,
1097         .buf_prepare  = buffer_prepare,
1098         .buf_queue    = buffer_queue,
1099         .buf_release  = buffer_release,
1100 };
1101
1102 /* ------------------------------------------------------------------ */
1103
1104 static int get_control(struct saa7134_dev *dev, struct v4l2_control *c)
1105 {
1106         const struct v4l2_queryctrl* ctrl;
1107
1108         ctrl = ctrl_by_id(c->id);
1109         if (NULL == ctrl)
1110                 return -EINVAL;
1111         switch (c->id) {
1112         case V4L2_CID_BRIGHTNESS:
1113                 c->value = dev->ctl_bright;
1114                 break;
1115         case V4L2_CID_HUE:
1116                 c->value = dev->ctl_hue;
1117                 break;
1118         case V4L2_CID_CONTRAST:
1119                 c->value = dev->ctl_contrast;
1120                 break;
1121         case V4L2_CID_SATURATION:
1122                 c->value = dev->ctl_saturation;
1123                 break;
1124         case V4L2_CID_AUDIO_MUTE:
1125                 c->value = dev->ctl_mute;
1126                 break;
1127         case V4L2_CID_AUDIO_VOLUME:
1128                 c->value = dev->ctl_volume;
1129                 break;
1130         case V4L2_CID_PRIVATE_INVERT:
1131                 c->value = dev->ctl_invert;
1132                 break;
1133         case V4L2_CID_HFLIP:
1134                 c->value = dev->ctl_mirror;
1135                 break;
1136         case V4L2_CID_PRIVATE_Y_EVEN:
1137                 c->value = dev->ctl_y_even;
1138                 break;
1139         case V4L2_CID_PRIVATE_Y_ODD:
1140                 c->value = dev->ctl_y_odd;
1141                 break;
1142         case V4L2_CID_PRIVATE_AUTOMUTE:
1143                 c->value = dev->ctl_automute;
1144                 break;
1145         default:
1146                 return -EINVAL;
1147         }
1148         return 0;
1149 }
1150
1151 static int set_control(struct saa7134_dev *dev, struct saa7134_fh *fh,
1152                        struct v4l2_control *c)
1153 {
1154         const struct v4l2_queryctrl* ctrl;
1155         unsigned long flags;
1156         int restart_overlay = 0;
1157
1158         ctrl = ctrl_by_id(c->id);
1159         if (NULL == ctrl)
1160                 return -EINVAL;
1161         dprintk("set_control name=%s val=%d\n",ctrl->name,c->value);
1162         switch (ctrl->type) {
1163         case V4L2_CTRL_TYPE_BOOLEAN:
1164         case V4L2_CTRL_TYPE_MENU:
1165         case V4L2_CTRL_TYPE_INTEGER:
1166                 if (c->value < ctrl->minimum)
1167                         c->value = ctrl->minimum;
1168                 if (c->value > ctrl->maximum)
1169                         c->value = ctrl->maximum;
1170                 break;
1171         default:
1172                 /* nothing */;
1173         };
1174         switch (c->id) {
1175         case V4L2_CID_BRIGHTNESS:
1176                 dev->ctl_bright = c->value;
1177                 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
1178                 break;
1179         case V4L2_CID_HUE:
1180                 dev->ctl_hue = c->value;
1181                 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
1182                 break;
1183         case V4L2_CID_CONTRAST:
1184                 dev->ctl_contrast = c->value;
1185                 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1186                            dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1187                 break;
1188         case V4L2_CID_SATURATION:
1189                 dev->ctl_saturation = c->value;
1190                 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1191                            dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1192                 break;
1193         case V4L2_CID_AUDIO_MUTE:
1194                 dev->ctl_mute = c->value;
1195                 saa7134_tvaudio_setmute(dev);
1196                 break;
1197         case V4L2_CID_AUDIO_VOLUME:
1198                 dev->ctl_volume = c->value;
1199                 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
1200                 break;
1201         case V4L2_CID_PRIVATE_INVERT:
1202                 dev->ctl_invert = c->value;
1203                 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1204                            dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1205                 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1206                            dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1207                 break;
1208         case V4L2_CID_HFLIP:
1209                 dev->ctl_mirror = c->value;
1210                 restart_overlay = 1;
1211                 break;
1212         case V4L2_CID_PRIVATE_Y_EVEN:
1213                 dev->ctl_y_even = c->value;
1214                 restart_overlay = 1;
1215                 break;
1216         case V4L2_CID_PRIVATE_Y_ODD:
1217                 dev->ctl_y_odd = c->value;
1218                 restart_overlay = 1;
1219                 break;
1220         case V4L2_CID_PRIVATE_AUTOMUTE:
1221                 dev->ctl_automute = c->value;
1222                 if (dev->tda9887_conf) {
1223                         if (dev->ctl_automute)
1224                                 dev->tda9887_conf |= TDA9887_AUTOMUTE;
1225                         else
1226                                 dev->tda9887_conf &= ~TDA9887_AUTOMUTE;
1227                         saa7134_i2c_call_clients(dev, TDA9887_SET_CONFIG,
1228                                                  &dev->tda9887_conf);
1229                 }
1230                 break;
1231         default:
1232                 return -EINVAL;
1233         }
1234         if (restart_overlay && fh && res_check(fh, RESOURCE_OVERLAY)) {
1235                 spin_lock_irqsave(&dev->slock,flags);
1236                 stop_preview(dev,fh);
1237                 start_preview(dev,fh);
1238                 spin_unlock_irqrestore(&dev->slock,flags);
1239         }
1240         return 0;
1241 }
1242
1243 /* ------------------------------------------------------------------ */
1244
1245 static struct videobuf_queue* saa7134_queue(struct saa7134_fh *fh)
1246 {
1247         struct videobuf_queue* q = NULL;
1248
1249         switch (fh->type) {
1250         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1251                 q = &fh->cap;
1252                 break;
1253         case V4L2_BUF_TYPE_VBI_CAPTURE:
1254                 q = &fh->vbi;
1255                 break;
1256         default:
1257                 BUG();
1258         }
1259         return q;
1260 }
1261
1262 static int saa7134_resource(struct saa7134_fh *fh)
1263 {
1264         if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1265                 return RESOURCE_VIDEO;
1266
1267         if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1268                 return RESOURCE_VBI;
1269
1270         BUG();
1271         return 0;
1272 }
1273
1274 static int video_open(struct inode *inode, struct file *file)
1275 {
1276         int minor = iminor(inode);
1277         struct saa7134_dev *h,*dev = NULL;
1278         struct saa7134_fh *fh;
1279         struct list_head *list;
1280         enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1281         int radio = 0;
1282         list_for_each(list,&saa7134_devlist) {
1283                 h = list_entry(list, struct saa7134_dev, devlist);
1284                 if (h->video_dev && (h->video_dev->minor == minor))
1285                         dev = h;
1286                 if (h->radio_dev && (h->radio_dev->minor == minor)) {
1287                         radio = 1;
1288                         dev = h;
1289                 }
1290                 if (h->vbi_dev && (h->vbi_dev->minor == minor)) {
1291                         type = V4L2_BUF_TYPE_VBI_CAPTURE;
1292                         dev = h;
1293                 }
1294         }
1295         if (NULL == dev)
1296                 return -ENODEV;
1297
1298         dprintk("open minor=%d radio=%d type=%s\n",minor,radio,
1299                 v4l2_type_names[type]);
1300
1301         /* allocate + initialize per filehandle data */
1302         fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1303         if (NULL == fh)
1304                 return -ENOMEM;
1305         file->private_data = fh;
1306         fh->dev      = dev;
1307         fh->radio    = radio;
1308         fh->type     = type;
1309         fh->fmt      = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1310         fh->width    = 720;
1311         fh->height   = 576;
1312         v4l2_prio_open(&dev->prio,&fh->prio);
1313
1314         videobuf_queue_pci_init(&fh->cap, &video_qops,
1315                             dev->pci, &dev->slock,
1316                             V4L2_BUF_TYPE_VIDEO_CAPTURE,
1317                             V4L2_FIELD_INTERLACED,
1318                             sizeof(struct saa7134_buf),
1319                             fh);
1320         videobuf_queue_pci_init(&fh->vbi, &saa7134_vbi_qops,
1321                             dev->pci, &dev->slock,
1322                             V4L2_BUF_TYPE_VBI_CAPTURE,
1323                             V4L2_FIELD_SEQ_TB,
1324                             sizeof(struct saa7134_buf),
1325                             fh);
1326         saa7134_pgtable_alloc(dev->pci,&fh->pt_cap);
1327         saa7134_pgtable_alloc(dev->pci,&fh->pt_vbi);
1328
1329         if (fh->radio) {
1330                 /* switch to radio mode */
1331                 saa7134_tvaudio_setinput(dev,&card(dev).radio);
1332                 saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL);
1333         } else {
1334                 /* switch to video/vbi mode */
1335                 video_mux(dev,dev->ctl_input);
1336         }
1337         return 0;
1338 }
1339
1340 static ssize_t
1341 video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1342 {
1343         struct saa7134_fh *fh = file->private_data;
1344
1345         switch (fh->type) {
1346         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1347                 if (res_locked(fh->dev,RESOURCE_VIDEO))
1348                         return -EBUSY;
1349                 return videobuf_read_one(saa7134_queue(fh),
1350                                          data, count, ppos,
1351                                          file->f_flags & O_NONBLOCK);
1352         case V4L2_BUF_TYPE_VBI_CAPTURE:
1353                 if (!res_get(fh->dev,fh,RESOURCE_VBI))
1354                         return -EBUSY;
1355                 return videobuf_read_stream(saa7134_queue(fh),
1356                                             data, count, ppos, 1,
1357                                             file->f_flags & O_NONBLOCK);
1358                 break;
1359         default:
1360                 BUG();
1361                 return 0;
1362         }
1363 }
1364
1365 static unsigned int
1366 video_poll(struct file *file, struct poll_table_struct *wait)
1367 {
1368         struct saa7134_fh *fh = file->private_data;
1369         struct videobuf_buffer *buf = NULL;
1370
1371         if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)
1372                 return videobuf_poll_stream(file, &fh->vbi, wait);
1373
1374         if (res_check(fh,RESOURCE_VIDEO)) {
1375                 if (!list_empty(&fh->cap.stream))
1376                         buf = list_entry(fh->cap.stream.next, struct videobuf_buffer, stream);
1377         } else {
1378                 mutex_lock(&fh->cap.lock);
1379                 if (UNSET == fh->cap.read_off) {
1380                         /* need to capture a new frame */
1381                         if (res_locked(fh->dev,RESOURCE_VIDEO)) {
1382                                 mutex_unlock(&fh->cap.lock);
1383                                 return POLLERR;
1384                         }
1385                         if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) {
1386                                 mutex_unlock(&fh->cap.lock);
1387                                 return POLLERR;
1388                         }
1389                         fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
1390                         fh->cap.read_off = 0;
1391                 }
1392                 mutex_unlock(&fh->cap.lock);
1393                 buf = fh->cap.read_buf;
1394         }
1395
1396         if (!buf)
1397                 return POLLERR;
1398
1399         poll_wait(file, &buf->done, wait);
1400         if (buf->state == STATE_DONE ||
1401             buf->state == STATE_ERROR)
1402                 return POLLIN|POLLRDNORM;
1403         return 0;
1404 }
1405
1406 static int video_release(struct inode *inode, struct file *file)
1407 {
1408         struct saa7134_fh  *fh  = file->private_data;
1409         struct saa7134_dev *dev = fh->dev;
1410         unsigned long flags;
1411
1412         /* turn off overlay */
1413         if (res_check(fh, RESOURCE_OVERLAY)) {
1414                 spin_lock_irqsave(&dev->slock,flags);
1415                 stop_preview(dev,fh);
1416                 spin_unlock_irqrestore(&dev->slock,flags);
1417                 res_free(dev,fh,RESOURCE_OVERLAY);
1418         }
1419
1420         /* stop video capture */
1421         if (res_check(fh, RESOURCE_VIDEO)) {
1422                 videobuf_streamoff(&fh->cap);
1423                 res_free(dev,fh,RESOURCE_VIDEO);
1424         }
1425         if (fh->cap.read_buf) {
1426                 buffer_release(&fh->cap,fh->cap.read_buf);
1427                 kfree(fh->cap.read_buf);
1428         }
1429
1430         /* stop vbi capture */
1431         if (res_check(fh, RESOURCE_VBI)) {
1432                 if (fh->vbi.streaming)
1433                         videobuf_streamoff(&fh->vbi);
1434                 if (fh->vbi.reading)
1435                         videobuf_read_stop(&fh->vbi);
1436                 res_free(dev,fh,RESOURCE_VBI);
1437         }
1438
1439         /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/
1440         saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0);
1441         saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0);
1442         saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0);
1443         saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0);
1444
1445         saa7134_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
1446
1447         /* free stuff */
1448         videobuf_mmap_free(&fh->cap);
1449         videobuf_mmap_free(&fh->vbi);
1450         saa7134_pgtable_free(dev->pci,&fh->pt_cap);
1451         saa7134_pgtable_free(dev->pci,&fh->pt_vbi);
1452
1453         v4l2_prio_close(&dev->prio,&fh->prio);
1454         file->private_data = NULL;
1455         kfree(fh);
1456         return 0;
1457 }
1458
1459 static int video_mmap(struct file *file, struct vm_area_struct * vma)
1460 {
1461         struct saa7134_fh *fh = file->private_data;
1462
1463         return videobuf_mmap_mapper(saa7134_queue(fh), vma);
1464 }
1465
1466 /* ------------------------------------------------------------------ */
1467
1468 static void saa7134_vbi_fmt(struct saa7134_dev *dev, struct v4l2_format *f)
1469 {
1470         struct saa7134_tvnorm *norm = dev->tvnorm;
1471
1472         f->fmt.vbi.sampling_rate = 6750000 * 4;
1473         f->fmt.vbi.samples_per_line = 2048 /* VBI_LINE_LENGTH */;
1474         f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1475         f->fmt.vbi.offset = 64 * 4;
1476         f->fmt.vbi.start[0] = norm->vbi_v_start_0;
1477         f->fmt.vbi.count[0] = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1;
1478         f->fmt.vbi.start[1] = norm->vbi_v_start_1;
1479         f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1480         f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */
1481
1482 }
1483
1484 static int saa7134_g_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1485                          struct v4l2_format *f)
1486 {
1487         switch (f->type) {
1488         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1489                 memset(&f->fmt.pix,0,sizeof(f->fmt.pix));
1490                 f->fmt.pix.width        = fh->width;
1491                 f->fmt.pix.height       = fh->height;
1492                 f->fmt.pix.field        = fh->cap.field;
1493                 f->fmt.pix.pixelformat  = fh->fmt->fourcc;
1494                 f->fmt.pix.bytesperline =
1495                         (f->fmt.pix.width * fh->fmt->depth) >> 3;
1496                 f->fmt.pix.sizeimage =
1497                         f->fmt.pix.height * f->fmt.pix.bytesperline;
1498                 return 0;
1499         case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1500                 if (saa7134_no_overlay > 0) {
1501                         printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1502                         return -EINVAL;
1503                 }
1504                 f->fmt.win = fh->win;
1505                 return 0;
1506         case V4L2_BUF_TYPE_VBI_CAPTURE:
1507                 saa7134_vbi_fmt(dev,f);
1508                 return 0;
1509         default:
1510                 return -EINVAL;
1511         }
1512 }
1513
1514 static int saa7134_try_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1515                            struct v4l2_format *f)
1516 {
1517         int err;
1518
1519         switch (f->type) {
1520         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1521         {
1522                 struct saa7134_format *fmt;
1523                 enum v4l2_field field;
1524                 unsigned int maxw, maxh;
1525
1526                 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1527                 if (NULL == fmt)
1528                         return -EINVAL;
1529
1530                 field = f->fmt.pix.field;
1531                 maxw  = min(dev->crop_current.width*4,  dev->crop_bounds.width);
1532                 maxh  = min(dev->crop_current.height*4, dev->crop_bounds.height);
1533
1534                 if (V4L2_FIELD_ANY == field) {
1535                         field = (f->fmt.pix.height > maxh/2)
1536                                 ? V4L2_FIELD_INTERLACED
1537                                 : V4L2_FIELD_BOTTOM;
1538                 }
1539                 switch (field) {
1540                 case V4L2_FIELD_TOP:
1541                 case V4L2_FIELD_BOTTOM:
1542                         maxh = maxh / 2;
1543                         break;
1544                 case V4L2_FIELD_INTERLACED:
1545                         break;
1546                 default:
1547                         return -EINVAL;
1548                 }
1549
1550                 f->fmt.pix.field = field;
1551                 if (f->fmt.pix.width  < 48)
1552                         f->fmt.pix.width  = 48;
1553                 if (f->fmt.pix.height < 32)
1554                         f->fmt.pix.height = 32;
1555                 if (f->fmt.pix.width > maxw)
1556                         f->fmt.pix.width = maxw;
1557                 if (f->fmt.pix.height > maxh)
1558                         f->fmt.pix.height = maxh;
1559                 f->fmt.pix.width &= ~0x03;
1560                 f->fmt.pix.bytesperline =
1561                         (f->fmt.pix.width * fmt->depth) >> 3;
1562                 f->fmt.pix.sizeimage =
1563                         f->fmt.pix.height * f->fmt.pix.bytesperline;
1564
1565                 return 0;
1566         }
1567         case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1568                 if (saa7134_no_overlay > 0) {
1569                         printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1570                         return -EINVAL;
1571                 }
1572                 err = verify_preview(dev,&f->fmt.win);
1573                 if (0 != err)
1574                         return err;
1575                 return 0;
1576         case V4L2_BUF_TYPE_VBI_CAPTURE:
1577                 saa7134_vbi_fmt(dev,f);
1578                 return 0;
1579         default:
1580                 return -EINVAL;
1581         }
1582 }
1583
1584 static int saa7134_s_fmt(struct saa7134_dev *dev, struct saa7134_fh *fh,
1585                          struct v4l2_format *f)
1586 {
1587         unsigned long flags;
1588         int err;
1589
1590         switch (f->type) {
1591         case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1592                 err = saa7134_try_fmt(dev,fh,f);
1593                 if (0 != err)
1594                         return err;
1595
1596                 fh->fmt       = format_by_fourcc(f->fmt.pix.pixelformat);
1597                 fh->width     = f->fmt.pix.width;
1598                 fh->height    = f->fmt.pix.height;
1599                 fh->cap.field = f->fmt.pix.field;
1600                 return 0;
1601         case V4L2_BUF_TYPE_VIDEO_OVERLAY:
1602                 if (saa7134_no_overlay > 0) {
1603                         printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1604                         return -EINVAL;
1605                 }
1606                 err = verify_preview(dev,&f->fmt.win);
1607                 if (0 != err)
1608                         return err;
1609
1610                 mutex_lock(&dev->lock);
1611                 fh->win    = f->fmt.win;
1612                 fh->nclips = f->fmt.win.clipcount;
1613                 if (fh->nclips > 8)
1614                         fh->nclips = 8;
1615                 if (copy_from_user(fh->clips,f->fmt.win.clips,
1616                                    sizeof(struct v4l2_clip)*fh->nclips)) {
1617                         mutex_unlock(&dev->lock);
1618                         return -EFAULT;
1619                 }
1620
1621                 if (res_check(fh, RESOURCE_OVERLAY)) {
1622                         spin_lock_irqsave(&dev->slock,flags);
1623                         stop_preview(dev,fh);
1624                         start_preview(dev,fh);
1625                         spin_unlock_irqrestore(&dev->slock,flags);
1626                 }
1627                 mutex_unlock(&dev->lock);
1628                 return 0;
1629         case V4L2_BUF_TYPE_VBI_CAPTURE:
1630                 saa7134_vbi_fmt(dev,f);
1631                 return 0;
1632         default:
1633                 return -EINVAL;
1634         }
1635 }
1636
1637 int saa7134_common_ioctl(struct saa7134_dev *dev,
1638                          unsigned int cmd, void *arg)
1639 {
1640         int err;
1641
1642         switch (cmd) {
1643         case VIDIOC_QUERYCTRL:
1644         {
1645                 const struct v4l2_queryctrl *ctrl;
1646                 struct v4l2_queryctrl *c = arg;
1647
1648                 if ((c->id <  V4L2_CID_BASE ||
1649                      c->id >= V4L2_CID_LASTP1) &&
1650                     (c->id <  V4L2_CID_PRIVATE_BASE ||
1651                      c->id >= V4L2_CID_PRIVATE_LASTP1))
1652                         return -EINVAL;
1653                 ctrl = ctrl_by_id(c->id);
1654                 *c = (NULL != ctrl) ? *ctrl : no_ctrl;
1655                 return 0;
1656         }
1657         case VIDIOC_G_CTRL:
1658                 return get_control(dev,arg);
1659         case VIDIOC_S_CTRL:
1660         {
1661                 mutex_lock(&dev->lock);
1662                 err = set_control(dev,NULL,arg);
1663                 mutex_unlock(&dev->lock);
1664                 return err;
1665         }
1666         /* --- input switching --------------------------------------- */
1667         case VIDIOC_ENUMINPUT:
1668         {
1669                 struct v4l2_input *i = arg;
1670                 unsigned int n;
1671
1672                 n = i->index;
1673                 if (n >= SAA7134_INPUT_MAX)
1674                         return -EINVAL;
1675                 if (NULL == card_in(dev,i->index).name)
1676                         return -EINVAL;
1677                 memset(i,0,sizeof(*i));
1678                 i->index = n;
1679                 i->type  = V4L2_INPUT_TYPE_CAMERA;
1680                 strcpy(i->name,card_in(dev,n).name);
1681                 if (card_in(dev,n).tv)
1682                         i->type = V4L2_INPUT_TYPE_TUNER;
1683                 i->audioset = 1;
1684                 if (n == dev->ctl_input) {
1685                         int v1 = saa_readb(SAA7134_STATUS_VIDEO1);
1686                         int v2 = saa_readb(SAA7134_STATUS_VIDEO2);
1687
1688                         if (0 != (v1 & 0x40))
1689                                 i->status |= V4L2_IN_ST_NO_H_LOCK;
1690                         if (0 != (v2 & 0x40))
1691                                 i->status |= V4L2_IN_ST_NO_SYNC;
1692                         if (0 != (v2 & 0x0e))
1693                                 i->status |= V4L2_IN_ST_MACROVISION;
1694                 }
1695                 for (n = 0; n < TVNORMS; n++)
1696                         i->std |= tvnorms[n].id;
1697                 return 0;
1698         }
1699         case VIDIOC_G_INPUT:
1700         {
1701                 int *i = arg;
1702                 *i = dev->ctl_input;
1703                 return 0;
1704         }
1705         case VIDIOC_S_INPUT:
1706         {
1707                 int *i = arg;
1708
1709                 if (*i < 0  ||  *i >= SAA7134_INPUT_MAX)
1710                         return -EINVAL;
1711                 if (NULL == card_in(dev,*i).name)
1712                         return -EINVAL;
1713                 mutex_lock(&dev->lock);
1714                 video_mux(dev,*i);
1715                 mutex_unlock(&dev->lock);
1716                 return 0;
1717         }
1718
1719         }
1720         return 0;
1721 }
1722 EXPORT_SYMBOL(saa7134_common_ioctl);
1723
1724 /*
1725  * This function is _not_ called directly, but from
1726  * video_generic_ioctl (and maybe others).  userspace
1727  * copying is done already, arg is a kernel pointer.
1728  */
1729 static int video_do_ioctl(struct inode *inode, struct file *file,
1730                           unsigned int cmd, void *arg)
1731 {
1732         struct saa7134_fh *fh = file->private_data;
1733         struct saa7134_dev *dev = fh->dev;
1734         unsigned long flags;
1735         int err;
1736
1737         if (video_debug > 1)
1738                 v4l_print_ioctl(dev->name,cmd);
1739
1740         switch (cmd) {
1741         case VIDIOC_S_CTRL:
1742         case VIDIOC_S_STD:
1743         case VIDIOC_S_INPUT:
1744         case VIDIOC_S_TUNER:
1745         case VIDIOC_S_FREQUENCY:
1746                 err = v4l2_prio_check(&dev->prio,&fh->prio);
1747                 if (0 != err)
1748                         return err;
1749         }
1750
1751         switch (cmd) {
1752         case VIDIOC_QUERYCAP:
1753         {
1754                 struct v4l2_capability *cap = arg;
1755                 unsigned int tuner_type = dev->tuner_type;
1756
1757                 memset(cap,0,sizeof(*cap));
1758                 strcpy(cap->driver, "saa7134");
1759                 strlcpy(cap->card, saa7134_boards[dev->board].name,
1760                         sizeof(cap->card));
1761                 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
1762                 cap->version = SAA7134_VERSION_CODE;
1763                 cap->capabilities =
1764                         V4L2_CAP_VIDEO_CAPTURE |
1765                         V4L2_CAP_VBI_CAPTURE |
1766                         V4L2_CAP_READWRITE |
1767                         V4L2_CAP_STREAMING |
1768                         V4L2_CAP_TUNER;
1769                 if (saa7134_no_overlay <= 0) {
1770                         cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
1771                 }
1772
1773                 if ((tuner_type == TUNER_ABSENT) || (tuner_type == UNSET))
1774                         cap->capabilities &= ~V4L2_CAP_TUNER;
1775
1776                 return 0;
1777         }
1778
1779         /* --- tv standards ------------------------------------------ */
1780         case VIDIOC_ENUMSTD:
1781         {
1782                 struct v4l2_standard *e = arg;
1783                 unsigned int i;
1784
1785                 i = e->index;
1786                 if (i >= TVNORMS)
1787                         return -EINVAL;
1788                 err = v4l2_video_std_construct(e, tvnorms[e->index].id,
1789                                                tvnorms[e->index].name);
1790                 e->index = i;
1791                 if (err < 0)
1792                         return err;
1793                 return 0;
1794         }
1795         case VIDIOC_G_STD:
1796         {
1797                 v4l2_std_id *id = arg;
1798
1799                 *id = dev->tvnorm->id;
1800                 return 0;
1801         }
1802         case VIDIOC_S_STD:
1803         {
1804                 v4l2_std_id *id = arg;
1805                 unsigned int i;
1806                 v4l2_std_id fixup;
1807
1808                 for (i = 0; i < TVNORMS; i++)
1809                         if (*id == tvnorms[i].id)
1810                                 break;
1811                 if (i == TVNORMS)
1812                         for (i = 0; i < TVNORMS; i++)
1813                                 if (*id & tvnorms[i].id)
1814                                         break;
1815                 if (i == TVNORMS)
1816                         return -EINVAL;
1817                 if ((*id & V4L2_STD_SECAM) && (secam[0] != '-')) {
1818                         if (secam[0] == 'L' || secam[0] == 'l') {
1819                                 if (secam[1] == 'C' || secam[1] == 'c')
1820                                         fixup = V4L2_STD_SECAM_LC;
1821                                 else
1822                                         fixup = V4L2_STD_SECAM_L;
1823                         } else {
1824                                 if (secam[0] == 'D' || secam[0] == 'd')
1825                                         fixup = V4L2_STD_SECAM_DK;
1826                                 else
1827                                         fixup = V4L2_STD_SECAM;
1828                         }
1829                         for (i = 0; i < TVNORMS; i++)
1830                                 if (fixup == tvnorms[i].id)
1831                                         break;
1832                 }
1833                 mutex_lock(&dev->lock);
1834                 if (res_check(fh, RESOURCE_OVERLAY)) {
1835                         spin_lock_irqsave(&dev->slock,flags);
1836                         stop_preview(dev,fh);
1837                         spin_unlock_irqrestore(&dev->slock, flags);
1838
1839                         set_tvnorm(dev,&tvnorms[i]);
1840
1841                         spin_lock_irqsave(&dev->slock, flags);
1842                         start_preview(dev,fh);
1843                         spin_unlock_irqrestore(&dev->slock,flags);
1844                 } else
1845                         set_tvnorm(dev,&tvnorms[i]);
1846                 saa7134_tvaudio_do_scan(dev);
1847                 mutex_unlock(&dev->lock);
1848                 return 0;
1849         }
1850
1851         case VIDIOC_CROPCAP:
1852         {
1853                 struct v4l2_cropcap *cap = arg;
1854
1855                 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1856                     cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1857                         return -EINVAL;
1858                 cap->bounds  = dev->crop_bounds;
1859                 cap->defrect = dev->crop_defrect;
1860                 cap->pixelaspect.numerator   = 1;
1861                 cap->pixelaspect.denominator = 1;
1862                 if (dev->tvnorm->id & V4L2_STD_525_60) {
1863                         cap->pixelaspect.numerator   = 11;
1864                         cap->pixelaspect.denominator = 10;
1865                 }
1866                 if (dev->tvnorm->id & V4L2_STD_625_50) {
1867                         cap->pixelaspect.numerator   = 54;
1868                         cap->pixelaspect.denominator = 59;
1869                 }
1870                 return 0;
1871         }
1872
1873         case VIDIOC_G_CROP:
1874         {
1875                 struct v4l2_crop * crop = arg;
1876
1877                 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1878                     crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1879                         return -EINVAL;
1880                 crop->c = dev->crop_current;
1881                 return 0;
1882         }
1883         case VIDIOC_S_CROP:
1884         {
1885                 struct v4l2_crop *crop = arg;
1886                 struct v4l2_rect *b = &dev->crop_bounds;
1887
1888                 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1889                     crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1890                         return -EINVAL;
1891                 if (crop->c.height < 0)
1892                         return -EINVAL;
1893                 if (crop->c.width < 0)
1894                         return -EINVAL;
1895
1896                 if (res_locked(fh->dev,RESOURCE_OVERLAY))
1897                         return -EBUSY;
1898                 if (res_locked(fh->dev,RESOURCE_VIDEO))
1899                         return -EBUSY;
1900
1901                 if (crop->c.top < b->top)
1902                         crop->c.top = b->top;
1903                 if (crop->c.top > b->top + b->height)
1904                         crop->c.top = b->top + b->height;
1905                 if (crop->c.height > b->top - crop->c.top + b->height)
1906                         crop->c.height = b->top - crop->c.top + b->height;
1907
1908                 if (crop->c.left < b->left)
1909                         crop->c.left = b->left;
1910                 if (crop->c.left > b->left + b->width)
1911                         crop->c.left = b->left + b->width;
1912                 if (crop->c.width > b->left - crop->c.left + b->width)
1913                         crop->c.width = b->left - crop->c.left + b->width;
1914
1915                 dev->crop_current = crop->c;
1916                 return 0;
1917         }
1918
1919         /* --- tuner ioctls ------------------------------------------ */
1920         case VIDIOC_G_TUNER:
1921         {
1922                 struct v4l2_tuner *t = arg;
1923                 int n;
1924
1925                 if (0 != t->index)
1926                         return -EINVAL;
1927                 memset(t,0,sizeof(*t));
1928                 for (n = 0; n < SAA7134_INPUT_MAX; n++)
1929                         if (card_in(dev,n).tv)
1930                                 break;
1931                 if (NULL != card_in(dev,n).name) {
1932                         strcpy(t->name, "Television");
1933                         t->type = V4L2_TUNER_ANALOG_TV;
1934                         t->capability = V4L2_TUNER_CAP_NORM |
1935                                 V4L2_TUNER_CAP_STEREO |
1936                                 V4L2_TUNER_CAP_LANG1 |
1937                                 V4L2_TUNER_CAP_LANG2;
1938                         t->rangehigh = 0xffffffffUL;
1939                         t->rxsubchans = saa7134_tvaudio_getstereo(dev);
1940                         t->audmode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1941                 }
1942                 if (0 != (saa_readb(SAA7134_STATUS_VIDEO1) & 0x03))
1943                         t->signal = 0xffff;
1944                 return 0;
1945         }
1946         case VIDIOC_S_TUNER:
1947         {
1948                 struct v4l2_tuner *t = arg;
1949                 int rx,mode;
1950
1951                 mode = dev->thread.mode;
1952                 if (UNSET == mode) {
1953                         rx   = saa7134_tvaudio_getstereo(dev);
1954                         mode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1955                 }
1956                 if (mode != t->audmode) {
1957                         dev->thread.mode = t->audmode;
1958                 }
1959                 return 0;
1960         }
1961         case VIDIOC_G_FREQUENCY:
1962         {
1963                 struct v4l2_frequency *f = arg;
1964
1965                 memset(f,0,sizeof(*f));
1966                 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1967                 f->frequency = dev->ctl_freq;
1968                 return 0;
1969         }
1970         case VIDIOC_S_FREQUENCY:
1971         {
1972                 struct v4l2_frequency *f = arg;
1973
1974                 if (0 != f->tuner)
1975                         return -EINVAL;
1976                 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1977                         return -EINVAL;
1978                 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1979                         return -EINVAL;
1980                 mutex_lock(&dev->lock);
1981                 dev->ctl_freq = f->frequency;
1982
1983                 saa7134_i2c_call_clients(dev,VIDIOC_S_FREQUENCY,f);
1984
1985                 saa7134_tvaudio_do_scan(dev);
1986                 mutex_unlock(&dev->lock);
1987                 return 0;
1988         }
1989
1990         /* --- control ioctls ---------------------------------------- */
1991         case VIDIOC_ENUMINPUT:
1992         case VIDIOC_G_INPUT:
1993         case VIDIOC_S_INPUT:
1994         case VIDIOC_QUERYCTRL:
1995         case VIDIOC_G_CTRL:
1996         case VIDIOC_S_CTRL:
1997                 return saa7134_common_ioctl(dev, cmd, arg);
1998
1999         case VIDIOC_G_AUDIO:
2000         {
2001                 struct v4l2_audio *a = arg;
2002
2003                 memset(a,0,sizeof(*a));
2004                 strcpy(a->name,"audio");
2005                 return 0;
2006         }
2007         case VIDIOC_S_AUDIO:
2008                 return 0;
2009         case VIDIOC_G_PARM:
2010         {
2011                 struct v4l2_captureparm *parm = arg;
2012                 memset(parm,0,sizeof(*parm));
2013                 return 0;
2014         }
2015
2016         case VIDIOC_G_PRIORITY:
2017         {
2018                 enum v4l2_priority *p = arg;
2019
2020                 *p = v4l2_prio_max(&dev->prio);
2021                 return 0;
2022         }
2023         case VIDIOC_S_PRIORITY:
2024         {
2025                 enum v4l2_priority *prio = arg;
2026
2027                 return v4l2_prio_change(&dev->prio, &fh->prio, *prio);
2028         }
2029
2030         /* --- preview ioctls ---------------------------------------- */
2031         case VIDIOC_ENUM_FMT:
2032         {
2033                 struct v4l2_fmtdesc *f = arg;
2034                 enum v4l2_buf_type type;
2035                 unsigned int index;
2036
2037                 index = f->index;
2038                 type  = f->type;
2039                 switch (type) {
2040                 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2041                 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2042                         if (saa7134_no_overlay > 0) {
2043                                 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2044                                 return -EINVAL;
2045                         }
2046                         if (index >= FORMATS)
2047                                 return -EINVAL;
2048                         if (f->type == V4L2_BUF_TYPE_VIDEO_OVERLAY &&
2049                             formats[index].planar)
2050                                 return -EINVAL;
2051                         memset(f,0,sizeof(*f));
2052                         f->index = index;
2053                         f->type  = type;
2054                         strlcpy(f->description,formats[index].name,sizeof(f->description));
2055                         f->pixelformat = formats[index].fourcc;
2056                         break;
2057                 case V4L2_BUF_TYPE_VBI_CAPTURE:
2058                         if (0 != index)
2059                                 return -EINVAL;
2060                         memset(f,0,sizeof(*f));
2061                         f->index = index;
2062                         f->type  = type;
2063                         f->pixelformat = V4L2_PIX_FMT_GREY;
2064                         strcpy(f->description,"vbi data");
2065                         break;
2066                 default:
2067                         return -EINVAL;
2068                 }
2069                 return 0;
2070         }
2071         case VIDIOC_G_FBUF:
2072         {
2073                 struct v4l2_framebuffer *fb = arg;
2074
2075                 *fb = dev->ovbuf;
2076                 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2077                 return 0;
2078         }
2079         case VIDIOC_S_FBUF:
2080         {
2081                 struct v4l2_framebuffer *fb = arg;
2082                 struct saa7134_format *fmt;
2083
2084                 if(!capable(CAP_SYS_ADMIN) &&
2085                    !capable(CAP_SYS_RAWIO))
2086                         return -EPERM;
2087
2088                 /* check args */
2089                 fmt = format_by_fourcc(fb->fmt.pixelformat);
2090                 if (NULL == fmt)
2091                         return -EINVAL;
2092
2093                 /* ok, accept it */
2094                 dev->ovbuf = *fb;
2095                 dev->ovfmt = fmt;
2096                 if (0 == dev->ovbuf.fmt.bytesperline)
2097                         dev->ovbuf.fmt.bytesperline =
2098                                 dev->ovbuf.fmt.width*fmt->depth/8;
2099                 return 0;
2100         }
2101         case VIDIOC_OVERLAY:
2102         {
2103                 int *on = arg;
2104
2105                 if (*on) {
2106                         if (saa7134_no_overlay > 0) {
2107                                 printk ("no_overlay\n");
2108                                 return -EINVAL;
2109                         }
2110
2111                         if (!res_get(dev,fh,RESOURCE_OVERLAY))
2112                                 return -EBUSY;
2113                         spin_lock_irqsave(&dev->slock,flags);
2114                         start_preview(dev,fh);
2115                         spin_unlock_irqrestore(&dev->slock,flags);
2116                 }
2117                 if (!*on) {
2118                         if (!res_check(fh, RESOURCE_OVERLAY))
2119                                 return -EINVAL;
2120                         spin_lock_irqsave(&dev->slock,flags);
2121                         stop_preview(dev,fh);
2122                         spin_unlock_irqrestore(&dev->slock,flags);
2123                         res_free(dev,fh,RESOURCE_OVERLAY);
2124                 }
2125                 return 0;
2126         }
2127
2128         /* --- capture ioctls ---------------------------------------- */
2129         case VIDIOC_G_FMT:
2130         {
2131                 struct v4l2_format *f = arg;
2132                 return saa7134_g_fmt(dev,fh,f);
2133         }
2134         case VIDIOC_S_FMT:
2135         {
2136                 struct v4l2_format *f = arg;
2137                 return saa7134_s_fmt(dev,fh,f);
2138         }
2139         case VIDIOC_TRY_FMT:
2140         {
2141                 struct v4l2_format *f = arg;
2142                 return saa7134_try_fmt(dev,fh,f);
2143         }
2144 #ifdef CONFIG_VIDEO_V4L1_COMPAT
2145         case VIDIOCGMBUF:
2146                 return videobuf_cgmbuf(saa7134_queue(fh), arg, gbuffers);
2147 #endif
2148         case VIDIOC_REQBUFS:
2149                 return videobuf_reqbufs(saa7134_queue(fh),arg);
2150
2151         case VIDIOC_QUERYBUF:
2152                 return videobuf_querybuf(saa7134_queue(fh),arg);
2153
2154         case VIDIOC_QBUF:
2155                 return videobuf_qbuf(saa7134_queue(fh),arg);
2156
2157         case VIDIOC_DQBUF:
2158                 return videobuf_dqbuf(saa7134_queue(fh),arg,
2159                                       file->f_flags & O_NONBLOCK);
2160
2161         case VIDIOC_STREAMON:
2162         {
2163                 int res = saa7134_resource(fh);
2164
2165                 if (!res_get(dev,fh,res))
2166                         return -EBUSY;
2167                 return videobuf_streamon(saa7134_queue(fh));
2168         }
2169         case VIDIOC_STREAMOFF:
2170         {
2171                 int res = saa7134_resource(fh);
2172
2173                 err = videobuf_streamoff(saa7134_queue(fh));
2174                 if (err < 0)
2175                         return err;
2176                 res_free(dev,fh,res);
2177                 return 0;
2178         }
2179
2180         default:
2181                 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2182                                                   video_do_ioctl);
2183         }
2184         return 0;
2185 }
2186
2187 static int video_ioctl(struct inode *inode, struct file *file,
2188                        unsigned int cmd, unsigned long arg)
2189 {
2190         return video_usercopy(inode, file, cmd, arg, video_do_ioctl);
2191 }
2192
2193 static int radio_do_ioctl(struct inode *inode, struct file *file,
2194                           unsigned int cmd, void *arg)
2195 {
2196         struct saa7134_fh *fh = file->private_data;
2197         struct saa7134_dev *dev = fh->dev;
2198
2199         if (video_debug > 1)
2200                 v4l_print_ioctl(dev->name,cmd);
2201         switch (cmd) {
2202         case VIDIOC_QUERYCAP:
2203         {
2204                 struct v4l2_capability *cap = arg;
2205
2206                 memset(cap,0,sizeof(*cap));
2207                 strcpy(cap->driver, "saa7134");
2208                 strlcpy(cap->card, saa7134_boards[dev->board].name,
2209                         sizeof(cap->card));
2210                 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
2211                 cap->version = SAA7134_VERSION_CODE;
2212                 cap->capabilities = V4L2_CAP_TUNER;
2213                 return 0;
2214         }
2215         case VIDIOC_G_TUNER:
2216         {
2217                 struct v4l2_tuner *t = arg;
2218
2219                 if (0 != t->index)
2220                         return -EINVAL;
2221
2222                 memset(t,0,sizeof(*t));
2223                 strcpy(t->name, "Radio");
2224                 t->type = V4L2_TUNER_RADIO;
2225
2226                 saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
2227                 if (dev->input->amux == TV) {
2228                         t->signal = 0xf800 - ((saa_readb(0x581) & 0x1f) << 11);
2229                         t->rxsubchans = (saa_readb(0x529) & 0x08) ?
2230                                         V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
2231                 }
2232                 return 0;
2233         }
2234         case VIDIOC_S_TUNER:
2235         {
2236                 struct v4l2_tuner *t = arg;
2237
2238                 if (0 != t->index)
2239                         return -EINVAL;
2240
2241                 saa7134_i2c_call_clients(dev,VIDIOC_S_TUNER,t);
2242
2243                 return 0;
2244         }
2245         case VIDIOC_ENUMINPUT:
2246         {
2247                 struct v4l2_input *i = arg;
2248
2249                 if (i->index != 0)
2250                         return -EINVAL;
2251                 strcpy(i->name,"Radio");
2252                 i->type = V4L2_INPUT_TYPE_TUNER;
2253                 return 0;
2254         }
2255         case VIDIOC_G_INPUT:
2256         {
2257                 int *i = arg;
2258                 *i = 0;
2259                 return 0;
2260         }
2261         case VIDIOC_G_AUDIO:
2262         {
2263                 struct v4l2_audio *a = arg;
2264
2265                 memset(a,0,sizeof(*a));
2266                 strcpy(a->name,"Radio");
2267                 return 0;
2268         }
2269         case VIDIOC_G_STD:
2270         {
2271                 v4l2_std_id *id = arg;
2272                 *id = 0;
2273                 return 0;
2274         }
2275         case VIDIOC_S_AUDIO:
2276         case VIDIOC_S_INPUT:
2277         case VIDIOC_S_STD:
2278                 return 0;
2279
2280         case VIDIOC_QUERYCTRL:
2281         {
2282                 const struct v4l2_queryctrl *ctrl;
2283                 struct v4l2_queryctrl *c = arg;
2284
2285                 if (c->id <  V4L2_CID_BASE ||
2286                     c->id >= V4L2_CID_LASTP1)
2287                         return -EINVAL;
2288                 if (c->id == V4L2_CID_AUDIO_MUTE) {
2289                         ctrl = ctrl_by_id(c->id);
2290                         *c = *ctrl;
2291                 } else
2292                         *c = no_ctrl;
2293                 return 0;
2294         }
2295
2296         case VIDIOC_G_CTRL:
2297         case VIDIOC_S_CTRL:
2298         case VIDIOC_G_FREQUENCY:
2299         case VIDIOC_S_FREQUENCY:
2300                 return video_do_ioctl(inode,file,cmd,arg);
2301
2302         default:
2303                 return v4l_compat_translate_ioctl(inode,file,cmd,arg,
2304                                                   radio_do_ioctl);
2305         }
2306         return 0;
2307 }
2308
2309 static int radio_ioctl(struct inode *inode, struct file *file,
2310                        unsigned int cmd, unsigned long arg)
2311 {
2312         return video_usercopy(inode, file, cmd, arg, radio_do_ioctl);
2313 }
2314
2315 static const struct file_operations video_fops =
2316 {
2317         .owner    = THIS_MODULE,
2318         .open     = video_open,
2319         .release  = video_release,
2320         .read     = video_read,
2321         .poll     = video_poll,
2322         .mmap     = video_mmap,
2323         .ioctl    = video_ioctl,
2324         .compat_ioctl   = v4l_compat_ioctl32,
2325         .llseek   = no_llseek,
2326 };
2327
2328 static const struct file_operations radio_fops =
2329 {
2330         .owner    = THIS_MODULE,
2331         .open     = video_open,
2332         .release  = video_release,
2333         .ioctl    = radio_ioctl,
2334         .compat_ioctl   = v4l_compat_ioctl32,
2335         .llseek   = no_llseek,
2336 };
2337
2338 /* ----------------------------------------------------------- */
2339 /* exported stuff                                              */
2340
2341 struct video_device saa7134_video_template =
2342 {
2343         .name          = "saa7134-video",
2344         .type          = VID_TYPE_CAPTURE|VID_TYPE_TUNER|
2345                          VID_TYPE_CLIPPING|VID_TYPE_SCALES,
2346         .hardware      = 0,
2347         .fops          = &video_fops,
2348         .minor         = -1,
2349 };
2350
2351 struct video_device saa7134_vbi_template =
2352 {
2353         .name          = "saa7134-vbi",
2354         .type          = VID_TYPE_TUNER|VID_TYPE_TELETEXT,
2355         .hardware      = 0,
2356         .fops          = &video_fops,
2357         .minor         = -1,
2358 };
2359
2360 struct video_device saa7134_radio_template =
2361 {
2362         .name          = "saa7134-radio",
2363         .type          = VID_TYPE_TUNER,
2364         .hardware      = 0,
2365         .fops          = &radio_fops,
2366         .minor         = -1,
2367 };
2368
2369 int saa7134_video_init1(struct saa7134_dev *dev)
2370 {
2371         /* sanitycheck insmod options */
2372         if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
2373                 gbuffers = 2;
2374         if (gbufsize < 0 || gbufsize > gbufsize_max)
2375                 gbufsize = gbufsize_max;
2376         gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
2377
2378         /* put some sensible defaults into the data structures ... */
2379         dev->ctl_bright     = ctrl_by_id(V4L2_CID_BRIGHTNESS)->default_value;
2380         dev->ctl_contrast   = ctrl_by_id(V4L2_CID_CONTRAST)->default_value;
2381         dev->ctl_hue        = ctrl_by_id(V4L2_CID_HUE)->default_value;
2382         dev->ctl_saturation = ctrl_by_id(V4L2_CID_SATURATION)->default_value;
2383         dev->ctl_volume     = ctrl_by_id(V4L2_CID_AUDIO_VOLUME)->default_value;
2384         dev->ctl_mute       = 1; // ctrl_by_id(V4L2_CID_AUDIO_MUTE)->default_value;
2385         dev->ctl_invert     = ctrl_by_id(V4L2_CID_PRIVATE_INVERT)->default_value;
2386         dev->ctl_automute   = ctrl_by_id(V4L2_CID_PRIVATE_AUTOMUTE)->default_value;
2387
2388         if (dev->tda9887_conf && dev->ctl_automute)
2389                 dev->tda9887_conf |= TDA9887_AUTOMUTE;
2390         dev->automute       = 0;
2391
2392         INIT_LIST_HEAD(&dev->video_q.queue);
2393         init_timer(&dev->video_q.timeout);
2394         dev->video_q.timeout.function = saa7134_buffer_timeout;
2395         dev->video_q.timeout.data     = (unsigned long)(&dev->video_q);
2396         dev->video_q.dev              = dev;
2397
2398         if (saa7134_boards[dev->board].video_out) {
2399                 /* enable video output */
2400                 int vo = saa7134_boards[dev->board].video_out;
2401                 int video_reg;
2402                 unsigned int vid_port_opts = saa7134_boards[dev->board].vid_port_opts;
2403                 saa_writeb(SAA7134_VIDEO_PORT_CTRL0, video_out[vo][0]);
2404                 video_reg = video_out[vo][1];
2405                 if (vid_port_opts & SET_T_CODE_POLARITY_NON_INVERTED)
2406                         video_reg &= ~VP_T_CODE_P_INVERTED;
2407                 saa_writeb(SAA7134_VIDEO_PORT_CTRL1, video_reg);
2408                 saa_writeb(SAA7134_VIDEO_PORT_CTRL2, video_out[vo][2]);
2409                 saa_writeb(SAA7134_VIDEO_PORT_CTRL3, video_out[vo][3]);
2410                 saa_writeb(SAA7134_VIDEO_PORT_CTRL4, video_out[vo][4]);
2411                 video_reg = video_out[vo][5];
2412                 if (vid_port_opts & SET_CLOCK_NOT_DELAYED)
2413                         video_reg &= ~VP_CLK_CTRL2_DELAYED;
2414                 if (vid_port_opts & SET_CLOCK_INVERTED)
2415                         video_reg |= VP_CLK_CTRL1_INVERTED;
2416                 saa_writeb(SAA7134_VIDEO_PORT_CTRL5, video_reg);
2417                 video_reg = video_out[vo][6];
2418                 if (vid_port_opts & SET_VSYNC_OFF) {
2419                         video_reg &= ~VP_VS_TYPE_MASK;
2420                         video_reg |= VP_VS_TYPE_OFF;
2421                 }
2422                 saa_writeb(SAA7134_VIDEO_PORT_CTRL6, video_reg);
2423                 saa_writeb(SAA7134_VIDEO_PORT_CTRL7, video_out[vo][7]);
2424                 saa_writeb(SAA7134_VIDEO_PORT_CTRL8, video_out[vo][8]);
2425         }
2426
2427         return 0;
2428 }
2429
2430 int saa7134_video_init2(struct saa7134_dev *dev)
2431 {
2432         /* init video hw */
2433         set_tvnorm(dev,&tvnorms[0]);
2434         video_mux(dev,0);
2435         saa7134_tvaudio_setmute(dev);
2436         saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
2437         return 0;
2438 }
2439
2440 void saa7134_irq_video_intl(struct saa7134_dev *dev)
2441 {
2442         static const char *st[] = {
2443                 "(no signal)", "NTSC", "PAL", "SECAM" };
2444         u32 st1,st2;
2445
2446         st1 = saa_readb(SAA7134_STATUS_VIDEO1);
2447         st2 = saa_readb(SAA7134_STATUS_VIDEO2);
2448         dprintk("DCSDT: pll: %s, sync: %s, norm: %s\n",
2449                 (st1 & 0x40) ? "not locked" : "locked",
2450                 (st2 & 0x40) ? "no"         : "yes",
2451                 st[st1 & 0x03]);
2452         dev->nosignal = (st1 & 0x40) || (st2 & 0x40);
2453
2454         if (dev->nosignal) {
2455                 /* no video signal -> mute audio */
2456                 if (dev->ctl_automute)
2457                         dev->automute = 1;
2458                 saa7134_tvaudio_setmute(dev);
2459                 saa_setb(SAA7134_SYNC_CTRL, 0x20);
2460         } else {
2461                 /* wake up tvaudio audio carrier scan thread */
2462                 saa7134_tvaudio_do_scan(dev);
2463                 if (!noninterlaced)
2464                         saa_clearb(SAA7134_SYNC_CTRL, 0x20);
2465         }
2466         if (dev->mops && dev->mops->signal_change)
2467                 dev->mops->signal_change(dev);
2468 }
2469
2470 void saa7134_irq_video_done(struct saa7134_dev *dev, unsigned long status)
2471 {
2472         enum v4l2_field field;
2473
2474         spin_lock(&dev->slock);
2475         if (dev->video_q.curr) {
2476                 dev->video_fieldcount++;
2477                 field = dev->video_q.curr->vb.field;
2478                 if (V4L2_FIELD_HAS_BOTH(field)) {
2479                         /* make sure we have seen both fields */
2480                         if ((status & 0x10) == 0x00) {
2481                                 dev->video_q.curr->top_seen = 1;
2482                                 goto done;
2483                         }
2484                         if (!dev->video_q.curr->top_seen)
2485                                 goto done;
2486                 } else if (field == V4L2_FIELD_TOP) {
2487                         if ((status & 0x10) != 0x10)
2488                                 goto done;
2489                 } else if (field == V4L2_FIELD_BOTTOM) {
2490                         if ((status & 0x10) != 0x00)
2491                                 goto done;
2492                 }
2493                 dev->video_q.curr->vb.field_count = dev->video_fieldcount;
2494                 saa7134_buffer_finish(dev,&dev->video_q,STATE_DONE);
2495         }
2496         saa7134_buffer_next(dev,&dev->video_q);
2497
2498  done:
2499         spin_unlock(&dev->slock);
2500 }
2501
2502 /* ----------------------------------------------------------- */
2503 /*
2504  * Local variables:
2505  * c-basic-offset: 8
2506  * End:
2507  */