blob: 9705f1f395093cf3cdc2efb6336ffcdffcaeebf1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/slab.h>
Heikki Orsila9040b322007-04-27 12:31:18 -030028#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include "saa7134-reg.h"
31#include "saa7134.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020032#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030034#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080035/* Include V4L1 specific functions. Should be removed soon */
36#include <linux/videodev.h>
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030037#endif
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* ------------------------------------------------------------------ */
40
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -030041unsigned int video_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static unsigned int gbuffers = 8;
Maxim Levitsky11f70782007-09-27 20:44:39 -030043static unsigned int noninterlaced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static unsigned int gbufsize = 720*576*4;
45static unsigned int gbufsize_max = 720*576*4;
Hartmut Hackmann17b10a72006-10-02 19:55:07 -030046static char secam[] = "--";
Linus Torvalds1da177e2005-04-16 15:20:36 -070047module_param(video_debug, int, 0644);
48MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
49module_param(gbuffers, int, 0444);
50MODULE_PARM_DESC(gbuffers,"number of capture buffers, range 2-32");
51module_param(noninterlaced, int, 0644);
Hartmut Hackmannd5fdd132006-07-15 09:45:34 -030052MODULE_PARM_DESC(noninterlaced,"capture non interlaced video");
Hartmut Hackmann17b10a72006-10-02 19:55:07 -030053module_param_string(secam, secam, sizeof(secam), 0644);
54MODULE_PARM_DESC(secam, "force SECAM variant, either DK,L or Lc");
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -030057#define dprintk(fmt, arg...) if (video_debug&0x04) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 printk(KERN_DEBUG "%s/video: " fmt, dev->name , ## arg)
59
60/* ------------------------------------------------------------------ */
Robert W. Boone2f8d4f52005-11-08 21:37:10 -080061/* Defines for Video Output Port Register at address 0x191 */
62
63/* Bit 0: VIP code T bit polarity */
64
65#define VP_T_CODE_P_NON_INVERTED 0x00
66#define VP_T_CODE_P_INVERTED 0x01
67
68/* ------------------------------------------------------------------ */
69/* Defines for Video Output Port Register at address 0x195 */
70
71/* Bit 2: Video output clock delay control */
72
73#define VP_CLK_CTRL2_NOT_DELAYED 0x00
74#define VP_CLK_CTRL2_DELAYED 0x04
75
76/* Bit 1: Video output clock invert control */
77
78#define VP_CLK_CTRL1_NON_INVERTED 0x00
79#define VP_CLK_CTRL1_INVERTED 0x02
80
81/* ------------------------------------------------------------------ */
82/* Defines for Video Output Port Register at address 0x196 */
83
84/* Bits 2 to 0: VSYNC pin video vertical sync type */
85
86#define VP_VS_TYPE_MASK 0x07
87
88#define VP_VS_TYPE_OFF 0x00
89#define VP_VS_TYPE_V123 0x01
90#define VP_VS_TYPE_V_ITU 0x02
91#define VP_VS_TYPE_VGATE_L 0x03
92#define VP_VS_TYPE_RESERVED1 0x04
93#define VP_VS_TYPE_RESERVED2 0x05
94#define VP_VS_TYPE_F_ITU 0x06
95#define VP_VS_TYPE_SC_FID 0x07
96
97/* ------------------------------------------------------------------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* data structs for video */
99
100static int video_out[][9] = {
101 [CCIR656] = { 0x00, 0xb1, 0x00, 0xa1, 0x00, 0x04, 0x06, 0x00, 0x00 },
102};
103
104static struct saa7134_format formats[] = {
105 {
106 .name = "8 bpp gray",
107 .fourcc = V4L2_PIX_FMT_GREY,
108 .depth = 8,
109 .pm = 0x06,
110 },{
111 .name = "15 bpp RGB, le",
112 .fourcc = V4L2_PIX_FMT_RGB555,
113 .depth = 16,
114 .pm = 0x13 | 0x80,
115 },{
116 .name = "15 bpp RGB, be",
117 .fourcc = V4L2_PIX_FMT_RGB555X,
118 .depth = 16,
119 .pm = 0x13 | 0x80,
120 .bswap = 1,
121 },{
122 .name = "16 bpp RGB, le",
123 .fourcc = V4L2_PIX_FMT_RGB565,
124 .depth = 16,
125 .pm = 0x10 | 0x80,
126 },{
127 .name = "16 bpp RGB, be",
128 .fourcc = V4L2_PIX_FMT_RGB565X,
129 .depth = 16,
130 .pm = 0x10 | 0x80,
131 .bswap = 1,
132 },{
133 .name = "24 bpp RGB, le",
134 .fourcc = V4L2_PIX_FMT_BGR24,
135 .depth = 24,
136 .pm = 0x11,
137 },{
138 .name = "24 bpp RGB, be",
139 .fourcc = V4L2_PIX_FMT_RGB24,
140 .depth = 24,
141 .pm = 0x11,
142 .bswap = 1,
143 },{
144 .name = "32 bpp RGB, le",
145 .fourcc = V4L2_PIX_FMT_BGR32,
146 .depth = 32,
147 .pm = 0x12,
148 },{
149 .name = "32 bpp RGB, be",
150 .fourcc = V4L2_PIX_FMT_RGB32,
151 .depth = 32,
152 .pm = 0x12,
153 .bswap = 1,
154 .wswap = 1,
155 },{
156 .name = "4:2:2 packed, YUYV",
157 .fourcc = V4L2_PIX_FMT_YUYV,
158 .depth = 16,
159 .pm = 0x00,
160 .bswap = 1,
161 .yuv = 1,
162 },{
163 .name = "4:2:2 packed, UYVY",
164 .fourcc = V4L2_PIX_FMT_UYVY,
165 .depth = 16,
166 .pm = 0x00,
167 .yuv = 1,
168 },{
169 .name = "4:2:2 planar, Y-Cb-Cr",
170 .fourcc = V4L2_PIX_FMT_YUV422P,
171 .depth = 16,
172 .pm = 0x09,
173 .yuv = 1,
174 .planar = 1,
175 .hshift = 1,
176 .vshift = 0,
177 },{
178 .name = "4:2:0 planar, Y-Cb-Cr",
179 .fourcc = V4L2_PIX_FMT_YUV420,
180 .depth = 12,
181 .pm = 0x0a,
182 .yuv = 1,
183 .planar = 1,
184 .hshift = 1,
185 .vshift = 1,
186 },{
187 .name = "4:2:0 planar, Y-Cb-Cr",
188 .fourcc = V4L2_PIX_FMT_YVU420,
189 .depth = 12,
190 .pm = 0x0a,
191 .yuv = 1,
192 .planar = 1,
193 .uvswap = 1,
194 .hshift = 1,
195 .vshift = 1,
196 }
197};
198#define FORMATS ARRAY_SIZE(formats)
199
200#define NORM_625_50 \
201 .h_start = 0, \
202 .h_stop = 719, \
203 .video_v_start = 24, \
204 .video_v_stop = 311, \
Michael Schimekf246a812005-06-23 22:04:47 -0700205 .vbi_v_start_0 = 7, \
206 .vbi_v_stop_0 = 22, \
207 .vbi_v_start_1 = 319, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .src_timing = 4
209
210#define NORM_525_60 \
211 .h_start = 0, \
212 .h_stop = 703, \
Michael Schimekf246a812005-06-23 22:04:47 -0700213 .video_v_start = 23, \
214 .video_v_stop = 262, \
215 .vbi_v_start_0 = 10, \
216 .vbi_v_stop_0 = 21, \
217 .vbi_v_start_1 = 273, \
218 .src_timing = 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static struct saa7134_tvnorm tvnorms[] = {
221 {
222 .name = "PAL", /* autodetect */
223 .id = V4L2_STD_PAL,
224 NORM_625_50,
225
226 .sync_control = 0x18,
227 .luma_control = 0x40,
228 .chroma_ctrl1 = 0x81,
229 .chroma_gain = 0x2a,
230 .chroma_ctrl2 = 0x06,
231 .vgate_misc = 0x1c,
232
233 },{
234 .name = "PAL-BG",
235 .id = V4L2_STD_PAL_BG,
236 NORM_625_50,
237
238 .sync_control = 0x18,
239 .luma_control = 0x40,
240 .chroma_ctrl1 = 0x81,
241 .chroma_gain = 0x2a,
242 .chroma_ctrl2 = 0x06,
243 .vgate_misc = 0x1c,
244
245 },{
246 .name = "PAL-I",
247 .id = V4L2_STD_PAL_I,
248 NORM_625_50,
249
250 .sync_control = 0x18,
251 .luma_control = 0x40,
252 .chroma_ctrl1 = 0x81,
253 .chroma_gain = 0x2a,
254 .chroma_ctrl2 = 0x06,
255 .vgate_misc = 0x1c,
256
257 },{
258 .name = "PAL-DK",
259 .id = V4L2_STD_PAL_DK,
260 NORM_625_50,
261
262 .sync_control = 0x18,
263 .luma_control = 0x40,
264 .chroma_ctrl1 = 0x81,
265 .chroma_gain = 0x2a,
266 .chroma_ctrl2 = 0x06,
267 .vgate_misc = 0x1c,
268
269 },{
270 .name = "NTSC",
271 .id = V4L2_STD_NTSC,
272 NORM_525_60,
273
274 .sync_control = 0x59,
275 .luma_control = 0x40,
276 .chroma_ctrl1 = 0x89,
277 .chroma_gain = 0x2a,
278 .chroma_ctrl2 = 0x0e,
279 .vgate_misc = 0x18,
280
281 },{
282 .name = "SECAM",
283 .id = V4L2_STD_SECAM,
284 NORM_625_50,
285
Hartmut Hackmann17b10a72006-10-02 19:55:07 -0300286 .sync_control = 0x18,
287 .luma_control = 0x1b,
288 .chroma_ctrl1 = 0xd1,
289 .chroma_gain = 0x80,
290 .chroma_ctrl2 = 0x00,
291 .vgate_misc = 0x1c,
292
293 },{
294 .name = "SECAM-DK",
295 .id = V4L2_STD_SECAM_DK,
296 NORM_625_50,
297
298 .sync_control = 0x18,
299 .luma_control = 0x1b,
300 .chroma_ctrl1 = 0xd1,
301 .chroma_gain = 0x80,
302 .chroma_ctrl2 = 0x00,
303 .vgate_misc = 0x1c,
304
305 },{
306 .name = "SECAM-L",
307 .id = V4L2_STD_SECAM_L,
308 NORM_625_50,
309
310 .sync_control = 0x18,
311 .luma_control = 0x1b,
312 .chroma_ctrl1 = 0xd1,
313 .chroma_gain = 0x80,
314 .chroma_ctrl2 = 0x00,
315 .vgate_misc = 0x1c,
316
317 },{
318 .name = "SECAM-Lc",
319 .id = V4L2_STD_SECAM_LC,
320 NORM_625_50,
321
322 .sync_control = 0x18,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 .luma_control = 0x1b,
324 .chroma_ctrl1 = 0xd1,
325 .chroma_gain = 0x80,
326 .chroma_ctrl2 = 0x00,
327 .vgate_misc = 0x1c,
328
329 },{
330 .name = "PAL-M",
331 .id = V4L2_STD_PAL_M,
332 NORM_525_60,
333
334 .sync_control = 0x59,
335 .luma_control = 0x40,
336 .chroma_ctrl1 = 0xb9,
337 .chroma_gain = 0x2a,
338 .chroma_ctrl2 = 0x0e,
339 .vgate_misc = 0x18,
340
341 },{
342 .name = "PAL-Nc",
343 .id = V4L2_STD_PAL_Nc,
344 NORM_625_50,
345
346 .sync_control = 0x18,
347 .luma_control = 0x40,
348 .chroma_ctrl1 = 0xa1,
349 .chroma_gain = 0x2a,
350 .chroma_ctrl2 = 0x06,
351 .vgate_misc = 0x1c,
352
353 },{
354 .name = "PAL-60",
355 .id = V4L2_STD_PAL_60,
356
357 .h_start = 0,
358 .h_stop = 719,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800359 .video_v_start = 23,
360 .video_v_stop = 262,
361 .vbi_v_start_0 = 10,
362 .vbi_v_stop_0 = 21,
363 .vbi_v_start_1 = 273,
364 .src_timing = 7,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 .sync_control = 0x18,
367 .luma_control = 0x40,
368 .chroma_ctrl1 = 0x81,
369 .chroma_gain = 0x2a,
370 .chroma_ctrl2 = 0x06,
371 .vgate_misc = 0x1c,
372 }
373};
374#define TVNORMS ARRAY_SIZE(tvnorms)
375
376#define V4L2_CID_PRIVATE_INVERT (V4L2_CID_PRIVATE_BASE + 0)
377#define V4L2_CID_PRIVATE_Y_ODD (V4L2_CID_PRIVATE_BASE + 1)
378#define V4L2_CID_PRIVATE_Y_EVEN (V4L2_CID_PRIVATE_BASE + 2)
379#define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 3)
380#define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 4)
381
382static const struct v4l2_queryctrl no_ctrl = {
383 .name = "42",
384 .flags = V4L2_CTRL_FLAG_DISABLED,
385};
386static const struct v4l2_queryctrl video_ctrls[] = {
387 /* --- video --- */
388 {
389 .id = V4L2_CID_BRIGHTNESS,
390 .name = "Brightness",
391 .minimum = 0,
392 .maximum = 255,
393 .step = 1,
394 .default_value = 128,
395 .type = V4L2_CTRL_TYPE_INTEGER,
396 },{
397 .id = V4L2_CID_CONTRAST,
398 .name = "Contrast",
399 .minimum = 0,
400 .maximum = 127,
401 .step = 1,
402 .default_value = 68,
403 .type = V4L2_CTRL_TYPE_INTEGER,
404 },{
405 .id = V4L2_CID_SATURATION,
406 .name = "Saturation",
407 .minimum = 0,
408 .maximum = 127,
409 .step = 1,
410 .default_value = 64,
411 .type = V4L2_CTRL_TYPE_INTEGER,
412 },{
413 .id = V4L2_CID_HUE,
414 .name = "Hue",
415 .minimum = -128,
416 .maximum = 127,
417 .step = 1,
418 .default_value = 0,
419 .type = V4L2_CTRL_TYPE_INTEGER,
420 },{
Michael Schimekf246a812005-06-23 22:04:47 -0700421 .id = V4L2_CID_HFLIP,
422 .name = "Mirror",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .minimum = 0,
424 .maximum = 1,
425 .type = V4L2_CTRL_TYPE_BOOLEAN,
426 },
427 /* --- audio --- */
428 {
429 .id = V4L2_CID_AUDIO_MUTE,
430 .name = "Mute",
431 .minimum = 0,
432 .maximum = 1,
433 .type = V4L2_CTRL_TYPE_BOOLEAN,
434 },{
435 .id = V4L2_CID_AUDIO_VOLUME,
436 .name = "Volume",
437 .minimum = -15,
438 .maximum = 15,
439 .step = 1,
440 .default_value = 0,
441 .type = V4L2_CTRL_TYPE_INTEGER,
442 },
443 /* --- private --- */
444 {
445 .id = V4L2_CID_PRIVATE_INVERT,
446 .name = "Invert",
447 .minimum = 0,
448 .maximum = 1,
449 .type = V4L2_CTRL_TYPE_BOOLEAN,
450 },{
451 .id = V4L2_CID_PRIVATE_Y_ODD,
452 .name = "y offset odd field",
453 .minimum = 0,
454 .maximum = 128,
455 .default_value = 0,
456 .type = V4L2_CTRL_TYPE_INTEGER,
457 },{
458 .id = V4L2_CID_PRIVATE_Y_EVEN,
459 .name = "y offset even field",
460 .minimum = 0,
461 .maximum = 128,
462 .default_value = 0,
463 .type = V4L2_CTRL_TYPE_INTEGER,
464 },{
465 .id = V4L2_CID_PRIVATE_AUTOMUTE,
466 .name = "automute",
467 .minimum = 0,
468 .maximum = 1,
469 .default_value = 1,
470 .type = V4L2_CTRL_TYPE_BOOLEAN,
471 }
472};
473static const unsigned int CTRLS = ARRAY_SIZE(video_ctrls);
474
475static const struct v4l2_queryctrl* ctrl_by_id(unsigned int id)
476{
477 unsigned int i;
478
479 for (i = 0; i < CTRLS; i++)
480 if (video_ctrls[i].id == id)
481 return video_ctrls+i;
482 return NULL;
483}
484
485static struct saa7134_format* format_by_fourcc(unsigned int fourcc)
486{
487 unsigned int i;
488
489 for (i = 0; i < FORMATS; i++)
490 if (formats[i].fourcc == fourcc)
491 return formats+i;
492 return NULL;
493}
494
495/* ----------------------------------------------------------------------- */
496/* resource management */
497
498static int res_get(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bit)
499{
500 if (fh->resources & bit)
501 /* have it already allocated */
502 return 1;
503
504 /* is it free? */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200505 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (dev->resources & bit) {
507 /* no, someone else uses it */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200508 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
510 }
511 /* it's free, grab it */
512 fh->resources |= bit;
513 dev->resources |= bit;
514 dprintk("res: get %d\n",bit);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200515 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return 1;
517}
518
Heikki Orsila9040b322007-04-27 12:31:18 -0300519static int res_check(struct saa7134_fh *fh, unsigned int bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 return (fh->resources & bit);
522}
523
Heikki Orsila9040b322007-04-27 12:31:18 -0300524static int res_locked(struct saa7134_dev *dev, unsigned int bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 return (dev->resources & bit);
527}
528
529static
530void res_free(struct saa7134_dev *dev, struct saa7134_fh *fh, unsigned int bits)
531{
Eric Sesterhennae246012006-03-13 13:17:11 -0300532 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Ingo Molnar3593cab2006-02-07 06:49:14 -0200534 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 fh->resources &= ~bits;
536 dev->resources &= ~bits;
537 dprintk("res: put %d\n",bits);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200538 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/* ------------------------------------------------------------------ */
542
Adrian Bunkb02044d2007-10-24 13:23:14 -0300543static void set_tvnorm(struct saa7134_dev *dev, struct saa7134_tvnorm *norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 dprintk("set tv norm = %s\n",norm->name);
546 dev->tvnorm = norm;
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* setup cropping */
549 dev->crop_bounds.left = norm->h_start;
550 dev->crop_defrect.left = norm->h_start;
551 dev->crop_bounds.width = norm->h_stop - norm->h_start +1;
552 dev->crop_defrect.width = norm->h_stop - norm->h_start +1;
553
Michael Schimekf246a812005-06-23 22:04:47 -0700554 dev->crop_bounds.top = (norm->vbi_v_stop_0+1)*2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 dev->crop_defrect.top = norm->video_v_start*2;
556 dev->crop_bounds.height = ((norm->id & V4L2_STD_525_60) ? 524 : 624)
557 - dev->crop_bounds.top;
558 dev->crop_defrect.height = (norm->video_v_stop - norm->video_v_start +1)*2;
559
560 dev->crop_current = dev->crop_defrect;
561
Maxim Levitskyc4584732007-10-12 00:57:15 -0300562 saa7134_set_tvnorm_hw(dev);
Maxim Levitskycb712012007-09-27 20:34:25 -0300563}
564
565static void video_mux(struct saa7134_dev *dev, int input)
566{
567 dprintk("video input = %d [%s]\n", input, card_in(dev, input).name);
568 dev->ctl_input = input;
569 set_tvnorm(dev, dev->tvnorm);
570 saa7134_tvaudio_setinput(dev, &card_in(dev, input));
571}
572
Maxim Levitskyc4584732007-10-12 00:57:15 -0300573
574static void saa7134_set_decoder(struct saa7134_dev *dev)
Maxim Levitskycb712012007-09-27 20:34:25 -0300575{
576 int luma_control, sync_control, mux;
577
578 struct saa7134_tvnorm *norm = dev->tvnorm;
579 mux = card_in(dev, dev->ctl_input).vmux;
580
581 luma_control = norm->luma_control;
582 sync_control = norm->sync_control;
583
584 if (mux > 5)
585 luma_control |= 0x80; /* svideo */
586 if (noninterlaced || dev->nosignal)
587 sync_control |= 0x20;
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* setup video decoder */
590 saa_writeb(SAA7134_INCR_DELAY, 0x08);
591 saa_writeb(SAA7134_ANALOG_IN_CTRL1, 0xc0 | mux);
592 saa_writeb(SAA7134_ANALOG_IN_CTRL2, 0x00);
593
594 saa_writeb(SAA7134_ANALOG_IN_CTRL3, 0x90);
595 saa_writeb(SAA7134_ANALOG_IN_CTRL4, 0x90);
596 saa_writeb(SAA7134_HSYNC_START, 0xeb);
597 saa_writeb(SAA7134_HSYNC_STOP, 0xe0);
598 saa_writeb(SAA7134_SOURCE_TIMING1, norm->src_timing);
599
600 saa_writeb(SAA7134_SYNC_CTRL, sync_control);
601 saa_writeb(SAA7134_LUMA_CTRL, luma_control);
602 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Maxim Levitskyf5a1ac62007-09-27 20:34:20 -0300604 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
605 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
606
607 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
608 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
611 saa_writeb(SAA7134_CHROMA_CTRL1, norm->chroma_ctrl1);
612 saa_writeb(SAA7134_CHROMA_GAIN, norm->chroma_gain);
613
614 saa_writeb(SAA7134_CHROMA_CTRL2, norm->chroma_ctrl2);
615 saa_writeb(SAA7134_MODE_DELAY_CTRL, 0x00);
616
617 saa_writeb(SAA7134_ANALOG_ADC, 0x01);
618 saa_writeb(SAA7134_VGATE_START, 0x11);
619 saa_writeb(SAA7134_VGATE_STOP, 0xfe);
620 saa_writeb(SAA7134_MISC_VGATE_MSB, norm->vgate_misc);
621 saa_writeb(SAA7134_RAW_DATA_GAIN, 0x40);
622 saa_writeb(SAA7134_RAW_DATA_OFFSET, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Maxim Levitskyc4584732007-10-12 00:57:15 -0300625void saa7134_set_tvnorm_hw(struct saa7134_dev *dev)
626{
627 saa7134_set_decoder(dev);
628
629 if (card_in(dev, dev->ctl_input).tv) {
630 if ((card(dev).tuner_type == TUNER_PHILIPS_TDA8290)
631 && ((card(dev).tuner_config == 1)
632 || (card(dev).tuner_config == 2)))
633 saa7134_set_gpio(dev, 22, 5);
634 saa7134_i2c_call_clients(dev, VIDIOC_S_STD, &dev->tvnorm->id);
635 }
636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static void set_h_prescale(struct saa7134_dev *dev, int task, int prescale)
639{
640 static const struct {
641 int xpsc;
642 int xacl;
643 int xc2_1;
644 int xdcg;
645 int vpfy;
646 } vals[] = {
647 /* XPSC XACL XC2_1 XDCG VPFY */
648 { 1, 0, 0, 0, 0 },
649 { 2, 2, 1, 2, 2 },
650 { 3, 4, 1, 3, 2 },
651 { 4, 8, 1, 4, 2 },
652 { 5, 8, 1, 4, 2 },
653 { 6, 8, 1, 4, 3 },
654 { 7, 8, 1, 4, 3 },
655 { 8, 15, 0, 4, 3 },
656 { 9, 15, 0, 4, 3 },
657 { 10, 16, 1, 5, 3 },
658 };
659 static const int count = ARRAY_SIZE(vals);
660 int i;
661
662 for (i = 0; i < count; i++)
663 if (vals[i].xpsc == prescale)
664 break;
665 if (i == count)
666 return;
667
668 saa_writeb(SAA7134_H_PRESCALE(task), vals[i].xpsc);
669 saa_writeb(SAA7134_ACC_LENGTH(task), vals[i].xacl);
670 saa_writeb(SAA7134_LEVEL_CTRL(task),
671 (vals[i].xc2_1 << 3) | (vals[i].xdcg));
672 saa_andorb(SAA7134_FIR_PREFILTER_CTRL(task), 0x0f,
673 (vals[i].vpfy << 2) | vals[i].vpfy);
674}
675
676static void set_v_scale(struct saa7134_dev *dev, int task, int yscale)
677{
678 int val,mirror;
679
680 saa_writeb(SAA7134_V_SCALE_RATIO1(task), yscale & 0xff);
681 saa_writeb(SAA7134_V_SCALE_RATIO2(task), yscale >> 8);
682
683 mirror = (dev->ctl_mirror) ? 0x02 : 0x00;
684 if (yscale < 2048) {
685 /* LPI */
686 dprintk("yscale LPI yscale=%d\n",yscale);
687 saa_writeb(SAA7134_V_FILTER(task), 0x00 | mirror);
688 saa_writeb(SAA7134_LUMA_CONTRAST(task), 0x40);
689 saa_writeb(SAA7134_CHROMA_SATURATION(task), 0x40);
690 } else {
691 /* ACM */
692 val = 0x40 * 1024 / yscale;
693 dprintk("yscale ACM yscale=%d val=0x%x\n",yscale,val);
694 saa_writeb(SAA7134_V_FILTER(task), 0x01 | mirror);
695 saa_writeb(SAA7134_LUMA_CONTRAST(task), val);
696 saa_writeb(SAA7134_CHROMA_SATURATION(task), val);
697 }
698 saa_writeb(SAA7134_LUMA_BRIGHT(task), 0x80);
699}
700
701static void set_size(struct saa7134_dev *dev, int task,
702 int width, int height, int interlace)
703{
704 int prescale,xscale,yscale,y_even,y_odd;
705 int h_start, h_stop, v_start, v_stop;
706 int div = interlace ? 2 : 1;
707
708 /* setup video scaler */
709 h_start = dev->crop_current.left;
710 v_start = dev->crop_current.top/2;
711 h_stop = (dev->crop_current.left + dev->crop_current.width -1);
712 v_stop = (dev->crop_current.top + dev->crop_current.height -1)/2;
713
714 saa_writeb(SAA7134_VIDEO_H_START1(task), h_start & 0xff);
715 saa_writeb(SAA7134_VIDEO_H_START2(task), h_start >> 8);
716 saa_writeb(SAA7134_VIDEO_H_STOP1(task), h_stop & 0xff);
717 saa_writeb(SAA7134_VIDEO_H_STOP2(task), h_stop >> 8);
718 saa_writeb(SAA7134_VIDEO_V_START1(task), v_start & 0xff);
719 saa_writeb(SAA7134_VIDEO_V_START2(task), v_start >> 8);
720 saa_writeb(SAA7134_VIDEO_V_STOP1(task), v_stop & 0xff);
721 saa_writeb(SAA7134_VIDEO_V_STOP2(task), v_stop >> 8);
722
723 prescale = dev->crop_current.width / width;
724 if (0 == prescale)
725 prescale = 1;
726 xscale = 1024 * dev->crop_current.width / prescale / width;
727 yscale = 512 * div * dev->crop_current.height / height;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800728 dprintk("prescale=%d xscale=%d yscale=%d\n",prescale,xscale,yscale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 set_h_prescale(dev,task,prescale);
730 saa_writeb(SAA7134_H_SCALE_INC1(task), xscale & 0xff);
731 saa_writeb(SAA7134_H_SCALE_INC2(task), xscale >> 8);
732 set_v_scale(dev,task,yscale);
733
734 saa_writeb(SAA7134_VIDEO_PIXELS1(task), width & 0xff);
735 saa_writeb(SAA7134_VIDEO_PIXELS2(task), width >> 8);
736 saa_writeb(SAA7134_VIDEO_LINES1(task), height/div & 0xff);
737 saa_writeb(SAA7134_VIDEO_LINES2(task), height/div >> 8);
738
739 /* deinterlace y offsets */
740 y_odd = dev->ctl_y_odd;
741 y_even = dev->ctl_y_even;
742 saa_writeb(SAA7134_V_PHASE_OFFSET0(task), y_odd);
743 saa_writeb(SAA7134_V_PHASE_OFFSET1(task), y_even);
744 saa_writeb(SAA7134_V_PHASE_OFFSET2(task), y_odd);
745 saa_writeb(SAA7134_V_PHASE_OFFSET3(task), y_even);
746}
747
748/* ------------------------------------------------------------------ */
749
750struct cliplist {
751 __u16 position;
752 __u8 enable;
753 __u8 disable;
754};
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756static void set_cliplist(struct saa7134_dev *dev, int reg,
757 struct cliplist *cl, int entries, char *name)
758{
759 __u8 winbits = 0;
760 int i;
761
762 for (i = 0; i < entries; i++) {
763 winbits |= cl[i].enable;
764 winbits &= ~cl[i].disable;
765 if (i < 15 && cl[i].position == cl[i+1].position)
766 continue;
767 saa_writeb(reg + 0, winbits);
768 saa_writeb(reg + 2, cl[i].position & 0xff);
769 saa_writeb(reg + 3, cl[i].position >> 8);
770 dprintk("clip: %s winbits=%02x pos=%d\n",
771 name,winbits,cl[i].position);
772 reg += 8;
773 }
774 for (; reg < 0x400; reg += 8) {
775 saa_writeb(reg+ 0, 0);
776 saa_writeb(reg + 1, 0);
777 saa_writeb(reg + 2, 0);
778 saa_writeb(reg + 3, 0);
779 }
780}
781
782static int clip_range(int val)
783{
784 if (val < 0)
785 val = 0;
786 return val;
787}
788
Heikki Orsila9040b322007-04-27 12:31:18 -0300789/* Sort into smallest position first order */
790static int cliplist_cmp(const void *a, const void *b)
791{
792 const struct cliplist *cla = a;
793 const struct cliplist *clb = b;
794 if (cla->position < clb->position)
795 return -1;
796 if (cla->position > clb->position)
797 return 1;
798 return 0;
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801static int setup_clipping(struct saa7134_dev *dev, struct v4l2_clip *clips,
802 int nclips, int interlace)
803{
804 struct cliplist col[16], row[16];
Heikki Orsila9040b322007-04-27 12:31:18 -0300805 int cols = 0, rows = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 int div = interlace ? 2 : 1;
807
Heikki Orsila9040b322007-04-27 12:31:18 -0300808 memset(col, 0, sizeof(col));
809 memset(row, 0, sizeof(row));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 for (i = 0; i < nclips && i < 8; i++) {
811 col[cols].position = clip_range(clips[i].c.left);
812 col[cols].enable = (1 << i);
813 cols++;
814 col[cols].position = clip_range(clips[i].c.left+clips[i].c.width);
815 col[cols].disable = (1 << i);
816 cols++;
817 row[rows].position = clip_range(clips[i].c.top / div);
818 row[rows].enable = (1 << i);
819 rows++;
820 row[rows].position = clip_range((clips[i].c.top + clips[i].c.height)
821 / div);
822 row[rows].disable = (1 << i);
823 rows++;
824 }
Heikki Orsila9040b322007-04-27 12:31:18 -0300825 sort(col, cols, sizeof col[0], cliplist_cmp, NULL);
826 sort(row, rows, sizeof row[0], cliplist_cmp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 set_cliplist(dev,0x380,col,cols,"cols");
828 set_cliplist(dev,0x384,row,rows,"rows");
829 return 0;
830}
831
832static int verify_preview(struct saa7134_dev *dev, struct v4l2_window *win)
833{
834 enum v4l2_field field;
835 int maxw, maxh;
836
837 if (NULL == dev->ovbuf.base)
838 return -EINVAL;
839 if (NULL == dev->ovfmt)
840 return -EINVAL;
841 if (win->w.width < 48 || win->w.height < 32)
842 return -EINVAL;
843 if (win->clipcount > 2048)
844 return -EINVAL;
845
846 field = win->field;
847 maxw = dev->crop_current.width;
848 maxh = dev->crop_current.height;
849
850 if (V4L2_FIELD_ANY == field) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800851 field = (win->w.height > maxh/2)
852 ? V4L2_FIELD_INTERLACED
853 : V4L2_FIELD_TOP;
854 }
855 switch (field) {
856 case V4L2_FIELD_TOP:
857 case V4L2_FIELD_BOTTOM:
858 maxh = maxh / 2;
859 break;
860 case V4L2_FIELD_INTERLACED:
861 break;
862 default:
863 return -EINVAL;
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 win->field = field;
867 if (win->w.width > maxw)
868 win->w.width = maxw;
869 if (win->w.height > maxh)
870 win->w.height = maxh;
871 return 0;
872}
873
874static int start_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
875{
876 unsigned long base,control,bpl;
877 int err;
878
879 err = verify_preview(dev,&fh->win);
880 if (0 != err)
881 return err;
882
883 dev->ovfield = fh->win.field;
884 dprintk("start_preview %dx%d+%d+%d %s field=%s\n",
885 fh->win.w.width,fh->win.w.height,
886 fh->win.w.left,fh->win.w.top,
887 dev->ovfmt->name,v4l2_field_names[dev->ovfield]);
888
889 /* setup window + clipping */
890 set_size(dev,TASK_B,fh->win.w.width,fh->win.w.height,
891 V4L2_FIELD_HAS_BOTH(dev->ovfield));
892 setup_clipping(dev,fh->clips,fh->nclips,
893 V4L2_FIELD_HAS_BOTH(dev->ovfield));
894 if (dev->ovfmt->yuv)
895 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x03);
896 else
897 saa_andorb(SAA7134_DATA_PATH(TASK_B), 0x3f, 0x01);
898 saa_writeb(SAA7134_OFMT_VIDEO_B, dev->ovfmt->pm | 0x20);
899
900 /* dma: setup channel 1 (= Video Task B) */
901 base = (unsigned long)dev->ovbuf.base;
902 base += dev->ovbuf.fmt.bytesperline * fh->win.w.top;
903 base += dev->ovfmt->depth/8 * fh->win.w.left;
904 bpl = dev->ovbuf.fmt.bytesperline;
905 control = SAA7134_RS_CONTROL_BURST_16;
906 if (dev->ovfmt->bswap)
907 control |= SAA7134_RS_CONTROL_BSWAP;
908 if (dev->ovfmt->wswap)
909 control |= SAA7134_RS_CONTROL_WSWAP;
910 if (V4L2_FIELD_HAS_BOTH(dev->ovfield)) {
911 saa_writel(SAA7134_RS_BA1(1),base);
912 saa_writel(SAA7134_RS_BA2(1),base+bpl);
913 saa_writel(SAA7134_RS_PITCH(1),bpl*2);
914 saa_writel(SAA7134_RS_CONTROL(1),control);
915 } else {
916 saa_writel(SAA7134_RS_BA1(1),base);
917 saa_writel(SAA7134_RS_BA2(1),base);
918 saa_writel(SAA7134_RS_PITCH(1),bpl);
919 saa_writel(SAA7134_RS_CONTROL(1),control);
920 }
921
922 /* start dma */
923 dev->ovenable = 1;
924 saa7134_set_dmabits(dev);
925
926 return 0;
927}
928
929static int stop_preview(struct saa7134_dev *dev, struct saa7134_fh *fh)
930{
931 dev->ovenable = 0;
932 saa7134_set_dmabits(dev);
933 return 0;
934}
935
936/* ------------------------------------------------------------------ */
937
938static int buffer_activate(struct saa7134_dev *dev,
939 struct saa7134_buf *buf,
940 struct saa7134_buf *next)
941{
942 unsigned long base,control,bpl;
943 unsigned long bpl_uv,lines_uv,base2,base3,tmp; /* planar */
944
945 dprintk("buffer_activate buf=%p\n",buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300946 buf->vb.state = VIDEOBUF_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 buf->top_seen = 0;
948
949 set_size(dev,TASK_A,buf->vb.width,buf->vb.height,
950 V4L2_FIELD_HAS_BOTH(buf->vb.field));
951 if (buf->fmt->yuv)
952 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x03);
953 else
954 saa_andorb(SAA7134_DATA_PATH(TASK_A), 0x3f, 0x01);
955 saa_writeb(SAA7134_OFMT_VIDEO_A, buf->fmt->pm);
956
957 /* DMA: setup channel 0 (= Video Task A0) */
958 base = saa7134_buffer_base(buf);
959 if (buf->fmt->planar)
960 bpl = buf->vb.width;
961 else
962 bpl = (buf->vb.width * buf->fmt->depth) / 8;
963 control = SAA7134_RS_CONTROL_BURST_16 |
964 SAA7134_RS_CONTROL_ME |
965 (buf->pt->dma >> 12);
966 if (buf->fmt->bswap)
967 control |= SAA7134_RS_CONTROL_BSWAP;
968 if (buf->fmt->wswap)
969 control |= SAA7134_RS_CONTROL_WSWAP;
970 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
971 /* interlaced */
972 saa_writel(SAA7134_RS_BA1(0),base);
973 saa_writel(SAA7134_RS_BA2(0),base+bpl);
974 saa_writel(SAA7134_RS_PITCH(0),bpl*2);
975 } else {
976 /* non-interlaced */
977 saa_writel(SAA7134_RS_BA1(0),base);
978 saa_writel(SAA7134_RS_BA2(0),base);
979 saa_writel(SAA7134_RS_PITCH(0),bpl);
980 }
981 saa_writel(SAA7134_RS_CONTROL(0),control);
982
983 if (buf->fmt->planar) {
984 /* DMA: setup channel 4+5 (= planar task A) */
985 bpl_uv = bpl >> buf->fmt->hshift;
986 lines_uv = buf->vb.height >> buf->fmt->vshift;
987 base2 = base + bpl * buf->vb.height;
988 base3 = base2 + bpl_uv * lines_uv;
989 if (buf->fmt->uvswap)
990 tmp = base2, base2 = base3, base3 = tmp;
991 dprintk("uv: bpl=%ld lines=%ld base2/3=%ld/%ld\n",
992 bpl_uv,lines_uv,base2,base3);
993 if (V4L2_FIELD_HAS_BOTH(buf->vb.field)) {
994 /* interlaced */
995 saa_writel(SAA7134_RS_BA1(4),base2);
996 saa_writel(SAA7134_RS_BA2(4),base2+bpl_uv);
997 saa_writel(SAA7134_RS_PITCH(4),bpl_uv*2);
998 saa_writel(SAA7134_RS_BA1(5),base3);
999 saa_writel(SAA7134_RS_BA2(5),base3+bpl_uv);
1000 saa_writel(SAA7134_RS_PITCH(5),bpl_uv*2);
1001 } else {
1002 /* non-interlaced */
1003 saa_writel(SAA7134_RS_BA1(4),base2);
1004 saa_writel(SAA7134_RS_BA2(4),base2);
1005 saa_writel(SAA7134_RS_PITCH(4),bpl_uv);
1006 saa_writel(SAA7134_RS_BA1(5),base3);
1007 saa_writel(SAA7134_RS_BA2(5),base3);
1008 saa_writel(SAA7134_RS_PITCH(5),bpl_uv);
1009 }
1010 saa_writel(SAA7134_RS_CONTROL(4),control);
1011 saa_writel(SAA7134_RS_CONTROL(5),control);
1012 }
1013
1014 /* start DMA */
1015 saa7134_set_dmabits(dev);
1016 mod_timer(&dev->video_q.timeout, jiffies+BUFFER_TIMEOUT);
1017 return 0;
1018}
1019
1020static int buffer_prepare(struct videobuf_queue *q,
1021 struct videobuf_buffer *vb,
1022 enum v4l2_field field)
1023{
1024 struct saa7134_fh *fh = q->priv_data;
1025 struct saa7134_dev *dev = fh->dev;
1026 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1027 unsigned int size;
1028 int err;
1029
1030 /* sanity checks */
1031 if (NULL == fh->fmt)
1032 return -EINVAL;
1033 if (fh->width < 48 ||
1034 fh->height < 32 ||
1035 fh->width/4 > dev->crop_current.width ||
1036 fh->height/4 > dev->crop_current.height ||
1037 fh->width > dev->crop_bounds.width ||
1038 fh->height > dev->crop_bounds.height)
1039 return -EINVAL;
1040 size = (fh->width * fh->height * fh->fmt->depth) >> 3;
1041 if (0 != buf->vb.baddr && buf->vb.bsize < size)
1042 return -EINVAL;
1043
1044 dprintk("buffer_prepare [%d,size=%dx%d,bytes=%d,fields=%s,%s]\n",
1045 vb->i,fh->width,fh->height,size,v4l2_field_names[field],
1046 fh->fmt->name);
1047 if (buf->vb.width != fh->width ||
1048 buf->vb.height != fh->height ||
1049 buf->vb.size != size ||
1050 buf->vb.field != field ||
1051 buf->fmt != fh->fmt) {
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001052 saa7134_dma_free(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
Brandon Philips0fc06862007-11-06 20:02:36 -03001055 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001056 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 buf->vb.width = fh->width;
1059 buf->vb.height = fh->height;
1060 buf->vb.size = size;
1061 buf->vb.field = field;
1062 buf->fmt = fh->fmt;
1063 buf->pt = &fh->pt_cap;
1064
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001065 err = videobuf_iolock(q,&buf->vb,&dev->ovbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (err)
1067 goto oops;
1068 err = saa7134_pgtable_build(dev->pci,buf->pt,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001069 dma->sglist,
1070 dma->sglen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 saa7134_buffer_startpage(buf));
1072 if (err)
1073 goto oops;
1074 }
Brandon Philips0fc06862007-11-06 20:02:36 -03001075 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 buf->activate = buffer_activate;
1077 return 0;
1078
1079 oops:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001080 saa7134_dma_free(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return err;
1082}
1083
1084static int
1085buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1086{
1087 struct saa7134_fh *fh = q->priv_data;
1088
1089 *size = fh->fmt->depth * fh->width * fh->height >> 3;
1090 if (0 == *count)
1091 *count = gbuffers;
1092 *count = saa7134_buffer_count(*size,*count);
1093 return 0;
1094}
1095
1096static void buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1097{
1098 struct saa7134_fh *fh = q->priv_data;
1099 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1100
1101 saa7134_buffer_queue(fh->dev,&fh->dev->video_q,buf);
1102}
1103
1104static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1105{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 struct saa7134_buf *buf = container_of(vb,struct saa7134_buf,vb);
1107
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001108 saa7134_dma_free(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111static struct videobuf_queue_ops video_qops = {
1112 .buf_setup = buffer_setup,
1113 .buf_prepare = buffer_prepare,
1114 .buf_queue = buffer_queue,
1115 .buf_release = buffer_release,
1116};
1117
1118/* ------------------------------------------------------------------ */
1119
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -03001120int saa7134_g_ctrl(struct file *file, void *priv, struct v4l2_control *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001122 struct saa7134_fh *fh = priv;
1123 struct saa7134_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 const struct v4l2_queryctrl* ctrl;
1125
1126 ctrl = ctrl_by_id(c->id);
1127 if (NULL == ctrl)
1128 return -EINVAL;
1129 switch (c->id) {
1130 case V4L2_CID_BRIGHTNESS:
1131 c->value = dev->ctl_bright;
1132 break;
1133 case V4L2_CID_HUE:
1134 c->value = dev->ctl_hue;
1135 break;
1136 case V4L2_CID_CONTRAST:
1137 c->value = dev->ctl_contrast;
1138 break;
1139 case V4L2_CID_SATURATION:
1140 c->value = dev->ctl_saturation;
1141 break;
1142 case V4L2_CID_AUDIO_MUTE:
1143 c->value = dev->ctl_mute;
1144 break;
1145 case V4L2_CID_AUDIO_VOLUME:
1146 c->value = dev->ctl_volume;
1147 break;
1148 case V4L2_CID_PRIVATE_INVERT:
1149 c->value = dev->ctl_invert;
1150 break;
Michael Schimekf246a812005-06-23 22:04:47 -07001151 case V4L2_CID_HFLIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 c->value = dev->ctl_mirror;
1153 break;
1154 case V4L2_CID_PRIVATE_Y_EVEN:
1155 c->value = dev->ctl_y_even;
1156 break;
1157 case V4L2_CID_PRIVATE_Y_ODD:
1158 c->value = dev->ctl_y_odd;
1159 break;
1160 case V4L2_CID_PRIVATE_AUTOMUTE:
1161 c->value = dev->ctl_automute;
1162 break;
1163 default:
1164 return -EINVAL;
1165 }
1166 return 0;
1167}
1168
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -03001169int saa7134_s_ctrl(struct file *file, void *f, struct v4l2_control *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 const struct v4l2_queryctrl* ctrl;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001172 struct saa7134_fh *fh = f;
1173 struct saa7134_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 unsigned long flags;
1175 int restart_overlay = 0;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001176 int err = -EINVAL;
1177
1178 err = v4l2_prio_check(&dev->prio, &fh->prio);
1179 if (0 != err)
1180 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001182 mutex_lock(&dev->lock);
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 ctrl = ctrl_by_id(c->id);
1185 if (NULL == ctrl)
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001186 goto error;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 dprintk("set_control name=%s val=%d\n",ctrl->name,c->value);
1189 switch (ctrl->type) {
1190 case V4L2_CTRL_TYPE_BOOLEAN:
1191 case V4L2_CTRL_TYPE_MENU:
1192 case V4L2_CTRL_TYPE_INTEGER:
1193 if (c->value < ctrl->minimum)
1194 c->value = ctrl->minimum;
1195 if (c->value > ctrl->maximum)
1196 c->value = ctrl->maximum;
1197 break;
1198 default:
1199 /* nothing */;
1200 };
1201 switch (c->id) {
1202 case V4L2_CID_BRIGHTNESS:
1203 dev->ctl_bright = c->value;
1204 saa_writeb(SAA7134_DEC_LUMA_BRIGHT, dev->ctl_bright);
1205 break;
1206 case V4L2_CID_HUE:
1207 dev->ctl_hue = c->value;
1208 saa_writeb(SAA7134_DEC_CHROMA_HUE, dev->ctl_hue);
1209 break;
1210 case V4L2_CID_CONTRAST:
1211 dev->ctl_contrast = c->value;
1212 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1213 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1214 break;
1215 case V4L2_CID_SATURATION:
1216 dev->ctl_saturation = c->value;
1217 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1218 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1219 break;
1220 case V4L2_CID_AUDIO_MUTE:
1221 dev->ctl_mute = c->value;
1222 saa7134_tvaudio_setmute(dev);
1223 break;
1224 case V4L2_CID_AUDIO_VOLUME:
1225 dev->ctl_volume = c->value;
1226 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
1227 break;
1228 case V4L2_CID_PRIVATE_INVERT:
1229 dev->ctl_invert = c->value;
1230 saa_writeb(SAA7134_DEC_LUMA_CONTRAST,
1231 dev->ctl_invert ? -dev->ctl_contrast : dev->ctl_contrast);
1232 saa_writeb(SAA7134_DEC_CHROMA_SATURATION,
1233 dev->ctl_invert ? -dev->ctl_saturation : dev->ctl_saturation);
1234 break;
Michael Schimekf246a812005-06-23 22:04:47 -07001235 case V4L2_CID_HFLIP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 dev->ctl_mirror = c->value;
1237 restart_overlay = 1;
1238 break;
1239 case V4L2_CID_PRIVATE_Y_EVEN:
1240 dev->ctl_y_even = c->value;
1241 restart_overlay = 1;
1242 break;
1243 case V4L2_CID_PRIVATE_Y_ODD:
1244 dev->ctl_y_odd = c->value;
1245 restart_overlay = 1;
1246 break;
1247 case V4L2_CID_PRIVATE_AUTOMUTE:
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001248 {
1249 struct v4l2_priv_tun_config tda9887_cfg;
1250
1251 tda9887_cfg.tuner = TUNER_TDA9887;
1252 tda9887_cfg.priv = &dev->tda9887_conf;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 dev->ctl_automute = c->value;
1255 if (dev->tda9887_conf) {
1256 if (dev->ctl_automute)
1257 dev->tda9887_conf |= TDA9887_AUTOMUTE;
1258 else
1259 dev->tda9887_conf &= ~TDA9887_AUTOMUTE;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001260
1261 saa7134_i2c_call_clients(dev, TUNER_SET_CONFIG,
1262 &tda9887_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264 break;
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 default:
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001267 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269 if (restart_overlay && fh && res_check(fh, RESOURCE_OVERLAY)) {
1270 spin_lock_irqsave(&dev->slock,flags);
1271 stop_preview(dev,fh);
1272 start_preview(dev,fh);
1273 spin_unlock_irqrestore(&dev->slock,flags);
1274 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001275 err = 0;
1276
1277error:
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001278 mutex_unlock(&dev->lock);
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282/* ------------------------------------------------------------------ */
1283
1284static struct videobuf_queue* saa7134_queue(struct saa7134_fh *fh)
1285{
1286 struct videobuf_queue* q = NULL;
1287
1288 switch (fh->type) {
1289 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1290 q = &fh->cap;
1291 break;
1292 case V4L2_BUF_TYPE_VBI_CAPTURE:
1293 q = &fh->vbi;
1294 break;
1295 default:
1296 BUG();
1297 }
1298 return q;
1299}
1300
1301static int saa7134_resource(struct saa7134_fh *fh)
1302{
Heikki Orsila9040b322007-04-27 12:31:18 -03001303 if (fh->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
1304 return RESOURCE_VIDEO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Heikki Orsila9040b322007-04-27 12:31:18 -03001306 if (fh->type == V4L2_BUF_TYPE_VBI_CAPTURE)
1307 return RESOURCE_VBI;
1308
1309 BUG();
1310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313static int video_open(struct inode *inode, struct file *file)
1314{
1315 int minor = iminor(inode);
Trent Piepho6d28e982007-10-10 05:37:42 -03001316 struct saa7134_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 struct saa7134_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1319 int radio = 0;
Trent Piepho6d28e982007-10-10 05:37:42 -03001320 list_for_each_entry(dev, &saa7134_devlist, devlist) {
1321 if (dev->video_dev && (dev->video_dev->minor == minor))
1322 goto found;
1323 if (dev->radio_dev && (dev->radio_dev->minor == minor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 radio = 1;
Trent Piepho6d28e982007-10-10 05:37:42 -03001325 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
Trent Piepho6d28e982007-10-10 05:37:42 -03001327 if (dev->vbi_dev && (dev->vbi_dev->minor == minor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 type = V4L2_BUF_TYPE_VBI_CAPTURE;
Trent Piepho6d28e982007-10-10 05:37:42 -03001329 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331 }
Trent Piepho6d28e982007-10-10 05:37:42 -03001332 return -ENODEV;
1333 found:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 dprintk("open minor=%d radio=%d type=%s\n",minor,radio,
1336 v4l2_type_names[type]);
1337
1338 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -02001339 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (NULL == fh)
1341 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 file->private_data = fh;
1343 fh->dev = dev;
1344 fh->radio = radio;
1345 fh->type = type;
1346 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
1347 fh->width = 720;
1348 fh->height = 576;
1349 v4l2_prio_open(&dev->prio,&fh->prio);
1350
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001351 videobuf_queue_pci_init(&fh->cap, &video_qops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 dev->pci, &dev->slock,
1353 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1354 V4L2_FIELD_INTERLACED,
1355 sizeof(struct saa7134_buf),
1356 fh);
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -03001357 videobuf_queue_pci_init(&fh->vbi, &saa7134_vbi_qops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 dev->pci, &dev->slock,
1359 V4L2_BUF_TYPE_VBI_CAPTURE,
1360 V4L2_FIELD_SEQ_TB,
1361 sizeof(struct saa7134_buf),
1362 fh);
1363 saa7134_pgtable_alloc(dev->pci,&fh->pt_cap);
1364 saa7134_pgtable_alloc(dev->pci,&fh->pt_vbi);
1365
1366 if (fh->radio) {
1367 /* switch to radio mode */
1368 saa7134_tvaudio_setinput(dev,&card(dev).radio);
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001369 saa7134_i2c_call_clients(dev,AUDC_SET_RADIO, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 } else {
1371 /* switch to video/vbi mode */
1372 video_mux(dev,dev->ctl_input);
1373 }
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377static ssize_t
1378video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
1379{
1380 struct saa7134_fh *fh = file->private_data;
1381
1382 switch (fh->type) {
1383 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
1384 if (res_locked(fh->dev,RESOURCE_VIDEO))
1385 return -EBUSY;
1386 return videobuf_read_one(saa7134_queue(fh),
1387 data, count, ppos,
1388 file->f_flags & O_NONBLOCK);
1389 case V4L2_BUF_TYPE_VBI_CAPTURE:
1390 if (!res_get(fh->dev,fh,RESOURCE_VBI))
1391 return -EBUSY;
1392 return videobuf_read_stream(saa7134_queue(fh),
1393 data, count, ppos, 1,
1394 file->f_flags & O_NONBLOCK);
1395 break;
1396 default:
1397 BUG();
1398 return 0;
1399 }
1400}
1401
1402static unsigned int
1403video_poll(struct file *file, struct poll_table_struct *wait)
1404{
1405 struct saa7134_fh *fh = file->private_data;
1406 struct videobuf_buffer *buf = NULL;
1407
1408 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type)
1409 return videobuf_poll_stream(file, &fh->vbi, wait);
1410
1411 if (res_check(fh,RESOURCE_VIDEO)) {
1412 if (!list_empty(&fh->cap.stream))
1413 buf = list_entry(fh->cap.stream.next, struct videobuf_buffer, stream);
1414 } else {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001415 mutex_lock(&fh->cap.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 if (UNSET == fh->cap.read_off) {
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001417 /* need to capture a new frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if (res_locked(fh->dev,RESOURCE_VIDEO)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001419 mutex_unlock(&fh->cap.lock);
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001420 return POLLERR;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001421 }
1422 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,fh->cap.field)) {
Ingo Molnar3593cab2006-02-07 06:49:14 -02001423 mutex_unlock(&fh->cap.lock);
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -08001424 return POLLERR;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001425 }
1426 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
1427 fh->cap.read_off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
Ingo Molnar3593cab2006-02-07 06:49:14 -02001429 mutex_unlock(&fh->cap.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 buf = fh->cap.read_buf;
1431 }
1432
1433 if (!buf)
1434 return POLLERR;
1435
1436 poll_wait(file, &buf->done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -03001437 if (buf->state == VIDEOBUF_DONE ||
1438 buf->state == VIDEOBUF_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return POLLIN|POLLRDNORM;
1440 return 0;
1441}
1442
1443static int video_release(struct inode *inode, struct file *file)
1444{
1445 struct saa7134_fh *fh = file->private_data;
1446 struct saa7134_dev *dev = fh->dev;
1447 unsigned long flags;
1448
1449 /* turn off overlay */
1450 if (res_check(fh, RESOURCE_OVERLAY)) {
1451 spin_lock_irqsave(&dev->slock,flags);
1452 stop_preview(dev,fh);
1453 spin_unlock_irqrestore(&dev->slock,flags);
1454 res_free(dev,fh,RESOURCE_OVERLAY);
1455 }
1456
1457 /* stop video capture */
1458 if (res_check(fh, RESOURCE_VIDEO)) {
1459 videobuf_streamoff(&fh->cap);
1460 res_free(dev,fh,RESOURCE_VIDEO);
1461 }
1462 if (fh->cap.read_buf) {
1463 buffer_release(&fh->cap,fh->cap.read_buf);
1464 kfree(fh->cap.read_buf);
1465 }
1466
1467 /* stop vbi capture */
1468 if (res_check(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -03001469 videobuf_stop(&fh->vbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 res_free(dev,fh,RESOURCE_VBI);
1471 }
1472
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001473 /* ts-capture will not work in planar mode, so turn it off Hac: 04.05*/
1474 saa_andorb(SAA7134_OFMT_VIDEO_A, 0x1f, 0);
1475 saa_andorb(SAA7134_OFMT_VIDEO_B, 0x1f, 0);
1476 saa_andorb(SAA7134_OFMT_DATA_A, 0x1f, 0);
1477 saa_andorb(SAA7134_OFMT_DATA_B, 0x1f, 0);
1478
Mauro Carvalho Chehab2f180712005-09-09 13:03:46 -07001479 saa7134_i2c_call_clients(dev, TUNER_SET_STANDBY, NULL);
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -07001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 /* free stuff */
1482 videobuf_mmap_free(&fh->cap);
1483 videobuf_mmap_free(&fh->vbi);
1484 saa7134_pgtable_free(dev->pci,&fh->pt_cap);
1485 saa7134_pgtable_free(dev->pci,&fh->pt_vbi);
1486
1487 v4l2_prio_close(&dev->prio,&fh->prio);
1488 file->private_data = NULL;
1489 kfree(fh);
1490 return 0;
1491}
1492
Heikki Orsila9040b322007-04-27 12:31:18 -03001493static int video_mmap(struct file *file, struct vm_area_struct * vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
1495 struct saa7134_fh *fh = file->private_data;
1496
1497 return videobuf_mmap_mapper(saa7134_queue(fh), vma);
1498}
1499
1500/* ------------------------------------------------------------------ */
1501
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001502static int saa7134_try_get_set_fmt_vbi(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001503 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001505 struct saa7134_fh *fh = priv;
1506 struct saa7134_dev *dev = fh->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 struct saa7134_tvnorm *norm = dev->tvnorm;
1508
1509 f->fmt.vbi.sampling_rate = 6750000 * 4;
1510 f->fmt.vbi.samples_per_line = 2048 /* VBI_LINE_LENGTH */;
1511 f->fmt.vbi.sample_format = V4L2_PIX_FMT_GREY;
1512 f->fmt.vbi.offset = 64 * 4;
Michael Schimekf246a812005-06-23 22:04:47 -07001513 f->fmt.vbi.start[0] = norm->vbi_v_start_0;
1514 f->fmt.vbi.count[0] = norm->vbi_v_stop_0 - norm->vbi_v_start_0 +1;
1515 f->fmt.vbi.start[1] = norm->vbi_v_start_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 f->fmt.vbi.count[1] = f->fmt.vbi.count[0];
1517 f->fmt.vbi.flags = 0; /* VBI_UNSYNC VBI_INTERLACED */
1518
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001522static int saa7134_g_fmt_cap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001523 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001525 struct saa7134_fh *fh = priv;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001526
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001527 f->fmt.pix.width = fh->width;
1528 f->fmt.pix.height = fh->height;
1529 f->fmt.pix.field = fh->cap.field;
1530 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1531 f->fmt.pix.bytesperline =
1532 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1533 f->fmt.pix.sizeimage =
1534 f->fmt.pix.height * f->fmt.pix.bytesperline;
1535 return 0;
1536}
1537
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001538static int saa7134_g_fmt_overlay(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001539 struct v4l2_format *f)
1540{
1541 struct saa7134_fh *fh = priv;
1542
1543 if (saa7134_no_overlay > 0) {
1544 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return -EINVAL;
1546 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001547 f->fmt.win = fh->win;
1548
1549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550}
1551
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001552static int saa7134_try_fmt_cap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001553 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001555 struct saa7134_fh *fh = priv;
1556 struct saa7134_dev *dev = fh->dev;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001557 struct saa7134_format *fmt;
1558 enum v4l2_field field;
1559 unsigned int maxw, maxh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001561 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1562 if (NULL == fmt)
1563 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001565 field = f->fmt.pix.field;
1566 maxw = min(dev->crop_current.width*4, dev->crop_bounds.width);
1567 maxh = min(dev->crop_current.height*4, dev->crop_bounds.height);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001569 if (V4L2_FIELD_ANY == field) {
1570 field = (f->fmt.pix.height > maxh/2)
1571 ? V4L2_FIELD_INTERLACED
1572 : V4L2_FIELD_BOTTOM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001574 switch (field) {
1575 case V4L2_FIELD_TOP:
1576 case V4L2_FIELD_BOTTOM:
1577 maxh = maxh / 2;
1578 break;
1579 case V4L2_FIELD_INTERLACED:
1580 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 default:
1582 return -EINVAL;
1583 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001584
1585 f->fmt.pix.field = field;
1586 if (f->fmt.pix.width < 48)
1587 f->fmt.pix.width = 48;
1588 if (f->fmt.pix.height < 32)
1589 f->fmt.pix.height = 32;
1590 if (f->fmt.pix.width > maxw)
1591 f->fmt.pix.width = maxw;
1592 if (f->fmt.pix.height > maxh)
1593 f->fmt.pix.height = maxh;
1594 f->fmt.pix.width &= ~0x03;
1595 f->fmt.pix.bytesperline =
1596 (f->fmt.pix.width * fmt->depth) >> 3;
1597 f->fmt.pix.sizeimage =
1598 f->fmt.pix.height * f->fmt.pix.bytesperline;
1599
1600 return 0;
1601}
1602
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001603static int saa7134_try_fmt_overlay(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001604 struct v4l2_format *f)
1605{
1606 struct saa7134_fh *fh = priv;
1607 struct saa7134_dev *dev = fh->dev;
1608
1609 if (saa7134_no_overlay > 0) {
1610 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
1611 return -EINVAL;
1612 }
1613
1614 return verify_preview(dev, &f->fmt.win);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
1616
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001617static int saa7134_s_fmt_cap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001618 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001620 struct saa7134_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int err;
1622
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001623 err = saa7134_try_fmt_cap(file, priv, f);
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001624 if (0 != err)
1625 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001627 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1628 fh->width = f->fmt.pix.width;
1629 fh->height = f->fmt.pix.height;
1630 fh->cap.field = f->fmt.pix.field;
1631 return 0;
1632}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001634static int saa7134_s_fmt_overlay(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001635 struct v4l2_format *f)
1636{
1637 struct saa7134_fh *fh = priv;
1638 struct saa7134_dev *dev = fh->dev;
1639 int err;
1640 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001642 if (saa7134_no_overlay > 0) {
1643 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return -EINVAL;
1645 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001646 err = verify_preview(dev, &f->fmt.win);
1647 if (0 != err)
1648 return err;
1649
1650 mutex_lock(&dev->lock);
1651
1652 fh->win = f->fmt.win;
1653 fh->nclips = f->fmt.win.clipcount;
1654
1655 if (fh->nclips > 8)
1656 fh->nclips = 8;
1657
1658 if (copy_from_user(fh->clips, f->fmt.win.clips,
1659 sizeof(struct v4l2_clip)*fh->nclips)) {
1660 mutex_unlock(&dev->lock);
1661 return -EFAULT;
1662 }
1663
1664 if (res_check(fh, RESOURCE_OVERLAY)) {
1665 spin_lock_irqsave(&dev->slock, flags);
1666 stop_preview(dev, fh);
1667 start_preview(dev, fh);
1668 spin_unlock_irqrestore(&dev->slock, flags);
1669 }
1670
1671 mutex_unlock(&dev->lock);
1672 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
Mauro Carvalho Chehab2c10e8a2007-12-11 12:56:23 -03001675int saa7134_queryctrl(struct file *file, void *priv, struct v4l2_queryctrl *c)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001676{
1677 const struct v4l2_queryctrl *ctrl;
1678
1679 if ((c->id < V4L2_CID_BASE ||
1680 c->id >= V4L2_CID_LASTP1) &&
1681 (c->id < V4L2_CID_PRIVATE_BASE ||
1682 c->id >= V4L2_CID_PRIVATE_LASTP1))
1683 return -EINVAL;
1684 ctrl = ctrl_by_id(c->id);
1685 *c = (NULL != ctrl) ? *ctrl : no_ctrl;
1686 return 0;
1687}
1688
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001689static int saa7134_enum_input(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001690 struct v4l2_input *i)
1691{
1692 struct saa7134_fh *fh = priv;
1693 struct saa7134_dev *dev = fh->dev;
1694 unsigned int n;
1695
1696 n = i->index;
1697 if (n >= SAA7134_INPUT_MAX)
1698 return -EINVAL;
1699 if (NULL == card_in(dev, i->index).name)
1700 return -EINVAL;
1701 memset(i, 0, sizeof(*i));
1702 i->index = n;
1703 i->type = V4L2_INPUT_TYPE_CAMERA;
1704 strcpy(i->name, card_in(dev, n).name);
1705 if (card_in(dev, n).tv)
1706 i->type = V4L2_INPUT_TYPE_TUNER;
1707 i->audioset = 1;
1708 if (n == dev->ctl_input) {
1709 int v1 = saa_readb(SAA7134_STATUS_VIDEO1);
1710 int v2 = saa_readb(SAA7134_STATUS_VIDEO2);
1711
1712 if (0 != (v1 & 0x40))
1713 i->status |= V4L2_IN_ST_NO_H_LOCK;
1714 if (0 != (v2 & 0x40))
1715 i->status |= V4L2_IN_ST_NO_SYNC;
1716 if (0 != (v2 & 0x0e))
1717 i->status |= V4L2_IN_ST_MACROVISION;
1718 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001719 i->std = SAA7134_NORMS;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001720 return 0;
1721}
1722
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001723static int saa7134_g_input(struct file *file, void *priv, unsigned int *i)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03001724{
1725 struct saa7134_fh *fh = priv;
1726 struct saa7134_dev *dev = fh->dev;
1727
1728 *i = dev->ctl_input;
1729 return 0;
1730}
1731
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001732static int saa7134_s_input(struct file *file, void *priv, unsigned int i)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03001733{
1734 struct saa7134_fh *fh = priv;
1735 struct saa7134_dev *dev = fh->dev;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001736 int err;
1737
1738 err = v4l2_prio_check(&dev->prio, &fh->prio);
1739 if (0 != err)
1740 return err;
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03001741
1742 if (i < 0 || i >= SAA7134_INPUT_MAX)
1743 return -EINVAL;
1744 if (NULL == card_in(dev, i).name)
1745 return -EINVAL;
1746 mutex_lock(&dev->lock);
1747 video_mux(dev, i);
1748 mutex_unlock(&dev->lock);
1749 return 0;
1750}
1751
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001752static int saa7134_querycap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001753 struct v4l2_capability *cap)
1754{
1755 struct saa7134_fh *fh = priv;
1756 struct saa7134_dev *dev = fh->dev;
1757
1758 unsigned int tuner_type = dev->tuner_type;
1759
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001760 strcpy(cap->driver, "saa7134");
1761 strlcpy(cap->card, saa7134_boards[dev->board].name,
1762 sizeof(cap->card));
1763 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
1764 cap->version = SAA7134_VERSION_CODE;
1765 cap->capabilities =
1766 V4L2_CAP_VIDEO_CAPTURE |
1767 V4L2_CAP_VBI_CAPTURE |
1768 V4L2_CAP_READWRITE |
1769 V4L2_CAP_STREAMING |
1770 V4L2_CAP_TUNER;
1771 if (saa7134_no_overlay <= 0)
1772 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
1773
1774 if ((tuner_type == TUNER_ABSENT) || (tuner_type == UNSET))
1775 cap->capabilities &= ~V4L2_CAP_TUNER;
1776 return 0;
1777}
1778
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001779static int saa7134_s_std(struct file *file, void *priv, v4l2_std_id *id)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001780{
1781 struct saa7134_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct saa7134_dev *dev = fh->dev;
1783 unsigned long flags;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001784 unsigned int i;
1785 v4l2_std_id fixup;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001786 int err;
1787
1788 err = v4l2_prio_check(&dev->prio, &fh->prio);
1789 if (0 != err)
1790 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001792 for (i = 0; i < TVNORMS; i++)
1793 if (*id == tvnorms[i].id)
1794 break;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001795
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001796 if (i == TVNORMS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 for (i = 0; i < TVNORMS; i++)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001798 if (*id & tvnorms[i].id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 break;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001800 if (i == TVNORMS)
1801 return -EINVAL;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001802
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001803 if ((*id & V4L2_STD_SECAM) && (secam[0] != '-')) {
1804 if (secam[0] == 'L' || secam[0] == 'l') {
1805 if (secam[1] == 'C' || secam[1] == 'c')
1806 fixup = V4L2_STD_SECAM_LC;
1807 else
1808 fixup = V4L2_STD_SECAM_L;
1809 } else {
1810 if (secam[0] == 'D' || secam[0] == 'd')
1811 fixup = V4L2_STD_SECAM_DK;
1812 else
1813 fixup = V4L2_STD_SECAM;
Hartmut Hackmann17b10a72006-10-02 19:55:07 -03001814 }
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001815 for (i = 0; i < TVNORMS; i++)
1816 if (fixup == tvnorms[i].id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001819
1820 *id = tvnorms[i].id;
1821
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001822 mutex_lock(&dev->lock);
1823 if (res_check(fh, RESOURCE_OVERLAY)) {
1824 spin_lock_irqsave(&dev->slock, flags);
1825 stop_preview(dev, fh);
1826 spin_unlock_irqrestore(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001828 set_tvnorm(dev, &tvnorms[i]);
1829
1830 spin_lock_irqsave(&dev->slock, flags);
1831 start_preview(dev, fh);
1832 spin_unlock_irqrestore(&dev->slock, flags);
1833 } else
1834 set_tvnorm(dev, &tvnorms[i]);
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001835
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001836 saa7134_tvaudio_do_scan(dev);
1837 mutex_unlock(&dev->lock);
1838 return 0;
1839}
1840
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001841static int saa7134_cropcap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001842 struct v4l2_cropcap *cap)
1843{
1844 struct saa7134_fh *fh = priv;
1845 struct saa7134_dev *dev = fh->dev;
1846
1847 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1848 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1849 return -EINVAL;
1850 cap->bounds = dev->crop_bounds;
1851 cap->defrect = dev->crop_defrect;
1852 cap->pixelaspect.numerator = 1;
1853 cap->pixelaspect.denominator = 1;
1854 if (dev->tvnorm->id & V4L2_STD_525_60) {
1855 cap->pixelaspect.numerator = 11;
1856 cap->pixelaspect.denominator = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001858 if (dev->tvnorm->id & V4L2_STD_625_50) {
1859 cap->pixelaspect.numerator = 54;
1860 cap->pixelaspect.denominator = 59;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
1862 return 0;
1863}
1864
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001865static int saa7134_g_crop(struct file *file, void *f, struct v4l2_crop *crop)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03001866{
1867 struct saa7134_fh *fh = f;
1868 struct saa7134_dev *dev = fh->dev;
1869
1870 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1871 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1872 return -EINVAL;
1873 crop->c = dev->crop_current;
1874 return 0;
1875}
1876
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001877static int saa7134_s_crop(struct file *file, void *f, struct v4l2_crop *crop)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03001878{
1879 struct saa7134_fh *fh = f;
1880 struct saa7134_dev *dev = fh->dev;
1881 struct v4l2_rect *b = &dev->crop_bounds;
1882
1883 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
1884 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
1885 return -EINVAL;
1886 if (crop->c.height < 0)
1887 return -EINVAL;
1888 if (crop->c.width < 0)
1889 return -EINVAL;
1890
1891 if (res_locked(fh->dev, RESOURCE_OVERLAY))
1892 return -EBUSY;
1893 if (res_locked(fh->dev, RESOURCE_VIDEO))
1894 return -EBUSY;
1895
1896 if (crop->c.top < b->top)
1897 crop->c.top = b->top;
1898 if (crop->c.top > b->top + b->height)
1899 crop->c.top = b->top + b->height;
1900 if (crop->c.height > b->top - crop->c.top + b->height)
1901 crop->c.height = b->top - crop->c.top + b->height;
1902
1903 if (crop->c.left < b->left)
1904 crop->c.left = b->left;
1905 if (crop->c.left > b->left + b->width)
1906 crop->c.left = b->left + b->width;
1907 if (crop->c.width > b->left - crop->c.left + b->width)
1908 crop->c.width = b->left - crop->c.left + b->width;
1909
1910 dev->crop_current = crop->c;
1911 return 0;
1912}
1913
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001914static int saa7134_g_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001915 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001917 struct saa7134_fh *fh = priv;
1918 struct saa7134_dev *dev = fh->dev;
1919 int n;
1920
1921 if (0 != t->index)
1922 return -EINVAL;
1923 memset(t, 0, sizeof(*t));
1924 for (n = 0; n < SAA7134_INPUT_MAX; n++)
1925 if (card_in(dev, n).tv)
1926 break;
1927 if (NULL != card_in(dev, n).name) {
1928 strcpy(t->name, "Television");
1929 t->type = V4L2_TUNER_ANALOG_TV;
1930 t->capability = V4L2_TUNER_CAP_NORM |
1931 V4L2_TUNER_CAP_STEREO |
1932 V4L2_TUNER_CAP_LANG1 |
1933 V4L2_TUNER_CAP_LANG2;
1934 t->rangehigh = 0xffffffffUL;
1935 t->rxsubchans = saa7134_tvaudio_getstereo(dev);
1936 t->audmode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1937 }
1938 if (0 != (saa_readb(SAA7134_STATUS_VIDEO1) & 0x03))
1939 t->signal = 0xffff;
1940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941}
1942
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001943static int saa7134_s_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001944 struct v4l2_tuner *t)
1945{
1946 struct saa7134_fh *fh = priv;
1947 struct saa7134_dev *dev = fh->dev;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001948 int rx, mode, err;
1949
1950 err = v4l2_prio_check(&dev->prio, &fh->prio);
1951 if (0 != err)
1952 return err;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001953
1954 mode = dev->thread.mode;
1955 if (UNSET == mode) {
1956 rx = saa7134_tvaudio_getstereo(dev);
1957 mode = saa7134_tvaudio_rx2mode(t->rxsubchans);
1958 }
1959 if (mode != t->audmode)
1960 dev->thread.mode = t->audmode;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001961
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001962 return 0;
1963}
1964
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001965static int saa7134_g_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001966 struct v4l2_frequency *f)
1967{
1968 struct saa7134_fh *fh = priv;
1969 struct saa7134_dev *dev = fh->dev;
1970
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001971 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1972 f->frequency = dev->ctl_freq;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001973
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001974 return 0;
1975}
1976
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03001977static int saa7134_s_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001978 struct v4l2_frequency *f)
1979{
1980 struct saa7134_fh *fh = priv;
1981 struct saa7134_dev *dev = fh->dev;
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03001982 int err;
1983
1984 err = v4l2_prio_check(&dev->prio, &fh->prio);
1985 if (0 != err)
1986 return err;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03001987
1988 if (0 != f->tuner)
1989 return -EINVAL;
1990 if (0 == fh->radio && V4L2_TUNER_ANALOG_TV != f->type)
1991 return -EINVAL;
1992 if (1 == fh->radio && V4L2_TUNER_RADIO != f->type)
1993 return -EINVAL;
1994 mutex_lock(&dev->lock);
1995 dev->ctl_freq = f->frequency;
1996
1997 saa7134_i2c_call_clients(dev, VIDIOC_S_FREQUENCY, f);
1998
1999 saa7134_tvaudio_do_scan(dev);
2000 mutex_unlock(&dev->lock);
2001 return 0;
2002}
2003
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002004static int saa7134_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002005{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002006 strcpy(a->name, "audio");
2007 return 0;
2008}
2009
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002010static int saa7134_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002011{
2012 return 0;
2013}
2014
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002015static int saa7134_g_priority(struct file *file, void *f, enum v4l2_priority *p)
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002016{
2017 struct saa7134_fh *fh = f;
2018 struct saa7134_dev *dev = fh->dev;
2019
2020 *p = v4l2_prio_max(&dev->prio);
2021 return 0;
2022}
2023
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002024static int saa7134_s_priority(struct file *file, void *f,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002025 enum v4l2_priority prio)
2026{
2027 struct saa7134_fh *fh = f;
2028 struct saa7134_dev *dev = fh->dev;
2029
2030 return v4l2_prio_change(&dev->prio, &fh->prio, prio);
2031}
2032
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002033static int saa7134_enum_fmt_cap(struct file *file, void *priv,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002034 struct v4l2_fmtdesc *f)
2035{
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002036 if (f->index >= FORMATS)
2037 return -EINVAL;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002038
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002039 strlcpy(f->description, formats[f->index].name,
2040 sizeof(f->description));
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002041
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002042 f->pixelformat = formats[f->index].fourcc;
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002043
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002044 return 0;
2045}
2046
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002047static int saa7134_enum_fmt_overlay(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002048 struct v4l2_fmtdesc *f)
2049{
2050 if (saa7134_no_overlay > 0) {
2051 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002052 return -EINVAL;
2053 }
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002054
2055 if ((f->index >= FORMATS) || formats[f->index].planar)
2056 return -EINVAL;
2057
2058 strlcpy(f->description, formats[f->index].name,
2059 sizeof(f->description));
2060
2061 f->pixelformat = formats[f->index].fourcc;
2062
2063 return 0;
2064}
2065
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002066static int saa7134_enum_fmt_vbi(struct file *file, void *priv,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002067 struct v4l2_fmtdesc *f)
2068{
2069 if (0 != f->index)
2070 return -EINVAL;
2071
2072 f->pixelformat = V4L2_PIX_FMT_GREY;
2073 strcpy(f->description, "vbi data");
2074
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002075 return 0;
2076}
2077
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002078static int saa7134_g_fbuf(struct file *file, void *f,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002079 struct v4l2_framebuffer *fb)
2080{
2081 struct saa7134_fh *fh = f;
2082 struct saa7134_dev *dev = fh->dev;
2083
2084 *fb = dev->ovbuf;
2085 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2086
2087 return 0;
2088}
2089
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002090static int saa7134_s_fbuf(struct file *file, void *f,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002091 struct v4l2_framebuffer *fb)
2092{
2093 struct saa7134_fh *fh = f;
2094 struct saa7134_dev *dev = fh->dev;
2095 struct saa7134_format *fmt;
2096
2097 if (!capable(CAP_SYS_ADMIN) &&
2098 !capable(CAP_SYS_RAWIO))
2099 return -EPERM;
2100
2101 /* check args */
2102 fmt = format_by_fourcc(fb->fmt.pixelformat);
2103 if (NULL == fmt)
2104 return -EINVAL;
2105
2106 /* ok, accept it */
2107 dev->ovbuf = *fb;
2108 dev->ovfmt = fmt;
2109 if (0 == dev->ovbuf.fmt.bytesperline)
2110 dev->ovbuf.fmt.bytesperline =
2111 dev->ovbuf.fmt.width*fmt->depth/8;
2112 return 0;
2113}
2114
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002115static int saa7134_overlay(struct file *file, void *f, unsigned int on)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002116{
2117 struct saa7134_fh *fh = f;
2118 struct saa7134_dev *dev = fh->dev;
2119 unsigned long flags;
2120
2121 if (on) {
2122 if (saa7134_no_overlay > 0) {
2123 dprintk("no_overlay\n");
2124 return -EINVAL;
2125 }
2126
2127 if (!res_get(dev, fh, RESOURCE_OVERLAY))
2128 return -EBUSY;
2129 spin_lock_irqsave(&dev->slock, flags);
2130 start_preview(dev, fh);
2131 spin_unlock_irqrestore(&dev->slock, flags);
2132 }
2133 if (!on) {
2134 if (!res_check(fh, RESOURCE_OVERLAY))
2135 return -EINVAL;
2136 spin_lock_irqsave(&dev->slock, flags);
2137 stop_preview(dev, fh);
2138 spin_unlock_irqrestore(&dev->slock, flags);
2139 res_free(dev, fh, RESOURCE_OVERLAY);
2140 }
2141 return 0;
2142}
2143
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002144#ifdef CONFIG_VIDEO_V4L1_COMPAT
2145static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
2146{
2147 struct saa7134_fh *fh = file->private_data;
2148 return videobuf_cgmbuf(saa7134_queue(fh), mbuf, 8);
2149}
2150#endif
2151
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002152static int saa7134_reqbufs(struct file *file, void *priv,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002153 struct v4l2_requestbuffers *p)
2154{
2155 struct saa7134_fh *fh = priv;
2156 return videobuf_reqbufs(saa7134_queue(fh), p);
2157}
2158
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002159static int saa7134_querybuf(struct file *file, void *priv,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002160 struct v4l2_buffer *b)
2161{
2162 struct saa7134_fh *fh = priv;
2163 return videobuf_querybuf(saa7134_queue(fh), b);
2164}
2165
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002166static int saa7134_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002167{
2168 struct saa7134_fh *fh = priv;
2169 return videobuf_qbuf(saa7134_queue(fh), b);
2170}
2171
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002172static int saa7134_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002173{
2174 struct saa7134_fh *fh = priv;
2175 return videobuf_dqbuf(saa7134_queue(fh), b,
2176 file->f_flags & O_NONBLOCK);
2177}
2178
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002179static int saa7134_streamon(struct file *file, void *priv,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002180 enum v4l2_buf_type type)
2181{
2182 struct saa7134_fh *fh = priv;
2183 struct saa7134_dev *dev = fh->dev;
2184 int res = saa7134_resource(fh);
2185
2186 if (!res_get(dev, fh, res))
2187 return -EBUSY;
2188
2189 return videobuf_streamon(saa7134_queue(fh));
2190}
2191
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002192static int saa7134_streamoff(struct file *file, void *priv,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002193 enum v4l2_buf_type type)
2194{
2195 int err;
2196 struct saa7134_fh *fh = priv;
2197 struct saa7134_dev *dev = fh->dev;
2198 int res = saa7134_resource(fh);
2199
2200 err = videobuf_streamoff(saa7134_queue(fh));
2201 if (err < 0)
2202 return err;
2203 res_free(dev, fh, res);
2204 return 0;
2205}
2206
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002207static int saa7134_g_parm(struct file *file, void *fh,
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002208 struct v4l2_streamparm *parm)
2209{
Mauro Carvalho Chehab90bdc142007-12-07 17:23:38 -03002210 return 0;
2211}
2212
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002213static int radio_querycap(struct file *file, void *priv,
2214 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 struct saa7134_fh *fh = file->private_data;
2217 struct saa7134_dev *dev = fh->dev;
2218
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002219 strcpy(cap->driver, "saa7134");
2220 strlcpy(cap->card, saa7134_boards[dev->board].name, sizeof(cap->card));
2221 sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci));
2222 cap->version = SAA7134_VERSION_CODE;
2223 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return 0;
2225}
2226
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002227static int radio_g_tuner(struct file *file, void *priv,
2228 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002230 struct saa7134_fh *fh = file->private_data;
2231 struct saa7134_dev *dev = fh->dev;
2232
2233 if (0 != t->index)
2234 return -EINVAL;
2235
2236 memset(t, 0, sizeof(*t));
2237 strcpy(t->name, "Radio");
2238 t->type = V4L2_TUNER_RADIO;
2239
2240 saa7134_i2c_call_clients(dev, VIDIOC_G_TUNER, t);
2241 if (dev->input->amux == TV) {
2242 t->signal = 0xf800 - ((saa_readb(0x581) & 0x1f) << 11);
2243 t->rxsubchans = (saa_readb(0x529) & 0x08) ?
2244 V4L2_TUNER_SUB_STEREO : V4L2_TUNER_SUB_MONO;
2245 }
2246 return 0;
2247}
2248static int radio_s_tuner(struct file *file, void *priv,
2249 struct v4l2_tuner *t)
2250{
2251 struct saa7134_fh *fh = file->private_data;
2252 struct saa7134_dev *dev = fh->dev;
2253
2254 if (0 != t->index)
2255 return -EINVAL;
2256
2257 saa7134_i2c_call_clients(dev, VIDIOC_S_TUNER, t);
2258 return 0;
2259}
2260
2261static int radio_enum_input(struct file *file, void *priv,
2262 struct v4l2_input *i)
2263{
2264 if (i->index != 0)
2265 return -EINVAL;
2266
2267 strcpy(i->name, "Radio");
2268 i->type = V4L2_INPUT_TYPE_TUNER;
2269
2270 return 0;
2271}
2272
2273static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
2274{
2275 *i = 0;
2276 return 0;
2277}
2278
2279static int radio_g_audio(struct file *file, void *priv,
2280 struct v4l2_audio *a)
2281{
2282 memset(a, 0, sizeof(*a));
2283 strcpy(a->name, "Radio");
2284 return 0;
2285}
2286
2287static int radio_s_audio(struct file *file, void *priv,
2288 struct v4l2_audio *a)
2289{
2290 return 0;
2291}
2292
2293static int radio_s_input(struct file *filp, void *priv, unsigned int i)
2294{
2295 return 0;
2296}
2297
2298static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
2299{
2300 return 0;
2301}
2302
2303static int radio_queryctrl(struct file *file, void *priv,
2304 struct v4l2_queryctrl *c)
2305{
2306 const struct v4l2_queryctrl *ctrl;
2307
2308 if (c->id < V4L2_CID_BASE ||
2309 c->id >= V4L2_CID_LASTP1)
2310 return -EINVAL;
2311 if (c->id == V4L2_CID_AUDIO_MUTE) {
2312 ctrl = ctrl_by_id(c->id);
2313 *c = *ctrl;
2314 } else
2315 *c = no_ctrl;
2316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
Arjan van de Venfa027c22007-02-12 00:55:33 -08002319static const struct file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
2321 .owner = THIS_MODULE,
2322 .open = video_open,
2323 .release = video_release,
2324 .read = video_read,
2325 .poll = video_poll,
2326 .mmap = video_mmap,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002327 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02002328 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 .llseek = no_llseek,
2330};
2331
Arjan van de Venfa027c22007-02-12 00:55:33 -08002332static const struct file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 .owner = THIS_MODULE,
2335 .open = video_open,
2336 .release = video_release,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002337 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02002338 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 .llseek = no_llseek,
2340};
2341
2342/* ----------------------------------------------------------- */
2343/* exported stuff */
2344
2345struct video_device saa7134_video_template =
2346{
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002347 .name = "saa7134-video",
2348 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER |
2349 VID_TYPE_CLIPPING|VID_TYPE_SCALES,
2350 .fops = &video_fops,
2351 .minor = -1,
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002352 .vidioc_querycap = saa7134_querycap,
2353 .vidioc_enum_fmt_cap = saa7134_enum_fmt_cap,
2354 .vidioc_g_fmt_cap = saa7134_g_fmt_cap,
2355 .vidioc_try_fmt_cap = saa7134_try_fmt_cap,
2356 .vidioc_s_fmt_cap = saa7134_s_fmt_cap,
2357 .vidioc_enum_fmt_overlay = saa7134_enum_fmt_overlay,
2358 .vidioc_g_fmt_overlay = saa7134_g_fmt_overlay,
2359 .vidioc_try_fmt_overlay = saa7134_try_fmt_overlay,
2360 .vidioc_s_fmt_overlay = saa7134_s_fmt_overlay,
2361 .vidioc_enum_fmt_vbi = saa7134_enum_fmt_vbi,
2362 .vidioc_g_fmt_vbi = saa7134_try_get_set_fmt_vbi,
2363 .vidioc_try_fmt_vbi = saa7134_try_get_set_fmt_vbi,
2364 .vidioc_s_fmt_vbi = saa7134_try_get_set_fmt_vbi,
2365 .vidioc_g_audio = saa7134_g_audio,
2366 .vidioc_s_audio = saa7134_s_audio,
2367 .vidioc_cropcap = saa7134_cropcap,
2368 .vidioc_reqbufs = saa7134_reqbufs,
2369 .vidioc_querybuf = saa7134_querybuf,
2370 .vidioc_qbuf = saa7134_qbuf,
2371 .vidioc_dqbuf = saa7134_dqbuf,
2372 .vidioc_s_std = saa7134_s_std,
2373 .vidioc_enum_input = saa7134_enum_input,
2374 .vidioc_g_input = saa7134_g_input,
2375 .vidioc_s_input = saa7134_s_input,
2376 .vidioc_queryctrl = saa7134_queryctrl,
2377 .vidioc_g_ctrl = saa7134_g_ctrl,
2378 .vidioc_s_ctrl = saa7134_s_ctrl,
2379 .vidioc_streamon = saa7134_streamon,
2380 .vidioc_streamoff = saa7134_streamoff,
2381 .vidioc_g_tuner = saa7134_g_tuner,
2382 .vidioc_s_tuner = saa7134_s_tuner,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002383#ifdef CONFIG_VIDEO_V4L1_COMPAT
2384 .vidiocgmbuf = vidiocgmbuf,
2385#endif
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002386 .vidioc_g_crop = saa7134_g_crop,
2387 .vidioc_s_crop = saa7134_s_crop,
2388 .vidioc_g_fbuf = saa7134_g_fbuf,
2389 .vidioc_s_fbuf = saa7134_s_fbuf,
2390 .vidioc_overlay = saa7134_overlay,
2391 .vidioc_g_priority = saa7134_g_priority,
2392 .vidioc_s_priority = saa7134_s_priority,
2393 .vidioc_g_parm = saa7134_g_parm,
2394 .vidioc_g_frequency = saa7134_g_frequency,
2395 .vidioc_s_frequency = saa7134_s_frequency,
Mauro Carvalho Chehab8c854542007-12-07 17:34:48 -03002396 .tvnorms = SAA7134_NORMS,
2397 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398};
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400struct video_device saa7134_radio_template =
2401{
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002402 .name = "saa7134-radio",
2403 .type = VID_TYPE_TUNER,
2404 .fops = &radio_fops,
2405 .minor = -1,
Douglas Schilling Landgraf8f61ae22007-12-07 17:09:53 -03002406 .vidioc_querycap = radio_querycap,
2407 .vidioc_g_tuner = radio_g_tuner,
2408 .vidioc_enum_input = radio_enum_input,
2409 .vidioc_g_audio = radio_g_audio,
2410 .vidioc_s_tuner = radio_s_tuner,
2411 .vidioc_s_audio = radio_s_audio,
2412 .vidioc_s_input = radio_s_input,
2413 .vidioc_s_std = radio_s_std,
2414 .vidioc_queryctrl = radio_queryctrl,
2415 .vidioc_g_input = radio_g_input,
Mauro Carvalho Chehabbfb12e32007-12-11 11:51:53 -03002416 .vidioc_g_ctrl = saa7134_g_ctrl,
2417 .vidioc_s_ctrl = saa7134_s_ctrl,
2418 .vidioc_g_frequency = saa7134_g_frequency,
2419 .vidioc_s_frequency = saa7134_s_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420};
2421
2422int saa7134_video_init1(struct saa7134_dev *dev)
2423{
2424 /* sanitycheck insmod options */
2425 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
2426 gbuffers = 2;
2427 if (gbufsize < 0 || gbufsize > gbufsize_max)
2428 gbufsize = gbufsize_max;
2429 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
2430
2431 /* put some sensible defaults into the data structures ... */
2432 dev->ctl_bright = ctrl_by_id(V4L2_CID_BRIGHTNESS)->default_value;
2433 dev->ctl_contrast = ctrl_by_id(V4L2_CID_CONTRAST)->default_value;
2434 dev->ctl_hue = ctrl_by_id(V4L2_CID_HUE)->default_value;
2435 dev->ctl_saturation = ctrl_by_id(V4L2_CID_SATURATION)->default_value;
2436 dev->ctl_volume = ctrl_by_id(V4L2_CID_AUDIO_VOLUME)->default_value;
2437 dev->ctl_mute = 1; // ctrl_by_id(V4L2_CID_AUDIO_MUTE)->default_value;
2438 dev->ctl_invert = ctrl_by_id(V4L2_CID_PRIVATE_INVERT)->default_value;
2439 dev->ctl_automute = ctrl_by_id(V4L2_CID_PRIVATE_AUTOMUTE)->default_value;
2440
2441 if (dev->tda9887_conf && dev->ctl_automute)
2442 dev->tda9887_conf |= TDA9887_AUTOMUTE;
2443 dev->automute = 0;
2444
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08002445 INIT_LIST_HEAD(&dev->video_q.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 init_timer(&dev->video_q.timeout);
2447 dev->video_q.timeout.function = saa7134_buffer_timeout;
2448 dev->video_q.timeout.data = (unsigned long)(&dev->video_q);
2449 dev->video_q.dev = dev;
2450
Maxim Levitskycb712012007-09-27 20:34:25 -03002451 if (saa7134_boards[dev->board].video_out)
2452 saa7134_videoport_init(dev);
2453
2454 return 0;
2455}
2456
2457int saa7134_videoport_init(struct saa7134_dev *dev)
2458{
2459 /* enable video output */
2460 int vo = saa7134_boards[dev->board].video_out;
2461 int video_reg;
2462 unsigned int vid_port_opts = saa7134_boards[dev->board].vid_port_opts;
2463 saa_writeb(SAA7134_VIDEO_PORT_CTRL0, video_out[vo][0]);
2464 video_reg = video_out[vo][1];
2465 if (vid_port_opts & SET_T_CODE_POLARITY_NON_INVERTED)
2466 video_reg &= ~VP_T_CODE_P_INVERTED;
2467 saa_writeb(SAA7134_VIDEO_PORT_CTRL1, video_reg);
2468 saa_writeb(SAA7134_VIDEO_PORT_CTRL2, video_out[vo][2]);
2469 saa_writeb(SAA7134_VIDEO_PORT_CTRL3, video_out[vo][3]);
2470 saa_writeb(SAA7134_VIDEO_PORT_CTRL4, video_out[vo][4]);
2471 video_reg = video_out[vo][5];
2472 if (vid_port_opts & SET_CLOCK_NOT_DELAYED)
2473 video_reg &= ~VP_CLK_CTRL2_DELAYED;
2474 if (vid_port_opts & SET_CLOCK_INVERTED)
2475 video_reg |= VP_CLK_CTRL1_INVERTED;
2476 saa_writeb(SAA7134_VIDEO_PORT_CTRL5, video_reg);
2477 video_reg = video_out[vo][6];
2478 if (vid_port_opts & SET_VSYNC_OFF) {
2479 video_reg &= ~VP_VS_TYPE_MASK;
2480 video_reg |= VP_VS_TYPE_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 }
Maxim Levitskycb712012007-09-27 20:34:25 -03002482 saa_writeb(SAA7134_VIDEO_PORT_CTRL6, video_reg);
2483 saa_writeb(SAA7134_VIDEO_PORT_CTRL7, video_out[vo][7]);
2484 saa_writeb(SAA7134_VIDEO_PORT_CTRL8, video_out[vo][8]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 return 0;
2487}
2488
2489int saa7134_video_init2(struct saa7134_dev *dev)
2490{
2491 /* init video hw */
2492 set_tvnorm(dev,&tvnorms[0]);
2493 video_mux(dev,0);
2494 saa7134_tvaudio_setmute(dev);
2495 saa7134_tvaudio_setvolume(dev,dev->ctl_volume);
2496 return 0;
2497}
2498
Maxim Levitsky11f70782007-09-27 20:44:39 -03002499void saa7134_irq_video_signalchange(struct saa7134_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 static const char *st[] = {
2502 "(no signal)", "NTSC", "PAL", "SECAM" };
2503 u32 st1,st2;
2504
2505 st1 = saa_readb(SAA7134_STATUS_VIDEO1);
2506 st2 = saa_readb(SAA7134_STATUS_VIDEO2);
2507 dprintk("DCSDT: pll: %s, sync: %s, norm: %s\n",
2508 (st1 & 0x40) ? "not locked" : "locked",
2509 (st2 & 0x40) ? "no" : "yes",
2510 st[st1 & 0x03]);
Maxim Levitsky11f70782007-09-27 20:44:39 -03002511 dev->nosignal = (st1 & 0x40) || (st2 & 0x40) || !(st2 & 0x1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 if (dev->nosignal) {
2514 /* no video signal -> mute audio */
2515 if (dev->ctl_automute)
2516 dev->automute = 1;
2517 saa7134_tvaudio_setmute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 } else {
2519 /* wake up tvaudio audio carrier scan thread */
2520 saa7134_tvaudio_do_scan(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
Maxim Levitsky11f70782007-09-27 20:44:39 -03002522
2523 if ((st2 & 0x80) && !noninterlaced && !dev->nosignal)
2524 saa_clearb(SAA7134_SYNC_CTRL, 0x20);
2525 else
2526 saa_setb(SAA7134_SYNC_CTRL, 0x20);
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 if (dev->mops && dev->mops->signal_change)
2529 dev->mops->signal_change(dev);
2530}
2531
Maxim Levitsky11f70782007-09-27 20:44:39 -03002532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533void saa7134_irq_video_done(struct saa7134_dev *dev, unsigned long status)
2534{
2535 enum v4l2_field field;
2536
2537 spin_lock(&dev->slock);
2538 if (dev->video_q.curr) {
2539 dev->video_fieldcount++;
2540 field = dev->video_q.curr->vb.field;
2541 if (V4L2_FIELD_HAS_BOTH(field)) {
2542 /* make sure we have seen both fields */
2543 if ((status & 0x10) == 0x00) {
2544 dev->video_q.curr->top_seen = 1;
2545 goto done;
2546 }
2547 if (!dev->video_q.curr->top_seen)
2548 goto done;
2549 } else if (field == V4L2_FIELD_TOP) {
2550 if ((status & 0x10) != 0x10)
2551 goto done;
2552 } else if (field == V4L2_FIELD_BOTTOM) {
2553 if ((status & 0x10) != 0x00)
2554 goto done;
2555 }
2556 dev->video_q.curr->vb.field_count = dev->video_fieldcount;
Brandon Philips0fc06862007-11-06 20:02:36 -03002557 saa7134_buffer_finish(dev,&dev->video_q,VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559 saa7134_buffer_next(dev,&dev->video_q);
2560
2561 done:
2562 spin_unlock(&dev->slock);
2563}
2564
2565/* ----------------------------------------------------------- */
2566/*
2567 * Local variables:
2568 * c-basic-offset: 8
2569 * End:
2570 */