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