3 bttv - Bt848 frame grabber driver
5 Copyright (C) 1996,97,98 Ralph Metzler <rjkm@thp.uni-koeln.de>
6 & Marcus Metzler <mocm@thp.uni-koeln.de>
7 (c) 1999-2002 Gerd Knorr <kraxel@bytesex.org>
9 some v4l2 code lines are taken from Justin's bttv2 driver which is
10 (c) 2000 Justin Schoeman <justin@suntiger.ee.up.ac.za>
12 Cropping and overscan support
13 Copyright (C) 2005, 2006 Michael H. Schimek <mschimek@gmx.at>
14 Sponsored by OPQ Systems AB
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #include <linux/init.h>
32 #include <linux/module.h>
33 #include <linux/moduleparam.h>
34 #include <linux/delay.h>
35 #include <linux/errno.h>
37 #include <linux/kernel.h>
38 #include <linux/sched.h>
39 #include <linux/interrupt.h>
40 #include <linux/kdev_t.h>
42 #include <media/v4l2-common.h>
43 #include <media/tvaudio.h>
44 #include <media/msp3400.h>
46 #include <linux/dma-mapping.h>
49 #include <asm/byteorder.h>
51 #include <media/rds.h>
54 unsigned int bttv_num; /* number of Bt848s in use */
55 struct bttv bttvs[BTTV_MAX];
57 unsigned int bttv_debug;
58 unsigned int bttv_verbose = 1;
59 unsigned int bttv_gpio;
61 /* config variables */
63 static unsigned int bigendian=1;
65 static unsigned int bigendian;
67 static unsigned int radio[BTTV_MAX];
68 static unsigned int irq_debug;
69 static unsigned int gbuffers = 8;
70 static unsigned int gbufsize = 0x208000;
71 static unsigned int reset_crop = 1;
73 static int video_nr = -1;
74 static int radio_nr = -1;
75 static int vbi_nr = -1;
76 static int debug_latency;
78 static unsigned int fdsr;
81 static unsigned int combfilter;
82 static unsigned int lumafilter;
83 static unsigned int automute = 1;
84 static unsigned int chroma_agc;
85 static unsigned int adc_crush = 1;
86 static unsigned int whitecrush_upper = 0xCF;
87 static unsigned int whitecrush_lower = 0x7F;
88 static unsigned int vcr_hack;
89 static unsigned int irq_iswitch;
90 static unsigned int uv_ratio = 50;
91 static unsigned int full_luma_range;
92 static unsigned int coring;
93 extern int no_overlay;
95 /* API features (turn on/off stuff for testing) */
96 static unsigned int v4l2 = 1;
99 module_param(bttv_verbose, int, 0644);
100 module_param(bttv_gpio, int, 0644);
101 module_param(bttv_debug, int, 0644);
102 module_param(irq_debug, int, 0644);
103 module_param(debug_latency, int, 0644);
105 module_param(fdsr, int, 0444);
106 module_param(video_nr, int, 0444);
107 module_param(radio_nr, int, 0444);
108 module_param(vbi_nr, int, 0444);
109 module_param(gbuffers, int, 0444);
110 module_param(gbufsize, int, 0444);
111 module_param(reset_crop, int, 0444);
113 module_param(v4l2, int, 0644);
114 module_param(bigendian, int, 0644);
115 module_param(irq_iswitch, int, 0644);
116 module_param(combfilter, int, 0444);
117 module_param(lumafilter, int, 0444);
118 module_param(automute, int, 0444);
119 module_param(chroma_agc, int, 0444);
120 module_param(adc_crush, int, 0444);
121 module_param(whitecrush_upper, int, 0444);
122 module_param(whitecrush_lower, int, 0444);
123 module_param(vcr_hack, int, 0444);
124 module_param(uv_ratio, int, 0444);
125 module_param(full_luma_range, int, 0444);
126 module_param(coring, int, 0444);
128 module_param_array(radio, int, NULL, 0444);
130 MODULE_PARM_DESC(radio,"The TV card supports radio, default is 0 (no)");
131 MODULE_PARM_DESC(bigendian,"byte order of the framebuffer, default is native endian");
132 MODULE_PARM_DESC(bttv_verbose,"verbose startup messages, default is 1 (yes)");
133 MODULE_PARM_DESC(bttv_gpio,"log gpio changes, default is 0 (no)");
134 MODULE_PARM_DESC(bttv_debug,"debug messages, default is 0 (no)");
135 MODULE_PARM_DESC(irq_debug,"irq handler debug messages, default is 0 (no)");
136 MODULE_PARM_DESC(gbuffers,"number of capture buffers. range 2-32, default 8");
137 MODULE_PARM_DESC(gbufsize,"size of the capture buffers, default is 0x208000");
138 MODULE_PARM_DESC(reset_crop,"reset cropping parameters at open(), default "
139 "is 1 (yes) for compatibility with older applications");
140 MODULE_PARM_DESC(automute,"mute audio on bad/missing video signal, default is 1 (yes)");
141 MODULE_PARM_DESC(chroma_agc,"enables the AGC of chroma signal, default is 0 (no)");
142 MODULE_PARM_DESC(adc_crush,"enables the luminance ADC crush, default is 1 (yes)");
143 MODULE_PARM_DESC(whitecrush_upper,"sets the white crush upper value, default is 207");
144 MODULE_PARM_DESC(whitecrush_lower,"sets the white crush lower value, default is 127");
145 MODULE_PARM_DESC(vcr_hack,"enables the VCR hack (improves synch on poor VCR tapes), default is 0 (no)");
146 MODULE_PARM_DESC(irq_iswitch,"switch inputs in irq handler");
147 MODULE_PARM_DESC(uv_ratio,"ratio between u and v gains, default is 50");
148 MODULE_PARM_DESC(full_luma_range,"use the full luma range, default is 0 (no)");
149 MODULE_PARM_DESC(coring,"set the luma coring level, default is 0 (no)");
151 MODULE_DESCRIPTION("bttv - v4l/v4l2 driver module for bt848/878 based cards");
152 MODULE_AUTHOR("Ralph Metzler & Marcus Metzler & Gerd Knorr");
153 MODULE_LICENSE("GPL");
155 /* ----------------------------------------------------------------------- */
158 static ssize_t show_card(struct class_device *cd, char *buf)
160 struct video_device *vfd = to_video_device(cd);
161 struct bttv *btv = dev_get_drvdata(vfd->dev);
162 return sprintf(buf, "%d\n", btv ? btv->c.type : UNSET);
164 static CLASS_DEVICE_ATTR(card, S_IRUGO, show_card, NULL);
166 /* ----------------------------------------------------------------------- */
167 /* dvb auto-load setup */
168 #if defined(CONFIG_MODULES) && defined(MODULE)
169 static void request_module_async(struct work_struct *work)
171 request_module("dvb-bt8xx");
174 static void request_modules(struct bttv *dev)
176 INIT_WORK(&dev->request_module_wk, request_module_async);
177 schedule_work(&dev->request_module_wk);
180 #define request_modules(dev)
181 #endif /* CONFIG_MODULES */
184 /* ----------------------------------------------------------------------- */
187 /* special timing tables from conexant... */
188 static u8 SRAM_Table[][60] =
190 /* PAL digital input over GPIO[7:0] */
192 45, // 45 bytes following
193 0x36,0x11,0x01,0x00,0x90,0x02,0x05,0x10,0x04,0x16,
194 0x12,0x05,0x11,0x00,0x04,0x12,0xC0,0x00,0x31,0x00,
195 0x06,0x51,0x08,0x03,0x89,0x08,0x07,0xC0,0x44,0x00,
196 0x81,0x01,0x01,0xA9,0x0D,0x02,0x02,0x50,0x03,0x37,
197 0x37,0x00,0xAF,0x21,0x00
199 /* NTSC digital input over GPIO[7:0] */
201 51, // 51 bytes following
202 0x0C,0xC0,0x00,0x00,0x90,0x02,0x03,0x10,0x03,0x06,
203 0x10,0x04,0x12,0x12,0x05,0x02,0x13,0x04,0x19,0x00,
204 0x04,0x39,0x00,0x06,0x59,0x08,0x03,0x83,0x08,0x07,
205 0x03,0x50,0x00,0xC0,0x40,0x00,0x86,0x01,0x01,0xA6,
206 0x0D,0x02,0x03,0x11,0x01,0x05,0x37,0x00,0xAC,0x21,
209 // TGB_NTSC392 // quartzsight
210 // This table has been modified to be used for Fusion Rev D
212 0x2A, // size of table = 42
213 0x06, 0x08, 0x04, 0x0a, 0xc0, 0x00, 0x18, 0x08, 0x03, 0x24,
214 0x08, 0x07, 0x02, 0x90, 0x02, 0x08, 0x10, 0x04, 0x0c, 0x10,
215 0x05, 0x2c, 0x11, 0x04, 0x55, 0x48, 0x00, 0x05, 0x50, 0x00,
216 0xbf, 0x0c, 0x02, 0x2f, 0x3d, 0x00, 0x2f, 0x3f, 0x00, 0xc3,
221 /* minhdelayx1 first video pixel we can capture on a line and
222 hdelayx1 start of active video, both relative to rising edge of
223 /HRESET pulse (0H) in 1 / fCLKx1.
224 swidth width of active video and
225 totalwidth total line width, both in 1 / fCLKx1.
226 sqwidth total line width in square pixels.
227 vdelay start of active video in 2 * field lines relative to
228 trailing edge of /VRESET pulse (VDELAY register).
229 sheight height of active video in 2 * field lines.
230 videostart0 ITU-R frame line number of the line corresponding
231 to vdelay in the first field. */
232 #define CROPCAP(minhdelayx1, hdelayx1, swidth, totalwidth, sqwidth, \
233 vdelay, sheight, videostart0) \
234 .cropcap.bounds.left = minhdelayx1, \
235 /* * 2 because vertically we count field lines times two, */ \
236 /* e.g. 23 * 2 to 23 * 2 + 576 in PAL-BGHI defrect. */ \
237 .cropcap.bounds.top = (videostart0) * 2 - (vdelay) + MIN_VDELAY, \
238 /* 4 is a safety margin at the end of the line. */ \
239 .cropcap.bounds.width = (totalwidth) - (minhdelayx1) - 4, \
240 .cropcap.bounds.height = (sheight) + (vdelay) - MIN_VDELAY, \
241 .cropcap.defrect.left = hdelayx1, \
242 .cropcap.defrect.top = (videostart0) * 2, \
243 .cropcap.defrect.width = swidth, \
244 .cropcap.defrect.height = sheight, \
245 .cropcap.pixelaspect.numerator = totalwidth, \
246 .cropcap.pixelaspect.denominator = sqwidth,
248 const struct bttv_tvnorm bttv_tvnorms[] = {
250 /* max. active video is actually 922, but 924 is divisible by 4 and 3! */
251 /* actually, max active PAL with HSCALE=0 is 948, NTSC is 768 - nil */
253 .v4l2_id = V4L2_STD_PAL,
261 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
262 .scaledtwidth = 1135,
266 .vbipack = 255, /* min (2048 / 4, 0x1ff) & 0xff */
268 /* ITU-R frame line number of the first VBI line
269 we can capture, of the first and second field.
270 The last line is determined by cropcap.bounds. */
271 .vbistart = { 7, 320 },
272 CROPCAP(/* minhdelayx1 */ 68,
274 /* Should be (768 * 1135 + 944 / 2) / 944.
275 cropcap.defrect is used for image width
276 checks, so we keep the old value 924. */
278 /* totalwidth */ 1135,
282 /* videostart0 */ 23)
283 /* bt878 (and bt848?) can capture another
284 line below active video. */
285 .cropcap.bounds.height = (576 + 2) + 0x20 - 2,
287 .v4l2_id = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR,
295 .iform = (BT848_IFORM_NTSC|BT848_IFORM_XT0),
300 .vbipack = 144, /* min (1600 / 4, 0x1ff) & 0xff */
302 .vbistart = { 10, 273 },
303 CROPCAP(/* minhdelayx1 */ 68,
305 /* Should be (640 * 910 + 780 / 2) / 780? */
307 /* totalwidth */ 910,
311 /* videostart0 */ 23)
313 .v4l2_id = V4L2_STD_SECAM,
321 .iform = (BT848_IFORM_SECAM|BT848_IFORM_XT1),
322 .scaledtwidth = 1135,
327 .sram = 0, /* like PAL, correct? */
328 .vbistart = { 7, 320 },
329 CROPCAP(/* minhdelayx1 */ 68,
332 /* totalwidth */ 1135,
336 /* videostart0 */ 23)
338 .v4l2_id = V4L2_STD_PAL_Nc,
346 .iform = (BT848_IFORM_PAL_NC|BT848_IFORM_XT0),
353 .vbistart = { 7, 320 },
354 CROPCAP(/* minhdelayx1 */ 68,
356 /* swidth */ (640 * 910 + 780 / 2) / 780,
357 /* totalwidth */ 910,
361 /* videostart0 */ 23)
363 .v4l2_id = V4L2_STD_PAL_M,
371 .iform = (BT848_IFORM_PAL_M|BT848_IFORM_XT0),
378 .vbistart = { 10, 273 },
379 CROPCAP(/* minhdelayx1 */ 68,
381 /* swidth */ (640 * 910 + 780 / 2) / 780,
382 /* totalwidth */ 910,
386 /* videostart0 */ 23)
388 .v4l2_id = V4L2_STD_PAL_N,
396 .iform = (BT848_IFORM_PAL_N|BT848_IFORM_XT1),
403 .vbistart = { 7, 320 },
404 CROPCAP(/* minhdelayx1 */ 68,
406 /* swidth */ (768 * 1135 + 944 / 2) / 944,
407 /* totalwidth */ 1135,
411 /* videostart0 */ 23)
413 .v4l2_id = V4L2_STD_NTSC_M_JP,
421 .iform = (BT848_IFORM_NTSC_J|BT848_IFORM_XT0),
428 .vbistart = { 10, 273 },
429 CROPCAP(/* minhdelayx1 */ 68,
431 /* swidth */ (640 * 910 + 780 / 2) / 780,
432 /* totalwidth */ 910,
436 /* videostart0 */ 23)
438 /* that one hopefully works with the strange timing
439 * which video recorders produce when playing a NTSC
440 * tape on a PAL TV ... */
441 .v4l2_id = V4L2_STD_PAL_60,
449 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
450 .scaledtwidth = 1135,
457 .vbistart = { 10, 273 },
458 CROPCAP(/* minhdelayx1 */ 68,
461 /* totalwidth */ 1135,
465 /* videostart0 */ 23)
468 static const unsigned int BTTV_TVNORMS = ARRAY_SIZE(bttv_tvnorms);
470 /* ----------------------------------------------------------------------- */
472 packed pixel formats must come first */
473 static const struct bttv_format bttv_formats[] = {
475 .name = "8 bpp, gray",
476 .palette = VIDEO_PALETTE_GREY,
477 .fourcc = V4L2_PIX_FMT_GREY,
478 .btformat = BT848_COLOR_FMT_Y8,
480 .flags = FORMAT_FLAGS_PACKED,
482 .name = "8 bpp, dithered color",
483 .palette = VIDEO_PALETTE_HI240,
484 .fourcc = V4L2_PIX_FMT_HI240,
485 .btformat = BT848_COLOR_FMT_RGB8,
487 .flags = FORMAT_FLAGS_PACKED | FORMAT_FLAGS_DITHER,
489 .name = "15 bpp RGB, le",
490 .palette = VIDEO_PALETTE_RGB555,
491 .fourcc = V4L2_PIX_FMT_RGB555,
492 .btformat = BT848_COLOR_FMT_RGB15,
494 .flags = FORMAT_FLAGS_PACKED,
496 .name = "15 bpp RGB, be",
498 .fourcc = V4L2_PIX_FMT_RGB555X,
499 .btformat = BT848_COLOR_FMT_RGB15,
500 .btswap = 0x03, /* byteswap */
502 .flags = FORMAT_FLAGS_PACKED,
504 .name = "16 bpp RGB, le",
505 .palette = VIDEO_PALETTE_RGB565,
506 .fourcc = V4L2_PIX_FMT_RGB565,
507 .btformat = BT848_COLOR_FMT_RGB16,
509 .flags = FORMAT_FLAGS_PACKED,
511 .name = "16 bpp RGB, be",
513 .fourcc = V4L2_PIX_FMT_RGB565X,
514 .btformat = BT848_COLOR_FMT_RGB16,
515 .btswap = 0x03, /* byteswap */
517 .flags = FORMAT_FLAGS_PACKED,
519 .name = "24 bpp RGB, le",
520 .palette = VIDEO_PALETTE_RGB24,
521 .fourcc = V4L2_PIX_FMT_BGR24,
522 .btformat = BT848_COLOR_FMT_RGB24,
524 .flags = FORMAT_FLAGS_PACKED,
526 .name = "32 bpp RGB, le",
527 .palette = VIDEO_PALETTE_RGB32,
528 .fourcc = V4L2_PIX_FMT_BGR32,
529 .btformat = BT848_COLOR_FMT_RGB32,
531 .flags = FORMAT_FLAGS_PACKED,
533 .name = "32 bpp RGB, be",
535 .fourcc = V4L2_PIX_FMT_RGB32,
536 .btformat = BT848_COLOR_FMT_RGB32,
537 .btswap = 0x0f, /* byte+word swap */
539 .flags = FORMAT_FLAGS_PACKED,
541 .name = "4:2:2, packed, YUYV",
542 .palette = VIDEO_PALETTE_YUV422,
543 .fourcc = V4L2_PIX_FMT_YUYV,
544 .btformat = BT848_COLOR_FMT_YUY2,
546 .flags = FORMAT_FLAGS_PACKED,
548 .name = "4:2:2, packed, YUYV",
549 .palette = VIDEO_PALETTE_YUYV,
550 .fourcc = V4L2_PIX_FMT_YUYV,
551 .btformat = BT848_COLOR_FMT_YUY2,
553 .flags = FORMAT_FLAGS_PACKED,
555 .name = "4:2:2, packed, UYVY",
556 .palette = VIDEO_PALETTE_UYVY,
557 .fourcc = V4L2_PIX_FMT_UYVY,
558 .btformat = BT848_COLOR_FMT_YUY2,
559 .btswap = 0x03, /* byteswap */
561 .flags = FORMAT_FLAGS_PACKED,
563 .name = "4:2:2, planar, Y-Cb-Cr",
564 .palette = VIDEO_PALETTE_YUV422P,
565 .fourcc = V4L2_PIX_FMT_YUV422P,
566 .btformat = BT848_COLOR_FMT_YCrCb422,
568 .flags = FORMAT_FLAGS_PLANAR,
572 .name = "4:2:0, planar, Y-Cb-Cr",
573 .palette = VIDEO_PALETTE_YUV420P,
574 .fourcc = V4L2_PIX_FMT_YUV420,
575 .btformat = BT848_COLOR_FMT_YCrCb422,
577 .flags = FORMAT_FLAGS_PLANAR,
581 .name = "4:2:0, planar, Y-Cr-Cb",
583 .fourcc = V4L2_PIX_FMT_YVU420,
584 .btformat = BT848_COLOR_FMT_YCrCb422,
586 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
590 .name = "4:1:1, planar, Y-Cb-Cr",
591 .palette = VIDEO_PALETTE_YUV411P,
592 .fourcc = V4L2_PIX_FMT_YUV411P,
593 .btformat = BT848_COLOR_FMT_YCrCb411,
595 .flags = FORMAT_FLAGS_PLANAR,
599 .name = "4:1:0, planar, Y-Cb-Cr",
600 .palette = VIDEO_PALETTE_YUV410P,
601 .fourcc = V4L2_PIX_FMT_YUV410,
602 .btformat = BT848_COLOR_FMT_YCrCb411,
604 .flags = FORMAT_FLAGS_PLANAR,
608 .name = "4:1:0, planar, Y-Cr-Cb",
610 .fourcc = V4L2_PIX_FMT_YVU410,
611 .btformat = BT848_COLOR_FMT_YCrCb411,
613 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
617 .name = "raw scanlines",
618 .palette = VIDEO_PALETTE_RAW,
620 .btformat = BT848_COLOR_FMT_RAW,
622 .flags = FORMAT_FLAGS_RAW,
625 static const unsigned int BTTV_FORMATS = ARRAY_SIZE(bttv_formats);
627 /* ----------------------------------------------------------------------- */
629 #define V4L2_CID_PRIVATE_CHROMA_AGC (V4L2_CID_PRIVATE_BASE + 0)
630 #define V4L2_CID_PRIVATE_COMBFILTER (V4L2_CID_PRIVATE_BASE + 1)
631 #define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 2)
632 #define V4L2_CID_PRIVATE_LUMAFILTER (V4L2_CID_PRIVATE_BASE + 3)
633 #define V4L2_CID_PRIVATE_AGC_CRUSH (V4L2_CID_PRIVATE_BASE + 4)
634 #define V4L2_CID_PRIVATE_VCR_HACK (V4L2_CID_PRIVATE_BASE + 5)
635 #define V4L2_CID_PRIVATE_WHITECRUSH_UPPER (V4L2_CID_PRIVATE_BASE + 6)
636 #define V4L2_CID_PRIVATE_WHITECRUSH_LOWER (V4L2_CID_PRIVATE_BASE + 7)
637 #define V4L2_CID_PRIVATE_UV_RATIO (V4L2_CID_PRIVATE_BASE + 8)
638 #define V4L2_CID_PRIVATE_FULL_LUMA_RANGE (V4L2_CID_PRIVATE_BASE + 9)
639 #define V4L2_CID_PRIVATE_CORING (V4L2_CID_PRIVATE_BASE + 10)
640 #define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 11)
642 static const struct v4l2_queryctrl no_ctl = {
644 .flags = V4L2_CTRL_FLAG_DISABLED,
646 static const struct v4l2_queryctrl bttv_ctls[] = {
649 .id = V4L2_CID_BRIGHTNESS,
650 .name = "Brightness",
654 .default_value = 32768,
655 .type = V4L2_CTRL_TYPE_INTEGER,
657 .id = V4L2_CID_CONTRAST,
662 .default_value = 32768,
663 .type = V4L2_CTRL_TYPE_INTEGER,
665 .id = V4L2_CID_SATURATION,
666 .name = "Saturation",
670 .default_value = 32768,
671 .type = V4L2_CTRL_TYPE_INTEGER,
678 .default_value = 32768,
679 .type = V4L2_CTRL_TYPE_INTEGER,
683 .id = V4L2_CID_AUDIO_MUTE,
687 .type = V4L2_CTRL_TYPE_BOOLEAN,
689 .id = V4L2_CID_AUDIO_VOLUME,
694 .default_value = 65535,
695 .type = V4L2_CTRL_TYPE_INTEGER,
697 .id = V4L2_CID_AUDIO_BALANCE,
702 .default_value = 32768,
703 .type = V4L2_CTRL_TYPE_INTEGER,
705 .id = V4L2_CID_AUDIO_BASS,
710 .default_value = 32768,
711 .type = V4L2_CTRL_TYPE_INTEGER,
713 .id = V4L2_CID_AUDIO_TREBLE,
718 .default_value = 32768,
719 .type = V4L2_CTRL_TYPE_INTEGER,
721 /* --- private --- */
723 .id = V4L2_CID_PRIVATE_CHROMA_AGC,
724 .name = "chroma agc",
727 .type = V4L2_CTRL_TYPE_BOOLEAN,
729 .id = V4L2_CID_PRIVATE_COMBFILTER,
730 .name = "combfilter",
733 .type = V4L2_CTRL_TYPE_BOOLEAN,
735 .id = V4L2_CID_PRIVATE_AUTOMUTE,
739 .type = V4L2_CTRL_TYPE_BOOLEAN,
741 .id = V4L2_CID_PRIVATE_LUMAFILTER,
742 .name = "luma decimation filter",
745 .type = V4L2_CTRL_TYPE_BOOLEAN,
747 .id = V4L2_CID_PRIVATE_AGC_CRUSH,
751 .type = V4L2_CTRL_TYPE_BOOLEAN,
753 .id = V4L2_CID_PRIVATE_VCR_HACK,
757 .type = V4L2_CTRL_TYPE_BOOLEAN,
759 .id = V4L2_CID_PRIVATE_WHITECRUSH_UPPER,
760 .name = "whitecrush upper",
764 .default_value = 0xCF,
765 .type = V4L2_CTRL_TYPE_INTEGER,
767 .id = V4L2_CID_PRIVATE_WHITECRUSH_LOWER,
768 .name = "whitecrush lower",
772 .default_value = 0x7F,
773 .type = V4L2_CTRL_TYPE_INTEGER,
775 .id = V4L2_CID_PRIVATE_UV_RATIO,
781 .type = V4L2_CTRL_TYPE_INTEGER,
783 .id = V4L2_CID_PRIVATE_FULL_LUMA_RANGE,
784 .name = "full luma range",
787 .type = V4L2_CTRL_TYPE_BOOLEAN,
789 .id = V4L2_CID_PRIVATE_CORING,
795 .type = V4L2_CTRL_TYPE_INTEGER,
801 static const int BTTV_CTLS = ARRAY_SIZE(bttv_ctls);
803 /* ----------------------------------------------------------------------- */
804 /* resource management */
807 RESOURCE_ allocated by freed by
809 VIDEO_READ bttv_read 1) bttv_read 2)
811 VIDEO_STREAM VIDIOC_STREAMON VIDIOC_STREAMOFF
812 VIDIOC_QBUF 1) bttv_release
815 OVERLAY VIDIOCCAPTURE on VIDIOCCAPTURE off
816 VIDIOC_OVERLAY on VIDIOC_OVERLAY off
819 VBI VIDIOC_STREAMON VIDIOC_STREAMOFF
820 VIDIOC_QBUF 1) bttv_release
821 bttv_read, bttv_poll 1) 4)
823 1) The resource must be allocated when we enter buffer prepare functions
824 and remain allocated while buffers are in the DMA queue.
825 2) This is a single frame read.
826 3) VIDIOC_S_FBUF and VIDIOC_S_FMT (OVERLAY) still work when
827 RESOURCE_OVERLAY is allocated.
828 4) This is a continuous read, implies VIDIOC_STREAMON.
830 Note this driver permits video input and standard changes regardless if
831 resources are allocated.
834 #define VBI_RESOURCES (RESOURCE_VBI)
835 #define VIDEO_RESOURCES (RESOURCE_VIDEO_READ | \
836 RESOURCE_VIDEO_STREAM | \
840 int check_alloc_btres(struct bttv *btv, struct bttv_fh *fh, int bit)
842 int xbits; /* mutual exclusive resources */
844 if (fh->resources & bit)
845 /* have it already allocated */
849 if (bit & (RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM))
850 xbits |= RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM;
853 mutex_lock(&btv->lock);
854 if (btv->resources & xbits) {
855 /* no, someone else uses it */
859 if ((bit & VIDEO_RESOURCES)
860 && 0 == (btv->resources & VIDEO_RESOURCES)) {
861 /* Do crop - use current, don't - use default parameters. */
862 __s32 top = btv->crop[!!fh->do_crop].rect.top;
864 if (btv->vbi_end > top)
867 /* We cannot capture the same line as video and VBI data.
868 Claim scan lines crop[].rect.top to bottom. */
869 btv->crop_start = top;
870 } else if (bit & VBI_RESOURCES) {
871 __s32 end = fh->vbi_fmt.end;
873 if (end > btv->crop_start)
876 /* Claim scan lines above fh->vbi_fmt.end. */
880 /* it's free, grab it */
881 fh->resources |= bit;
882 btv->resources |= bit;
883 mutex_unlock(&btv->lock);
887 mutex_unlock(&btv->lock);
892 int check_btres(struct bttv_fh *fh, int bit)
894 return (fh->resources & bit);
898 int locked_btres(struct bttv *btv, int bit)
900 return (btv->resources & bit);
903 /* Call with btv->lock down. */
905 disclaim_vbi_lines(struct bttv *btv)
910 /* Call with btv->lock down. */
912 disclaim_video_lines(struct bttv *btv)
914 const struct bttv_tvnorm *tvnorm;
917 tvnorm = &bttv_tvnorms[btv->tvnorm];
918 btv->crop_start = tvnorm->cropcap.bounds.top
919 + tvnorm->cropcap.bounds.height;
921 /* VBI capturing ends at VDELAY, start of video capturing, no
922 matter how many lines the VBI RISC program expects. When video
923 capturing is off, it shall no longer "preempt" VBI capturing,
924 so we set VDELAY to maximum. */
925 crop = btread(BT848_E_CROP) | 0xc0;
926 btwrite(crop, BT848_E_CROP);
927 btwrite(0xfe, BT848_E_VDELAY_LO);
928 btwrite(crop, BT848_O_CROP);
929 btwrite(0xfe, BT848_O_VDELAY_LO);
933 void free_btres(struct bttv *btv, struct bttv_fh *fh, int bits)
935 if ((fh->resources & bits) != bits) {
936 /* trying to free ressources not allocated by us ... */
937 printk("bttv: BUG! (btres)\n");
939 mutex_lock(&btv->lock);
940 fh->resources &= ~bits;
941 btv->resources &= ~bits;
943 bits = btv->resources;
945 if (0 == (bits & VIDEO_RESOURCES))
946 disclaim_video_lines(btv);
948 if (0 == (bits & VBI_RESOURCES))
949 disclaim_vbi_lines(btv);
951 mutex_unlock(&btv->lock);
954 /* ----------------------------------------------------------------------- */
955 /* If Bt848a or Bt849, use PLL for PAL/SECAM and crystal for NTSC */
957 /* Frequency = (F_input / PLL_X) * PLL_I.PLL_F/PLL_C
958 PLL_X = Reference pre-divider (0=1, 1=2)
959 PLL_C = Post divider (0=6, 1=4)
960 PLL_I = Integer input
961 PLL_F = Fractional input
963 F_input = 28.636363 MHz:
964 PAL (CLKx2 = 35.46895 MHz): PLL_X = 1, PLL_I = 0x0E, PLL_F = 0xDCF9, PLL_C = 0
967 static void set_pll_freq(struct bttv *btv, unsigned int fin, unsigned int fout)
969 unsigned char fl, fh, fi;
971 /* prevent overflows */
984 btwrite(fl, BT848_PLL_F_LO);
985 btwrite(fh, BT848_PLL_F_HI);
986 btwrite(fi|BT848_PLL_X, BT848_PLL_XCI);
989 static void set_pll(struct bttv *btv)
993 if (!btv->pll.pll_crystal)
996 if (btv->pll.pll_ofreq == btv->pll.pll_current) {
997 dprintk("bttv%d: PLL: no change required\n",btv->c.nr);
1001 if (btv->pll.pll_ifreq == btv->pll.pll_ofreq) {
1003 if (btv->pll.pll_current == 0)
1005 bttv_printk(KERN_INFO "bttv%d: PLL can sleep, using XTAL (%d).\n",
1006 btv->c.nr,btv->pll.pll_ifreq);
1007 btwrite(0x00,BT848_TGCTRL);
1008 btwrite(0x00,BT848_PLL_XCI);
1009 btv->pll.pll_current = 0;
1013 bttv_printk(KERN_INFO "bttv%d: PLL: %d => %d ",btv->c.nr,
1014 btv->pll.pll_ifreq, btv->pll.pll_ofreq);
1015 set_pll_freq(btv, btv->pll.pll_ifreq, btv->pll.pll_ofreq);
1017 for (i=0; i<10; i++) {
1018 /* Let other people run while the PLL stabilizes */
1022 if (btread(BT848_DSTATUS) & BT848_DSTATUS_PLOCK) {
1023 btwrite(0,BT848_DSTATUS);
1025 btwrite(0x08,BT848_TGCTRL);
1026 btv->pll.pll_current = btv->pll.pll_ofreq;
1027 bttv_printk(" ok\n");
1031 btv->pll.pll_current = -1;
1032 bttv_printk("failed\n");
1036 /* used to switch between the bt848's analog/digital video capture modes */
1037 static void bt848A_set_timing(struct bttv *btv)
1040 int table_idx = bttv_tvnorms[btv->tvnorm].sram;
1041 int fsc = bttv_tvnorms[btv->tvnorm].Fsc;
1043 if (UNSET == bttv_tvcards[btv->c.type].muxsel[btv->input]) {
1044 dprintk("bttv%d: load digital timing table (table_idx=%d)\n",
1045 btv->c.nr,table_idx);
1047 /* timing change...reset timing generator address */
1048 btwrite(0x00, BT848_TGCTRL);
1049 btwrite(0x02, BT848_TGCTRL);
1050 btwrite(0x00, BT848_TGCTRL);
1052 len=SRAM_Table[table_idx][0];
1053 for(i = 1; i <= len; i++)
1054 btwrite(SRAM_Table[table_idx][i],BT848_TGLB);
1055 btv->pll.pll_ofreq = 27000000;
1058 btwrite(0x11, BT848_TGCTRL);
1059 btwrite(0x41, BT848_DVSIF);
1061 btv->pll.pll_ofreq = fsc;
1063 btwrite(0x0, BT848_DVSIF);
1067 /* ----------------------------------------------------------------------- */
1069 static void bt848_bright(struct bttv *btv, int bright)
1073 // printk("bttv: set bright: %d\n",bright); // DEBUG
1074 btv->bright = bright;
1076 /* We want -128 to 127 we get 0-65535 */
1077 value = (bright >> 8) - 128;
1078 btwrite(value & 0xff, BT848_BRIGHT);
1081 static void bt848_hue(struct bttv *btv, int hue)
1088 value = (hue >> 8) - 128;
1089 btwrite(value & 0xff, BT848_HUE);
1092 static void bt848_contrast(struct bttv *btv, int cont)
1096 btv->contrast = cont;
1099 value = (cont >> 7);
1100 hibit = (value >> 6) & 4;
1101 btwrite(value & 0xff, BT848_CONTRAST_LO);
1102 btaor(hibit, ~4, BT848_E_CONTROL);
1103 btaor(hibit, ~4, BT848_O_CONTROL);
1106 static void bt848_sat(struct bttv *btv, int color)
1108 int val_u,val_v,hibits;
1110 btv->saturation = color;
1112 /* 0-511 for the color */
1113 val_u = ((color * btv->opt_uv_ratio) / 50) >> 7;
1114 val_v = (((color * (100 - btv->opt_uv_ratio) / 50) >>7)*180L)/254;
1115 hibits = (val_u >> 7) & 2;
1116 hibits |= (val_v >> 8) & 1;
1117 btwrite(val_u & 0xff, BT848_SAT_U_LO);
1118 btwrite(val_v & 0xff, BT848_SAT_V_LO);
1119 btaor(hibits, ~3, BT848_E_CONTROL);
1120 btaor(hibits, ~3, BT848_O_CONTROL);
1123 /* ----------------------------------------------------------------------- */
1126 video_mux(struct bttv *btv, unsigned int input)
1130 if (input >= bttv_tvcards[btv->c.type].video_inputs)
1133 /* needed by RemoteVideo MX */
1134 mask2 = bttv_tvcards[btv->c.type].gpiomask2;
1136 gpio_inout(mask2,mask2);
1138 if (input == btv->svhs) {
1139 btor(BT848_CONTROL_COMP, BT848_E_CONTROL);
1140 btor(BT848_CONTROL_COMP, BT848_O_CONTROL);
1142 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
1143 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
1145 mux = bttv_tvcards[btv->c.type].muxsel[input] & 3;
1146 btaor(mux<<5, ~(3<<5), BT848_IFORM);
1147 dprintk(KERN_DEBUG "bttv%d: video mux: input=%d mux=%d\n",
1148 btv->c.nr,input,mux);
1150 /* card specific hook */
1151 if(bttv_tvcards[btv->c.type].muxsel_hook)
1152 bttv_tvcards[btv->c.type].muxsel_hook (btv, input);
1156 static char *audio_modes[] = {
1157 "audio: tuner", "audio: radio", "audio: extern",
1158 "audio: intern", "audio: mute"
1162 audio_mux(struct bttv *btv, int input, int mute)
1164 int gpio_val, signal;
1165 struct v4l2_control ctrl;
1166 struct i2c_client *c;
1168 gpio_inout(bttv_tvcards[btv->c.type].gpiomask,
1169 bttv_tvcards[btv->c.type].gpiomask);
1170 signal = btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC;
1176 mute = mute || (btv->opt_automute && !signal && !btv->radio_user);
1179 gpio_val = bttv_tvcards[btv->c.type].gpiomute;
1181 gpio_val = bttv_tvcards[btv->c.type].gpiomux[input];
1183 gpio_bits(bttv_tvcards[btv->c.type].gpiomask, gpio_val);
1185 bttv_gpio_tracking(btv, audio_modes[mute ? 4 : input]);
1189 ctrl.id = V4L2_CID_AUDIO_MUTE;
1190 ctrl.value = btv->mute;
1191 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, &ctrl);
1192 c = btv->i2c_msp34xx_client;
1194 struct v4l2_routing route;
1196 /* Note: the inputs tuner/radio/extern/intern are translated
1197 to msp routings. This assumes common behavior for all msp3400
1198 based TV cards. When this assumption fails, then the
1199 specific MSP routing must be added to the card table.
1200 For now this is sufficient. */
1202 case TVAUDIO_INPUT_RADIO:
1203 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1204 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
1206 case TVAUDIO_INPUT_EXTERN:
1207 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER1,
1208 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
1210 case TVAUDIO_INPUT_INTERN:
1211 /* Yes, this is the same input as for RADIO. I doubt
1212 if this is ever used. The only board with an INTERN
1213 input is the BTTV_BOARD_AVERMEDIA98. I wonder how
1214 that was tested. My guess is that the whole INTERN
1215 input does not work. */
1216 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1217 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
1219 case TVAUDIO_INPUT_TUNER:
1221 route.input = MSP_INPUT_DEFAULT;
1224 route.output = MSP_OUTPUT_DEFAULT;
1225 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1227 c = btv->i2c_tvaudio_client;
1229 struct v4l2_routing route;
1231 route.input = input;
1233 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1239 audio_mute(struct bttv *btv, int mute)
1241 return audio_mux(btv, btv->audio, mute);
1245 audio_input(struct bttv *btv, int input)
1247 return audio_mux(btv, input, btv->mute);
1251 i2c_vidiocschan(struct bttv *btv)
1253 v4l2_std_id std = bttv_tvnorms[btv->tvnorm].v4l2_id;
1255 bttv_call_i2c_clients(btv, VIDIOC_S_STD, &std);
1256 if (btv->c.type == BTTV_BOARD_VOODOOTV_FM)
1257 bttv_tda9880_setnorm(btv,btv->tvnorm);
1261 bttv_crop_calc_limits(struct bttv_crop *c)
1263 /* Scale factor min. 1:1, max. 16:1. Min. image size
1264 48 x 32. Scaled width must be a multiple of 4. */
1267 /* For bug compatibility with VIDIOCGCAP and image
1268 size checks in earlier driver versions. */
1269 c->min_scaled_width = 48;
1270 c->min_scaled_height = 32;
1272 c->min_scaled_width =
1273 (max(48, c->rect.width >> 4) + 3) & ~3;
1274 c->min_scaled_height =
1275 max(32, c->rect.height >> 4);
1278 c->max_scaled_width = c->rect.width & ~3;
1279 c->max_scaled_height = c->rect.height;
1283 bttv_crop_reset(struct bttv_crop *c, int norm)
1285 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1286 bttv_crop_calc_limits(c);
1289 /* Call with btv->lock down. */
1291 set_tvnorm(struct bttv *btv, unsigned int norm)
1293 const struct bttv_tvnorm *tvnorm;
1295 if (norm < 0 || norm >= BTTV_TVNORMS)
1298 tvnorm = &bttv_tvnorms[norm];
1300 if (btv->tvnorm < 0 ||
1301 btv->tvnorm >= BTTV_TVNORMS ||
1302 0 != memcmp(&bttv_tvnorms[btv->tvnorm].cropcap,
1304 sizeof (tvnorm->cropcap))) {
1305 bttv_crop_reset(&btv->crop[0], norm);
1306 btv->crop[1] = btv->crop[0]; /* current = default */
1308 if (0 == (btv->resources & VIDEO_RESOURCES)) {
1309 btv->crop_start = tvnorm->cropcap.bounds.top
1310 + tvnorm->cropcap.bounds.height;
1316 btwrite(tvnorm->adelay, BT848_ADELAY);
1317 btwrite(tvnorm->bdelay, BT848_BDELAY);
1318 btaor(tvnorm->iform,~(BT848_IFORM_NORM|BT848_IFORM_XTBOTH),
1320 btwrite(tvnorm->vbipack, BT848_VBI_PACK_SIZE);
1321 btwrite(1, BT848_VBI_PACK_DEL);
1322 bt848A_set_timing(btv);
1324 switch (btv->c.type) {
1325 case BTTV_BOARD_VOODOOTV_FM:
1326 bttv_tda9880_setnorm(btv,norm);
1332 /* Call with btv->lock down. */
1334 set_input(struct bttv *btv, unsigned int input, unsigned int norm)
1336 unsigned long flags;
1340 spin_lock_irqsave(&btv->s_lock,flags);
1341 if (btv->curr.frame_irq) {
1342 /* active capture -> delayed input switch */
1343 btv->new_input = input;
1345 video_mux(btv,input);
1347 spin_unlock_irqrestore(&btv->s_lock,flags);
1349 video_mux(btv,input);
1351 audio_input(btv,(input == bttv_tvcards[btv->c.type].tuner ?
1352 TVAUDIO_INPUT_TUNER : TVAUDIO_INPUT_EXTERN));
1353 set_tvnorm(btv, norm);
1354 i2c_vidiocschan(btv);
1357 static void init_irqreg(struct bttv *btv)
1360 btwrite(0xfffffUL, BT848_INT_STAT);
1362 if (bttv_tvcards[btv->c.type].no_video) {
1364 btwrite(BT848_INT_I2CDONE,
1368 btwrite((btv->triton1) |
1369 (btv->gpioirq ? BT848_INT_GPINT : 0) |
1371 (fdsr ? BT848_INT_FDSR : 0) |
1372 BT848_INT_RISCI|BT848_INT_OCERR|BT848_INT_VPRES|
1373 BT848_INT_FMTCHG|BT848_INT_HLOCK|
1379 static void init_bt848(struct bttv *btv)
1383 if (bttv_tvcards[btv->c.type].no_video) {
1384 /* very basic init only */
1389 btwrite(0x00, BT848_CAP_CTL);
1390 btwrite(BT848_COLOR_CTL_GAMMA, BT848_COLOR_CTL);
1391 btwrite(BT848_IFORM_XTAUTO | BT848_IFORM_AUTO, BT848_IFORM);
1393 /* set planar and packed mode trigger points and */
1394 /* set rising edge of inverted GPINTR pin as irq trigger */
1395 btwrite(BT848_GPIO_DMA_CTL_PKTP_32|
1396 BT848_GPIO_DMA_CTL_PLTP1_16|
1397 BT848_GPIO_DMA_CTL_PLTP23_16|
1398 BT848_GPIO_DMA_CTL_GPINTC|
1399 BT848_GPIO_DMA_CTL_GPINTI,
1400 BT848_GPIO_DMA_CTL);
1402 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
1403 btwrite(val, BT848_E_SCLOOP);
1404 btwrite(val, BT848_O_SCLOOP);
1406 btwrite(0x20, BT848_E_VSCALE_HI);
1407 btwrite(0x20, BT848_O_VSCALE_HI);
1408 btwrite(BT848_ADC_RESERVED | (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
1411 btwrite(whitecrush_upper, BT848_WC_UP);
1412 btwrite(whitecrush_lower, BT848_WC_DOWN);
1414 if (btv->opt_lumafilter) {
1415 btwrite(0, BT848_E_CONTROL);
1416 btwrite(0, BT848_O_CONTROL);
1418 btwrite(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1419 btwrite(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1422 bt848_bright(btv, btv->bright);
1423 bt848_hue(btv, btv->hue);
1424 bt848_contrast(btv, btv->contrast);
1425 bt848_sat(btv, btv->saturation);
1431 static void bttv_reinit_bt848(struct bttv *btv)
1433 unsigned long flags;
1436 printk(KERN_INFO "bttv%d: reset, reinitialize\n",btv->c.nr);
1437 spin_lock_irqsave(&btv->s_lock,flags);
1439 bttv_set_dma(btv,0);
1440 spin_unlock_irqrestore(&btv->s_lock,flags);
1443 btv->pll.pll_current = -1;
1444 set_input(btv, btv->input, btv->tvnorm);
1447 static int get_control(struct bttv *btv, struct v4l2_control *c)
1449 struct video_audio va;
1452 for (i = 0; i < BTTV_CTLS; i++)
1453 if (bttv_ctls[i].id == c->id)
1457 if (btv->audio_hook && i >= 4 && i <= 8) {
1458 memset(&va,0,sizeof(va));
1459 btv->audio_hook(btv,&va,0);
1461 case V4L2_CID_AUDIO_MUTE:
1462 c->value = (VIDEO_AUDIO_MUTE & va.flags) ? 1 : 0;
1464 case V4L2_CID_AUDIO_VOLUME:
1465 c->value = va.volume;
1467 case V4L2_CID_AUDIO_BALANCE:
1468 c->value = va.balance;
1470 case V4L2_CID_AUDIO_BASS:
1473 case V4L2_CID_AUDIO_TREBLE:
1474 c->value = va.treble;
1480 case V4L2_CID_BRIGHTNESS:
1481 c->value = btv->bright;
1484 c->value = btv->hue;
1486 case V4L2_CID_CONTRAST:
1487 c->value = btv->contrast;
1489 case V4L2_CID_SATURATION:
1490 c->value = btv->saturation;
1493 case V4L2_CID_AUDIO_MUTE:
1494 case V4L2_CID_AUDIO_VOLUME:
1495 case V4L2_CID_AUDIO_BALANCE:
1496 case V4L2_CID_AUDIO_BASS:
1497 case V4L2_CID_AUDIO_TREBLE:
1498 bttv_call_i2c_clients(btv,VIDIOC_G_CTRL,c);
1501 case V4L2_CID_PRIVATE_CHROMA_AGC:
1502 c->value = btv->opt_chroma_agc;
1504 case V4L2_CID_PRIVATE_COMBFILTER:
1505 c->value = btv->opt_combfilter;
1507 case V4L2_CID_PRIVATE_LUMAFILTER:
1508 c->value = btv->opt_lumafilter;
1510 case V4L2_CID_PRIVATE_AUTOMUTE:
1511 c->value = btv->opt_automute;
1513 case V4L2_CID_PRIVATE_AGC_CRUSH:
1514 c->value = btv->opt_adc_crush;
1516 case V4L2_CID_PRIVATE_VCR_HACK:
1517 c->value = btv->opt_vcr_hack;
1519 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1520 c->value = btv->opt_whitecrush_upper;
1522 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1523 c->value = btv->opt_whitecrush_lower;
1525 case V4L2_CID_PRIVATE_UV_RATIO:
1526 c->value = btv->opt_uv_ratio;
1528 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1529 c->value = btv->opt_full_luma_range;
1531 case V4L2_CID_PRIVATE_CORING:
1532 c->value = btv->opt_coring;
1540 static int set_control(struct bttv *btv, struct v4l2_control *c)
1542 struct video_audio va;
1545 for (i = 0; i < BTTV_CTLS; i++)
1546 if (bttv_ctls[i].id == c->id)
1550 if (btv->audio_hook && i >= 4 && i <= 8) {
1551 memset(&va,0,sizeof(va));
1552 btv->audio_hook(btv,&va,0);
1554 case V4L2_CID_AUDIO_MUTE:
1556 va.flags |= VIDEO_AUDIO_MUTE;
1559 va.flags &= ~VIDEO_AUDIO_MUTE;
1564 case V4L2_CID_AUDIO_VOLUME:
1565 va.volume = c->value;
1567 case V4L2_CID_AUDIO_BALANCE:
1568 va.balance = c->value;
1570 case V4L2_CID_AUDIO_BASS:
1573 case V4L2_CID_AUDIO_TREBLE:
1574 va.treble = c->value;
1577 btv->audio_hook(btv,&va,1);
1581 case V4L2_CID_BRIGHTNESS:
1582 bt848_bright(btv,c->value);
1585 bt848_hue(btv,c->value);
1587 case V4L2_CID_CONTRAST:
1588 bt848_contrast(btv,c->value);
1590 case V4L2_CID_SATURATION:
1591 bt848_sat(btv,c->value);
1593 case V4L2_CID_AUDIO_MUTE:
1594 audio_mute(btv, c->value);
1596 case V4L2_CID_AUDIO_VOLUME:
1597 case V4L2_CID_AUDIO_BALANCE:
1598 case V4L2_CID_AUDIO_BASS:
1599 case V4L2_CID_AUDIO_TREBLE:
1600 bttv_call_i2c_clients(btv,VIDIOC_S_CTRL,c);
1603 case V4L2_CID_PRIVATE_CHROMA_AGC:
1604 btv->opt_chroma_agc = c->value;
1605 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
1606 btwrite(val, BT848_E_SCLOOP);
1607 btwrite(val, BT848_O_SCLOOP);
1609 case V4L2_CID_PRIVATE_COMBFILTER:
1610 btv->opt_combfilter = c->value;
1612 case V4L2_CID_PRIVATE_LUMAFILTER:
1613 btv->opt_lumafilter = c->value;
1614 if (btv->opt_lumafilter) {
1615 btand(~BT848_CONTROL_LDEC, BT848_E_CONTROL);
1616 btand(~BT848_CONTROL_LDEC, BT848_O_CONTROL);
1618 btor(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1619 btor(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1622 case V4L2_CID_PRIVATE_AUTOMUTE:
1623 btv->opt_automute = c->value;
1625 case V4L2_CID_PRIVATE_AGC_CRUSH:
1626 btv->opt_adc_crush = c->value;
1627 btwrite(BT848_ADC_RESERVED | (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
1630 case V4L2_CID_PRIVATE_VCR_HACK:
1631 btv->opt_vcr_hack = c->value;
1633 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1634 btv->opt_whitecrush_upper = c->value;
1635 btwrite(c->value, BT848_WC_UP);
1637 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1638 btv->opt_whitecrush_lower = c->value;
1639 btwrite(c->value, BT848_WC_DOWN);
1641 case V4L2_CID_PRIVATE_UV_RATIO:
1642 btv->opt_uv_ratio = c->value;
1643 bt848_sat(btv, btv->saturation);
1645 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1646 btv->opt_full_luma_range = c->value;
1647 btaor((c->value<<7), ~BT848_OFORM_RANGE, BT848_OFORM);
1649 case V4L2_CID_PRIVATE_CORING:
1650 btv->opt_coring = c->value;
1651 btaor((c->value<<5), ~BT848_OFORM_CORE32, BT848_OFORM);
1659 /* ----------------------------------------------------------------------- */
1661 void bttv_gpio_tracking(struct bttv *btv, char *comment)
1663 unsigned int outbits, data;
1664 outbits = btread(BT848_GPIO_OUT_EN);
1665 data = btread(BT848_GPIO_DATA);
1666 printk(KERN_DEBUG "bttv%d: gpio: en=%08x, out=%08x in=%08x [%s]\n",
1667 btv->c.nr,outbits,data & outbits, data & ~outbits, comment);
1670 static void bttv_field_count(struct bttv *btv)
1678 /* start field counter */
1679 btor(BT848_INT_VSYNC,BT848_INT_MASK);
1681 /* stop field counter */
1682 btand(~BT848_INT_VSYNC,BT848_INT_MASK);
1683 btv->field_count = 0;
1687 static const struct bttv_format*
1688 format_by_palette(int palette)
1692 for (i = 0; i < BTTV_FORMATS; i++) {
1693 if (-1 == bttv_formats[i].palette)
1695 if (bttv_formats[i].palette == palette)
1696 return bttv_formats+i;
1701 static const struct bttv_format*
1702 format_by_fourcc(int fourcc)
1706 for (i = 0; i < BTTV_FORMATS; i++) {
1707 if (-1 == bttv_formats[i].fourcc)
1709 if (bttv_formats[i].fourcc == fourcc)
1710 return bttv_formats+i;
1715 /* ----------------------------------------------------------------------- */
1719 bttv_switch_overlay(struct bttv *btv, struct bttv_fh *fh,
1720 struct bttv_buffer *new)
1722 struct bttv_buffer *old;
1723 unsigned long flags;
1726 dprintk("switch_overlay: enter [new=%p]\n",new);
1728 new->vb.state = STATE_DONE;
1729 spin_lock_irqsave(&btv->s_lock,flags);
1733 bttv_set_dma(btv, 0x03);
1734 spin_unlock_irqrestore(&btv->s_lock,flags);
1736 dprintk("switch_overlay: old=%p state is %d\n",old,old->vb.state);
1737 bttv_dma_free(&fh->cap,btv, old);
1741 free_btres(btv,fh,RESOURCE_OVERLAY);
1742 dprintk("switch_overlay: done\n");
1746 /* ----------------------------------------------------------------------- */
1747 /* video4linux (1) interface */
1749 static int bttv_prepare_buffer(struct videobuf_queue *q,struct bttv *btv,
1750 struct bttv_buffer *buf,
1751 const struct bttv_format *fmt,
1752 unsigned int width, unsigned int height,
1753 enum v4l2_field field)
1755 struct bttv_fh *fh = q->priv_data;
1756 int redo_dma_risc = 0;
1761 /* check settings */
1764 if (fmt->btformat == BT848_COLOR_FMT_RAW) {
1766 height = RAW_LINES*2;
1767 if (width*height > buf->vb.bsize)
1769 buf->vb.size = buf->vb.bsize;
1771 /* Make sure tvnorm and vbi_end remain consistent
1772 until we're done. */
1773 mutex_lock(&btv->lock);
1777 /* In this mode capturing always starts at defrect.top
1778 (default VDELAY), ignoring cropping parameters. */
1779 if (btv->vbi_end > bttv_tvnorms[norm].cropcap.defrect.top) {
1780 mutex_unlock(&btv->lock);
1784 mutex_unlock(&btv->lock);
1786 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1788 mutex_lock(&btv->lock);
1791 c = btv->crop[!!fh->do_crop];
1793 mutex_unlock(&btv->lock);
1795 if (width < c.min_scaled_width ||
1796 width > c.max_scaled_width ||
1797 height < c.min_scaled_height)
1801 case V4L2_FIELD_TOP:
1802 case V4L2_FIELD_BOTTOM:
1803 case V4L2_FIELD_ALTERNATE:
1804 /* btv->crop counts frame lines. Max. scale
1805 factor is 16:1 for frames, 8:1 for fields. */
1806 if (height * 2 > c.max_scaled_height)
1811 if (height > c.max_scaled_height)
1816 buf->vb.size = (width * height * fmt->depth) >> 3;
1817 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
1821 /* alloc + fill struct bttv_buffer (if changed) */
1822 if (buf->vb.width != width || buf->vb.height != height ||
1823 buf->vb.field != field ||
1824 buf->tvnorm != norm || buf->fmt != fmt ||
1825 buf->crop.top != c.rect.top ||
1826 buf->crop.left != c.rect.left ||
1827 buf->crop.width != c.rect.width ||
1828 buf->crop.height != c.rect.height) {
1829 buf->vb.width = width;
1830 buf->vb.height = height;
1831 buf->vb.field = field;
1838 /* alloc risc memory */
1839 if (STATE_NEEDS_INIT == buf->vb.state) {
1841 if (0 != (rc = videobuf_iolock(q,&buf->vb,&btv->fbuf)))
1846 if (0 != (rc = bttv_buffer_risc(btv,buf)))
1849 buf->vb.state = STATE_PREPARED;
1853 bttv_dma_free(q,btv,buf);
1858 buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1860 struct bttv_fh *fh = q->priv_data;
1862 *size = fh->fmt->depth*fh->width*fh->height >> 3;
1865 while (*size * *count > gbuffers * gbufsize)
1871 buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
1872 enum v4l2_field field)
1874 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1875 struct bttv_fh *fh = q->priv_data;
1877 return bttv_prepare_buffer(q,fh->btv, buf, fh->fmt,
1878 fh->width, fh->height, field);
1882 buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1884 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1885 struct bttv_fh *fh = q->priv_data;
1886 struct bttv *btv = fh->btv;
1888 buf->vb.state = STATE_QUEUED;
1889 list_add_tail(&buf->vb.queue,&btv->capture);
1890 if (!btv->curr.frame_irq) {
1892 bttv_set_dma(btv, 0x03);
1896 static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1898 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1899 struct bttv_fh *fh = q->priv_data;
1901 bttv_dma_free(q,fh->btv,buf);
1904 static struct videobuf_queue_ops bttv_video_qops = {
1905 .buf_setup = buffer_setup,
1906 .buf_prepare = buffer_prepare,
1907 .buf_queue = buffer_queue,
1908 .buf_release = buffer_release,
1911 static int bttv_common_ioctls(struct bttv *btv, unsigned int cmd, void *arg)
1915 return BTTV_VERSION_CODE;
1917 /* *** v4l1 *** ************************************************ */
1920 unsigned long *freq = arg;
1926 struct v4l2_frequency freq;
1928 memset(&freq, 0, sizeof(freq));
1929 freq.frequency = *(unsigned long *)arg;
1930 mutex_lock(&btv->lock);
1931 freq.type = btv->radio_user ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1932 btv->freq = *(unsigned long *)arg;
1933 bttv_call_i2c_clients(btv,VIDIOC_S_FREQUENCY,&freq);
1934 if (btv->has_matchbox && btv->radio_user)
1935 tea5757_set_freq(btv,*(unsigned long *)arg);
1936 mutex_unlock(&btv->lock);
1942 struct video_tuner *v = arg;
1944 if (UNSET == bttv_tvcards[btv->c.type].tuner)
1946 if (v->tuner) /* Only tuner 0 */
1948 strcpy(v->name, "Television");
1950 v->rangehigh = 0x7FFFFFFF;
1951 v->flags = VIDEO_TUNER_PAL|VIDEO_TUNER_NTSC|VIDEO_TUNER_SECAM;
1952 v->mode = btv->tvnorm;
1953 v->signal = (btread(BT848_DSTATUS)&BT848_DSTATUS_HLOC) ? 0xFFFF : 0;
1954 bttv_call_i2c_clients(btv,cmd,v);
1959 struct video_tuner *v = arg;
1961 if (v->tuner) /* Only tuner 0 */
1963 if (v->mode >= BTTV_TVNORMS)
1966 mutex_lock(&btv->lock);
1967 set_tvnorm(btv,v->mode);
1968 bttv_call_i2c_clients(btv,cmd,v);
1969 mutex_unlock(&btv->lock);
1975 struct video_channel *v = arg;
1976 unsigned int channel = v->channel;
1978 if (channel >= bttv_tvcards[btv->c.type].video_inputs)
1981 v->flags = VIDEO_VC_AUDIO;
1982 v->type = VIDEO_TYPE_CAMERA;
1983 v->norm = btv->tvnorm;
1984 if (channel == bttv_tvcards[btv->c.type].tuner) {
1985 strcpy(v->name,"Television");
1986 v->flags|=VIDEO_VC_TUNER;
1987 v->type=VIDEO_TYPE_TV;
1989 } else if (channel == btv->svhs) {
1990 strcpy(v->name,"S-Video");
1992 sprintf(v->name,"Composite%d",channel);
1998 struct video_channel *v = arg;
1999 unsigned int channel = v->channel;
2001 if (channel >= bttv_tvcards[btv->c.type].video_inputs)
2003 if (v->norm >= BTTV_TVNORMS)
2006 mutex_lock(&btv->lock);
2007 if (channel == btv->input &&
2008 v->norm == btv->tvnorm) {
2010 mutex_unlock(&btv->lock);
2014 set_input(btv, v->channel, v->norm);
2015 mutex_unlock(&btv->lock);
2021 struct video_audio *v = arg;
2023 memset(v,0,sizeof(*v));
2024 strcpy(v->name,"Television");
2025 v->flags |= VIDEO_AUDIO_MUTABLE;
2026 v->mode = VIDEO_SOUND_MONO;
2028 mutex_lock(&btv->lock);
2029 bttv_call_i2c_clients(btv,cmd,v);
2031 /* card specific hooks */
2032 if (btv->audio_hook)
2033 btv->audio_hook(btv,v,0);
2035 mutex_unlock(&btv->lock);
2040 struct video_audio *v = arg;
2041 unsigned int audio = v->audio;
2043 if (audio >= bttv_tvcards[btv->c.type].audio_inputs)
2046 mutex_lock(&btv->lock);
2047 audio_mute(btv, (v->flags&VIDEO_AUDIO_MUTE) ? 1 : 0);
2048 bttv_call_i2c_clients(btv,cmd,v);
2050 /* card specific hooks */
2051 if (btv->audio_hook)
2052 btv->audio_hook(btv,v,1);
2054 mutex_unlock(&btv->lock);
2058 /* *** v4l2 *** ************************************************ */
2059 case VIDIOC_ENUMSTD:
2061 struct v4l2_standard *e = arg;
2062 unsigned int index = e->index;
2064 if (index >= BTTV_TVNORMS)
2066 v4l2_video_std_construct(e, bttv_tvnorms[e->index].v4l2_id,
2067 bttv_tvnorms[e->index].name);
2073 v4l2_std_id *id = arg;
2074 *id = bttv_tvnorms[btv->tvnorm].v4l2_id;
2079 v4l2_std_id *id = arg;
2082 for (i = 0; i < BTTV_TVNORMS; i++)
2083 if (*id & bttv_tvnorms[i].v4l2_id)
2085 if (i == BTTV_TVNORMS)
2088 mutex_lock(&btv->lock);
2090 i2c_vidiocschan(btv);
2091 mutex_unlock(&btv->lock);
2094 case VIDIOC_QUERYSTD:
2096 v4l2_std_id *id = arg;
2098 if (btread(BT848_DSTATUS) & BT848_DSTATUS_NUML)
2099 *id = V4L2_STD_625_50;
2101 *id = V4L2_STD_525_60;
2105 case VIDIOC_ENUMINPUT:
2107 struct v4l2_input *i = arg;
2111 if (n >= bttv_tvcards[btv->c.type].video_inputs)
2113 memset(i,0,sizeof(*i));
2115 i->type = V4L2_INPUT_TYPE_CAMERA;
2117 if (i->index == bttv_tvcards[btv->c.type].tuner) {
2118 sprintf(i->name, "Television");
2119 i->type = V4L2_INPUT_TYPE_TUNER;
2121 } else if (i->index == btv->svhs) {
2122 sprintf(i->name, "S-Video");
2124 sprintf(i->name,"Composite%d",i->index);
2126 if (i->index == btv->input) {
2127 __u32 dstatus = btread(BT848_DSTATUS);
2128 if (0 == (dstatus & BT848_DSTATUS_PRES))
2129 i->status |= V4L2_IN_ST_NO_SIGNAL;
2130 if (0 == (dstatus & BT848_DSTATUS_HLOC))
2131 i->status |= V4L2_IN_ST_NO_H_LOCK;
2133 for (n = 0; n < BTTV_TVNORMS; n++)
2134 i->std |= bttv_tvnorms[n].v4l2_id;
2137 case VIDIOC_G_INPUT:
2143 case VIDIOC_S_INPUT:
2145 unsigned int *i = arg;
2147 if (*i > bttv_tvcards[btv->c.type].video_inputs)
2149 mutex_lock(&btv->lock);
2150 set_input(btv, *i, btv->tvnorm);
2151 mutex_unlock(&btv->lock);
2155 case VIDIOC_G_TUNER:
2157 struct v4l2_tuner *t = arg;
2159 if (UNSET == bttv_tvcards[btv->c.type].tuner)
2163 mutex_lock(&btv->lock);
2164 memset(t,0,sizeof(*t));
2165 t->rxsubchans = V4L2_TUNER_SUB_MONO;
2166 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
2167 strcpy(t->name, "Television");
2168 t->capability = V4L2_TUNER_CAP_NORM;
2169 t->type = V4L2_TUNER_ANALOG_TV;
2170 if (btread(BT848_DSTATUS)&BT848_DSTATUS_HLOC)
2173 if (btv->audio_hook) {
2175 struct video_audio va;
2176 memset(&va, 0, sizeof(struct video_audio));
2177 btv->audio_hook(btv,&va,0);
2178 t->audmode = V4L2_TUNER_MODE_MONO;
2179 t->rxsubchans = V4L2_TUNER_SUB_MONO;
2180 if(va.mode & VIDEO_SOUND_STEREO) {
2181 t->audmode = V4L2_TUNER_MODE_STEREO;
2182 t->rxsubchans = V4L2_TUNER_SUB_STEREO;
2184 if(va.mode & VIDEO_SOUND_LANG2) {
2185 t->audmode = V4L2_TUNER_MODE_LANG1;
2186 t->rxsubchans = V4L2_TUNER_SUB_LANG1
2187 | V4L2_TUNER_SUB_LANG2;
2190 /* FIXME: fill capability+audmode */
2191 mutex_unlock(&btv->lock);
2194 case VIDIOC_S_TUNER:
2196 struct v4l2_tuner *t = arg;
2198 if (UNSET == bttv_tvcards[btv->c.type].tuner)
2202 mutex_lock(&btv->lock);
2203 bttv_call_i2c_clients(btv, VIDIOC_S_TUNER, t);
2204 if (btv->audio_hook) {
2205 struct video_audio va;
2206 memset(&va, 0, sizeof(struct video_audio));
2207 if (t->audmode == V4L2_TUNER_MODE_MONO)
2208 va.mode = VIDEO_SOUND_MONO;
2209 else if (t->audmode == V4L2_TUNER_MODE_STEREO ||
2210 t->audmode == V4L2_TUNER_MODE_LANG1_LANG2)
2211 va.mode = VIDEO_SOUND_STEREO;
2212 else if (t->audmode == V4L2_TUNER_MODE_LANG1)
2213 va.mode = VIDEO_SOUND_LANG1;
2214 else if (t->audmode == V4L2_TUNER_MODE_LANG2)
2215 va.mode = VIDEO_SOUND_LANG2;
2216 btv->audio_hook(btv,&va,1);
2218 mutex_unlock(&btv->lock);
2222 case VIDIOC_G_FREQUENCY:
2224 struct v4l2_frequency *f = arg;
2226 memset(f,0,sizeof(*f));
2227 f->type = V4L2_TUNER_ANALOG_TV;
2228 f->frequency = btv->freq;
2231 case VIDIOC_S_FREQUENCY:
2233 struct v4l2_frequency *f = arg;
2235 if (unlikely(f->tuner != 0))
2237 if (unlikely (f->type != V4L2_TUNER_ANALOG_TV))
2239 mutex_lock(&btv->lock);
2240 btv->freq = f->frequency;
2241 bttv_call_i2c_clients(btv,VIDIOC_S_FREQUENCY,f);
2242 if (btv->has_matchbox && btv->radio_user)
2243 tea5757_set_freq(btv,btv->freq);
2244 mutex_unlock(&btv->lock);
2247 case VIDIOC_LOG_STATUS:
2249 printk(KERN_INFO "bttv%d: ================= START STATUS CARD #%d =================\n", btv->c.nr, btv->c.nr);
2250 bttv_call_i2c_clients(btv, VIDIOC_LOG_STATUS, NULL);
2251 printk(KERN_INFO "bttv%d: ================== END STATUS CARD #%d ==================\n", btv->c.nr, btv->c.nr);
2256 return -ENOIOCTLCMD;
2262 /* Given cropping boundaries b and the scaled width and height of a
2263 single field or frame, which must not exceed hardware limits, this
2264 function adjusts the cropping parameters c. */
2266 bttv_crop_adjust (struct bttv_crop * c,
2267 const struct v4l2_rect * b,
2270 enum v4l2_field field)
2272 __s32 frame_height = height << !V4L2_FIELD_HAS_BOTH(field);
2276 if (width < c->min_scaled_width) {
2277 /* Max. hor. scale factor 16:1. */
2278 c->rect.width = width * 16;
2279 } else if (width > c->max_scaled_width) {
2280 /* Min. hor. scale factor 1:1. */
2281 c->rect.width = width;
2283 max_left = b->left + b->width - width;
2284 max_left = min(max_left, (__s32) MAX_HDELAY);
2285 if (c->rect.left > max_left)
2286 c->rect.left = max_left;
2289 if (height < c->min_scaled_height) {
2290 /* Max. vert. scale factor 16:1, single fields 8:1. */
2291 c->rect.height = height * 16;
2292 } else if (frame_height > c->max_scaled_height) {
2293 /* Min. vert. scale factor 1:1.
2294 Top and height count field lines times two. */
2295 c->rect.height = (frame_height + 1) & ~1;
2297 max_top = b->top + b->height - c->rect.height;
2298 if (c->rect.top > max_top)
2299 c->rect.top = max_top;
2302 bttv_crop_calc_limits(c);
2305 /* Returns an error if scaling to a frame or single field with the given
2306 width and height is not possible with the current cropping parameters
2307 and width aligned according to width_mask. If adjust_size is TRUE the
2308 function may adjust the width and/or height instead, rounding width
2309 to (width + width_bias) & width_mask. If adjust_crop is TRUE it may
2310 also adjust the current cropping parameters to get closer to the
2311 desired image size. */
2313 limit_scaled_size (struct bttv_fh * fh,
2316 enum v4l2_field field,
2317 unsigned int width_mask,
2318 unsigned int width_bias,
2322 struct bttv *btv = fh->btv;
2323 const struct v4l2_rect *b;
2324 struct bttv_crop *c;
2331 BUG_ON((int) width_mask >= 0 ||
2332 width_bias >= (unsigned int) -width_mask);
2334 /* Make sure tvnorm, vbi_end and the current cropping parameters
2335 remain consistent until we're done. */
2336 mutex_lock(&btv->lock);
2338 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
2340 /* Do crop - use current, don't - use default parameters. */
2341 c = &btv->crop[!!fh->do_crop];
2346 && !locked_btres(btv, VIDEO_RESOURCES)) {
2350 /* We cannot scale up. When the scaled image is larger
2351 than crop.rect we adjust the crop.rect as required
2352 by the V4L2 spec, hence cropcap.bounds are our limit. */
2353 max_width = min(b->width, (__s32) MAX_HACTIVE);
2354 max_height = b->height;
2356 /* We cannot capture the same line as video and VBI data.
2357 Note btv->vbi_end is really a minimum, see
2358 bttv_vbi_try_fmt(). */
2359 if (btv->vbi_end > b->top) {
2360 max_height -= btv->vbi_end - b->top;
2362 if (min_height > max_height)
2367 if (btv->vbi_end > c->rect.top)
2370 min_width = c->min_scaled_width;
2371 min_height = c->min_scaled_height;
2372 max_width = c->max_scaled_width;
2373 max_height = c->max_scaled_height;
2378 min_width = (min_width - width_mask - 1) & width_mask;
2379 max_width = max_width & width_mask;
2381 /* Max. scale factor is 16:1 for frames, 8:1 for fields. */
2382 min_height = min_height;
2383 /* Min. scale factor is 1:1. */
2384 max_height >>= !V4L2_FIELD_HAS_BOTH(field);
2387 *width = clamp(*width, min_width, max_width);
2388 *height = clamp(*height, min_height, max_height);
2390 /* Round after clamping to avoid overflow. */
2391 *width = (*width + width_bias) & width_mask;
2394 bttv_crop_adjust(c, b, *width, *height, field);
2396 if (btv->vbi_end > c->rect.top) {
2397 /* Move the crop window out of the way. */
2398 c->rect.top = btv->vbi_end;
2403 if (*width < min_width ||
2404 *height < min_height ||
2405 *width > max_width ||
2406 *height > max_height ||
2407 0 != (*width & ~width_mask))
2411 rc = 0; /* success */
2414 mutex_unlock(&btv->lock);
2419 /* Returns an error if the given overlay window dimensions are not
2420 possible with the current cropping parameters. If adjust_size is
2421 TRUE the function may adjust the window width and/or height
2422 instead, however it always rounds the horizontal position and
2423 width as btcx_align() does. If adjust_crop is TRUE the function
2424 may also adjust the current cropping parameters to get closer
2425 to the desired window size. */
2427 verify_window (struct bttv_fh * fh,
2428 struct v4l2_window * win,
2432 enum v4l2_field field;
2433 unsigned int width_mask;
2436 if (win->w.width < 48 || win->w.height < 32)
2438 if (win->clipcount > 2048)
2443 if (V4L2_FIELD_ANY == field) {
2446 height2 = fh->btv->crop[!!fh->do_crop].rect.height >> 1;
2447 field = (win->w.height > height2)
2448 ? V4L2_FIELD_INTERLACED
2452 case V4L2_FIELD_TOP:
2453 case V4L2_FIELD_BOTTOM:
2454 case V4L2_FIELD_INTERLACED:
2460 /* 4-byte alignment. */
2461 if (NULL == fh->ovfmt)
2464 switch (fh->ovfmt->depth) {
2478 win->w.width -= win->w.left & ~width_mask;
2479 win->w.left = (win->w.left - width_mask - 1) & width_mask;
2481 rc = limit_scaled_size(fh, &win->w.width, &win->w.height,
2483 /* width_bias: round down */ 0,
2484 adjust_size, adjust_crop);
2492 static int setup_window(struct bttv_fh *fh, struct bttv *btv,
2493 struct v4l2_window *win, int fixup)
2495 struct v4l2_clip *clips = NULL;
2496 int n,size,retval = 0;
2498 if (NULL == fh->ovfmt)
2500 if (!(fh->ovfmt->flags & FORMAT_FLAGS_PACKED))
2502 retval = verify_window(fh, win,
2503 /* adjust_size */ fixup,
2504 /* adjust_crop */ fixup);
2508 /* copy clips -- luckily v4l1 + v4l2 are binary
2509 compatible here ...*/
2511 size = sizeof(*clips)*(n+4);
2512 clips = kmalloc(size,GFP_KERNEL);
2516 if (copy_from_user(clips,win->clips,sizeof(struct v4l2_clip)*n)) {
2521 /* clip against screen */
2522 if (NULL != btv->fbuf.base)
2523 n = btcx_screen_clips(btv->fbuf.fmt.width, btv->fbuf.fmt.height,
2525 btcx_sort_clips(clips,n);
2527 /* 4-byte alignments */
2528 switch (fh->ovfmt->depth) {
2531 btcx_align(&win->w, clips, n, 3);
2534 btcx_align(&win->w, clips, n, 1);
2537 /* no alignment fixups needed */
2543 mutex_lock(&fh->cap.lock);
2544 kfree(fh->ov.clips);
2545 fh->ov.clips = clips;
2549 fh->ov.field = win->field;
2550 fh->ov.setup_ok = 1;
2551 btv->init.ov.w.width = win->w.width;
2552 btv->init.ov.w.height = win->w.height;
2553 btv->init.ov.field = win->field;
2555 /* update overlay if needed */
2557 if (check_btres(fh, RESOURCE_OVERLAY)) {
2558 struct bttv_buffer *new;
2560 new = videobuf_alloc(sizeof(*new));
2561 new->crop = btv->crop[!!fh->do_crop].rect;
2562 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2563 retval = bttv_switch_overlay(btv,fh,new);
2565 mutex_unlock(&fh->cap.lock);
2569 /* ----------------------------------------------------------------------- */
2571 static struct videobuf_queue* bttv_queue(struct bttv_fh *fh)
2573 struct videobuf_queue* q = NULL;
2576 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2579 case V4L2_BUF_TYPE_VBI_CAPTURE:
2588 static int bttv_resource(struct bttv_fh *fh)
2593 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2594 res = RESOURCE_VIDEO_STREAM;
2596 case V4L2_BUF_TYPE_VBI_CAPTURE:
2605 static int bttv_switch_type(struct bttv_fh *fh, enum v4l2_buf_type type)
2607 struct videobuf_queue *q = bttv_queue(fh);
2608 int res = bttv_resource(fh);
2610 if (check_btres(fh,res))
2612 if (videobuf_queue_is_busy(q))
2619 pix_format_set_size (struct v4l2_pix_format * f,
2620 const struct bttv_format * fmt,
2622 unsigned int height)
2627 if (fmt->flags & FORMAT_FLAGS_PLANAR) {
2628 f->bytesperline = width; /* Y plane */
2629 f->sizeimage = (width * height * fmt->depth) >> 3;
2631 f->bytesperline = (width * fmt->depth) >> 3;
2632 f->sizeimage = height * f->bytesperline;
2636 static int bttv_g_fmt(struct bttv_fh *fh, struct v4l2_format *f)
2639 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2640 memset(&f->fmt.pix,0,sizeof(struct v4l2_pix_format));
2641 pix_format_set_size (&f->fmt.pix, fh->fmt,
2642 fh->width, fh->height);
2643 f->fmt.pix.field = fh->cap.field;
2644 f->fmt.pix.pixelformat = fh->fmt->fourcc;
2646 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2647 memset(&f->fmt.win,0,sizeof(struct v4l2_window));
2648 f->fmt.win.w = fh->ov.w;
2649 f->fmt.win.field = fh->ov.field;
2651 case V4L2_BUF_TYPE_VBI_CAPTURE:
2652 bttv_vbi_get_fmt(fh, &f->fmt.vbi);
2659 static int bttv_try_fmt(struct bttv_fh *fh, struct bttv *btv,
2660 struct v4l2_format *f, int adjust_crop)
2663 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2665 const struct bttv_format *fmt;
2666 enum v4l2_field field;
2667 __s32 width, height;
2670 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
2674 field = f->fmt.pix.field;
2675 if (V4L2_FIELD_ANY == field) {
2678 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
2679 field = (f->fmt.pix.height > height2)
2680 ? V4L2_FIELD_INTERLACED
2681 : V4L2_FIELD_BOTTOM;
2683 if (V4L2_FIELD_SEQ_BT == field)
2684 field = V4L2_FIELD_SEQ_TB;
2686 case V4L2_FIELD_TOP:
2687 case V4L2_FIELD_BOTTOM:
2688 case V4L2_FIELD_ALTERNATE:
2689 case V4L2_FIELD_INTERLACED:
2691 case V4L2_FIELD_SEQ_TB:
2692 if (fmt->flags & FORMAT_FLAGS_PLANAR)
2699 width = f->fmt.pix.width;
2700 height = f->fmt.pix.height;
2702 rc = limit_scaled_size(fh, &width, &height, field,
2703 /* width_mask: 4 pixels */ ~3,
2704 /* width_bias: nearest */ 2,
2705 /* adjust_size */ 1,
2710 /* update data for the application */
2711 f->fmt.pix.field = field;
2712 pix_format_set_size(&f->fmt.pix, fmt, width, height);
2716 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2717 return verify_window(fh, &f->fmt.win,
2718 /* adjust_size */ 1,
2719 /* adjust_crop */ 0);
2720 case V4L2_BUF_TYPE_VBI_CAPTURE:
2721 return bttv_vbi_try_fmt(fh, &f->fmt.vbi);
2727 static int bttv_s_fmt(struct bttv_fh *fh, struct bttv *btv,
2728 struct v4l2_format *f)
2733 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2735 const struct bttv_format *fmt;
2737 retval = bttv_switch_type(fh,f->type);
2740 retval = bttv_try_fmt(fh,btv,f, /* adjust_crop */ 1);
2743 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
2745 /* update our state informations */
2746 mutex_lock(&fh->cap.lock);
2748 fh->cap.field = f->fmt.pix.field;
2749 fh->cap.last = V4L2_FIELD_NONE;
2750 fh->width = f->fmt.pix.width;
2751 fh->height = f->fmt.pix.height;
2752 btv->init.fmt = fmt;
2753 btv->init.width = f->fmt.pix.width;
2754 btv->init.height = f->fmt.pix.height;
2755 mutex_unlock(&fh->cap.lock);
2759 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
2760 if (no_overlay > 0) {
2761 printk ("V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2764 return setup_window(fh, btv, &f->fmt.win, 1);
2765 case V4L2_BUF_TYPE_VBI_CAPTURE:
2766 retval = bttv_switch_type(fh,f->type);
2769 return bttv_vbi_set_fmt(fh, &f->fmt.vbi);
2775 static int bttv_do_ioctl(struct inode *inode, struct file *file,
2776 unsigned int cmd, void *arg)
2778 struct bttv_fh *fh = file->private_data;
2779 struct bttv *btv = fh->btv;
2780 unsigned long flags;
2784 v4l_print_ioctl(btv->c.name, cmd);
2787 bttv_reinit_bt848(btv);
2795 case VIDIOC_S_INPUT:
2796 case VIDIOC_S_TUNER:
2797 case VIDIOC_S_FREQUENCY:
2798 retval = v4l2_prio_check(&btv->prio,&fh->prio);
2805 /* *** v4l1 *** ************************************************ */
2808 struct video_capability *cap = arg;
2810 memset(cap,0,sizeof(*cap));
2811 strcpy(cap->name,btv->video_dev->name);
2812 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
2814 cap->type = VID_TYPE_TUNER|VID_TYPE_TELETEXT;
2817 cap->type = VID_TYPE_CAPTURE|
2821 if (no_overlay <= 0)
2822 cap->type |= VID_TYPE_OVERLAY;
2824 cap->maxwidth = bttv_tvnorms[btv->tvnorm].swidth;
2825 cap->maxheight = bttv_tvnorms[btv->tvnorm].sheight;
2827 cap->minheight = 32;
2829 cap->channels = bttv_tvcards[btv->c.type].video_inputs;
2830 cap->audios = bttv_tvcards[btv->c.type].audio_inputs;
2836 struct video_picture *pic = arg;
2838 memset(pic,0,sizeof(*pic));
2839 pic->brightness = btv->bright;
2840 pic->contrast = btv->contrast;
2841 pic->hue = btv->hue;
2842 pic->colour = btv->saturation;
2844 pic->depth = fh->fmt->depth;
2845 pic->palette = fh->fmt->palette;
2851 struct video_picture *pic = arg;
2852 const struct bttv_format *fmt;
2854 fmt = format_by_palette(pic->palette);
2857 mutex_lock(&fh->cap.lock);
2858 if (fmt->depth != pic->depth) {
2860 goto fh_unlock_and_return;
2862 if (fmt->flags & FORMAT_FLAGS_RAW) {
2863 /* VIDIOCMCAPTURE uses gbufsize, not RAW_BPL *
2864 RAW_LINES * 2. F1 is stored at offset 0, F2
2865 at buffer size / 2. */
2866 fh->width = RAW_BPL;
2867 fh->height = gbufsize / RAW_BPL;
2868 btv->init.width = RAW_BPL;
2869 btv->init.height = gbufsize / RAW_BPL;
2873 btv->init.ovfmt = fmt;
2874 btv->init.fmt = fmt;
2876 /* dirty hack time: swap bytes for overlay if the
2877 display adaptor is big endian (insmod option) */
2878 if (fmt->palette == VIDEO_PALETTE_RGB555 ||
2879 fmt->palette == VIDEO_PALETTE_RGB565 ||
2880 fmt->palette == VIDEO_PALETTE_RGB32) {
2884 bt848_bright(btv,pic->brightness);
2885 bt848_contrast(btv,pic->contrast);
2886 bt848_hue(btv,pic->hue);
2887 bt848_sat(btv,pic->colour);
2888 mutex_unlock(&fh->cap.lock);
2894 struct video_window *win = arg;
2896 memset(win,0,sizeof(*win));
2897 win->x = fh->ov.w.left;
2898 win->y = fh->ov.w.top;
2899 win->width = fh->ov.w.width;
2900 win->height = fh->ov.w.height;
2905 struct video_window *win = arg;
2906 struct v4l2_window w2;
2908 if (no_overlay > 0) {
2909 printk ("VIDIOCSWIN: no_overlay\n");
2913 w2.field = V4L2_FIELD_ANY;
2916 w2.w.width = win->width;
2917 w2.w.height = win->height;
2918 w2.clipcount = win->clipcount;
2919 w2.clips = (struct v4l2_clip __user *)win->clips;
2920 retval = setup_window(fh, btv, &w2, 0);
2922 /* on v4l1 this ioctl affects the read() size too */
2923 fh->width = fh->ov.w.width;
2924 fh->height = fh->ov.w.height;
2925 btv->init.width = fh->ov.w.width;
2926 btv->init.height = fh->ov.w.height;
2933 struct video_buffer *fbuf = arg;
2935 fbuf->base = btv->fbuf.base;
2936 fbuf->width = btv->fbuf.fmt.width;
2937 fbuf->height = btv->fbuf.fmt.height;
2938 fbuf->bytesperline = btv->fbuf.fmt.bytesperline;
2940 fbuf->depth = fh->ovfmt->depth;
2943 fbuf->depth = ((fbuf->bytesperline<<3)
2953 struct video_buffer *fbuf = arg;
2954 const struct bttv_format *fmt;
2957 if(!capable(CAP_SYS_ADMIN) &&
2958 !capable(CAP_SYS_RAWIO))
2960 end = (unsigned long)fbuf->base +
2961 fbuf->height * fbuf->bytesperline;
2962 mutex_lock(&fh->cap.lock);
2965 switch (fbuf->depth) {
2967 fmt = format_by_palette(VIDEO_PALETTE_HI240);
2970 fmt = format_by_palette(VIDEO_PALETTE_RGB565);
2973 fmt = format_by_palette(VIDEO_PALETTE_RGB24);
2976 fmt = format_by_palette(VIDEO_PALETTE_RGB32);
2980 fmt = format_by_palette(VIDEO_PALETTE_RGB555);
2987 goto fh_unlock_and_return;
2991 btv->init.ovfmt = fmt;
2992 btv->init.fmt = fmt;
2993 btv->fbuf.base = fbuf->base;
2994 btv->fbuf.fmt.width = fbuf->width;
2995 btv->fbuf.fmt.height = fbuf->height;
2996 if (fbuf->bytesperline)
2997 btv->fbuf.fmt.bytesperline = fbuf->bytesperline;
2999 btv->fbuf.fmt.bytesperline = btv->fbuf.fmt.width*fbuf->depth/8;
3000 mutex_unlock(&fh->cap.lock);
3005 case VIDIOC_OVERLAY:
3007 struct bttv_buffer *new;
3012 if (NULL == btv->fbuf.base)
3014 if (!fh->ov.setup_ok) {
3015 dprintk("bttv%d: overlay: !setup_ok\n",btv->c.nr);
3020 if (!check_alloc_btres(btv,fh,RESOURCE_OVERLAY))
3023 mutex_lock(&fh->cap.lock);
3025 fh->ov.tvnorm = btv->tvnorm;
3026 new = videobuf_alloc(sizeof(*new));
3027 new->crop = btv->crop[!!fh->do_crop].rect;
3028 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
3034 retval = bttv_switch_overlay(btv,fh,new);
3035 mutex_unlock(&fh->cap.lock);
3041 struct video_mbuf *mbuf = arg;
3044 mutex_lock(&fh->cap.lock);
3045 retval = videobuf_mmap_setup(&fh->cap,gbuffers,gbufsize,
3048 goto fh_unlock_and_return;
3049 memset(mbuf,0,sizeof(*mbuf));
3050 mbuf->frames = gbuffers;
3051 mbuf->size = gbuffers * gbufsize;
3052 for (i = 0; i < gbuffers; i++)
3053 mbuf->offsets[i] = i * gbufsize;
3054 mutex_unlock(&fh->cap.lock);
3057 case VIDIOCMCAPTURE:
3059 struct video_mmap *vm = arg;
3060 struct bttv_buffer *buf;
3061 enum v4l2_field field;
3065 if (vm->frame >= VIDEO_MAX_FRAME)
3068 res = bttv_resource(fh);
3069 if (!check_alloc_btres(btv, fh, res))
3072 mutex_lock(&fh->cap.lock);
3074 buf = (struct bttv_buffer *)fh->cap.bufs[vm->frame];
3076 goto fh_unlock_and_return;
3077 if (0 == buf->vb.baddr)
3078 goto fh_unlock_and_return;
3079 if (buf->vb.state == STATE_QUEUED ||
3080 buf->vb.state == STATE_ACTIVE)
3081 goto fh_unlock_and_return;
3083 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
3084 field = (vm->height > height2)
3085 ? V4L2_FIELD_INTERLACED
3086 : V4L2_FIELD_BOTTOM;
3087 retval = bttv_prepare_buffer(&fh->cap,btv,buf,
3088 format_by_palette(vm->format),
3089 vm->width,vm->height,field);
3091 goto fh_unlock_and_return;
3092 spin_lock_irqsave(&btv->s_lock,flags);
3093 buffer_queue(&fh->cap,&buf->vb);
3094 spin_unlock_irqrestore(&btv->s_lock,flags);
3095 mutex_unlock(&fh->cap.lock);
3101 struct bttv_buffer *buf;
3103 if (*frame >= VIDEO_MAX_FRAME)
3106 mutex_lock(&fh->cap.lock);
3108 buf = (struct bttv_buffer *)fh->cap.bufs[*frame];
3110 goto fh_unlock_and_return;
3111 retval = videobuf_waiton(&buf->vb,0,1);
3113 goto fh_unlock_and_return;
3114 switch (buf->vb.state) {
3119 videobuf_dma_sync(&fh->cap,&buf->vb.dma);
3120 bttv_dma_free(&fh->cap,btv,buf);
3126 mutex_unlock(&fh->cap.lock);
3131 if (fh->type != V4L2_BUF_TYPE_VBI_CAPTURE) {
3132 retval = bttv_switch_type(fh,V4L2_BUF_TYPE_VBI_CAPTURE);
3140 return v4l_compat_translate_ioctl(inode, file, cmd,
3141 arg, bttv_do_ioctl);
3152 return bttv_common_ioctls(btv,cmd,arg);
3154 /* *** v4l2 *** ************************************************ */
3155 case VIDIOC_QUERYCAP:
3157 struct v4l2_capability *cap = arg;
3161 memset(cap, 0, sizeof (*cap));
3162 strlcpy(cap->driver, "bttv", sizeof (cap->driver));
3163 strlcpy(cap->card, btv->video_dev->name, sizeof (cap->card));
3164 snprintf(cap->bus_info, sizeof (cap->bus_info),
3165 "PCI:%s", pci_name(btv->c.pci));
3166 cap->version = BTTV_VERSION_CODE;
3168 V4L2_CAP_VIDEO_CAPTURE |
3169 V4L2_CAP_VBI_CAPTURE |
3170 V4L2_CAP_READWRITE |
3172 if (no_overlay <= 0)
3173 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
3175 if (bttv_tvcards[btv->c.type].tuner != UNSET &&
3176 bttv_tvcards[btv->c.type].tuner != TUNER_ABSENT)
3177 cap->capabilities |= V4L2_CAP_TUNER;
3181 case VIDIOC_ENUM_FMT:
3183 struct v4l2_fmtdesc *f = arg;
3184 enum v4l2_buf_type type;
3189 if (V4L2_BUF_TYPE_VBI_CAPTURE == type) {
3194 memset(f,0,sizeof(*f));
3197 f->pixelformat = V4L2_PIX_FMT_GREY;
3198 strcpy(f->description,"vbi data");
3202 /* video capture + overlay */
3204 for (i = 0; i < BTTV_FORMATS; i++) {
3205 if (bttv_formats[i].fourcc != -1)
3207 if ((unsigned int)index == f->index)
3210 if (BTTV_FORMATS == i)
3214 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
3216 case V4L2_BUF_TYPE_VIDEO_OVERLAY:
3217 if (!(bttv_formats[i].flags & FORMAT_FLAGS_PACKED))
3223 memset(f,0,sizeof(*f));
3226 f->pixelformat = bttv_formats[i].fourcc;
3227 strlcpy(f->description,bttv_formats[i].name,sizeof(f->description));
3231 case VIDIOC_TRY_FMT:
3233 struct v4l2_format *f = arg;
3234 return bttv_try_fmt(fh,btv,f, /* adjust_crop */ 0);
3238 struct v4l2_format *f = arg;
3239 return bttv_g_fmt(fh,f);
3243 struct v4l2_format *f = arg;
3244 return bttv_s_fmt(fh,btv,f);
3249 struct v4l2_framebuffer *fb = arg;
3252 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
3254 fb->fmt.pixelformat = fh->ovfmt->fourcc;
3259 struct v4l2_framebuffer *fb = arg;
3260 const struct bttv_format *fmt;
3262 if(!capable(CAP_SYS_ADMIN) &&
3263 !capable(CAP_SYS_RAWIO))
3267 fmt = format_by_fourcc(fb->fmt.pixelformat);
3270 if (0 == (fmt->flags & FORMAT_FLAGS_PACKED))
3274 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
3275 __s32 width = fb->fmt.width;
3276 __s32 height = fb->fmt.height;
3278 retval = limit_scaled_size(fh, &width, &height,
3279 V4L2_FIELD_INTERLACED,
3280 /* width_mask */ ~3,
3282 /* adjust_size */ 0,
3283 /* adjust_crop */ 0);
3289 mutex_lock(&fh->cap.lock);
3290 btv->fbuf.base = fb->base;
3291 btv->fbuf.fmt.width = fb->fmt.width;
3292 btv->fbuf.fmt.height = fb->fmt.height;
3293 if (0 != fb->fmt.bytesperline)
3294 btv->fbuf.fmt.bytesperline = fb->fmt.bytesperline;
3296 btv->fbuf.fmt.bytesperline = btv->fbuf.fmt.width*fmt->depth/8;
3300 btv->init.ovfmt = fmt;
3301 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
3304 fh->ov.w.width = fb->fmt.width;
3305 fh->ov.w.height = fb->fmt.height;
3306 btv->init.ov.w.width = fb->fmt.width;
3307 btv->init.ov.w.height = fb->fmt.height;
3308 kfree(fh->ov.clips);
3309 fh->ov.clips = NULL;
3312 if (check_btres(fh, RESOURCE_OVERLAY)) {
3313 struct bttv_buffer *new;
3315 new = videobuf_alloc(sizeof(*new));
3316 new->crop = btv->crop[!!fh->do_crop].rect;
3317 bttv_overlay_risc(btv,&fh->ov,fh->ovfmt,new);
3318 retval = bttv_switch_overlay(btv,fh,new);
3321 mutex_unlock(&fh->cap.lock);
3325 case VIDIOC_REQBUFS:
3326 return videobuf_reqbufs(bttv_queue(fh),arg);
3328 case VIDIOC_QUERYBUF:
3329 return videobuf_querybuf(bttv_queue(fh),arg);
3333 int res = bttv_resource(fh);
3335 if (!check_alloc_btres(btv, fh, res))
3337 return videobuf_qbuf(bttv_queue(fh),arg);
3341 return videobuf_dqbuf(bttv_queue(fh),arg,
3342 file->f_flags & O_NONBLOCK);
3344 case VIDIOC_STREAMON:
3346 int res = bttv_resource(fh);
3348 if (!check_alloc_btres(btv,fh,res))
3350 return videobuf_streamon(bttv_queue(fh));
3352 case VIDIOC_STREAMOFF:
3354 int res = bttv_resource(fh);
3356 retval = videobuf_streamoff(bttv_queue(fh));
3359 free_btres(btv,fh,res);
3363 case VIDIOC_QUERYCTRL:
3365 struct v4l2_queryctrl *c = arg;
3368 if ((c->id < V4L2_CID_BASE ||
3369 c->id >= V4L2_CID_LASTP1) &&
3370 (c->id < V4L2_CID_PRIVATE_BASE ||
3371 c->id >= V4L2_CID_PRIVATE_LASTP1))
3373 for (i = 0; i < BTTV_CTLS; i++)
3374 if (bttv_ctls[i].id == c->id)
3376 if (i == BTTV_CTLS) {
3381 if (btv->audio_hook && i >= 4 && i <= 8) {
3382 struct video_audio va;
3383 memset(&va,0,sizeof(va));
3384 btv->audio_hook(btv,&va,0);
3385 switch (bttv_ctls[i].id) {
3386 case V4L2_CID_AUDIO_VOLUME:
3387 if (!(va.flags & VIDEO_AUDIO_VOLUME))
3390 case V4L2_CID_AUDIO_BALANCE:
3391 if (!(va.flags & VIDEO_AUDIO_BALANCE))
3394 case V4L2_CID_AUDIO_BASS:
3395 if (!(va.flags & VIDEO_AUDIO_BASS))
3398 case V4L2_CID_AUDIO_TREBLE:
3399 if (!(va.flags & VIDEO_AUDIO_TREBLE))
3407 return get_control(btv,arg);
3409 return set_control(btv,arg);
3412 struct v4l2_streamparm *parm = arg;
3413 struct v4l2_standard s;
3414 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
3416 memset(parm,0,sizeof(*parm));
3417 v4l2_video_std_construct(&s, bttv_tvnorms[btv->tvnorm].v4l2_id,
3418 bttv_tvnorms[btv->tvnorm].name);
3419 parm->parm.capture.timeperframe = s.frameperiod;
3423 case VIDIOC_G_PRIORITY:
3425 enum v4l2_priority *p = arg;
3427 *p = v4l2_prio_max(&btv->prio);
3430 case VIDIOC_S_PRIORITY:
3432 enum v4l2_priority *prio = arg;
3434 return v4l2_prio_change(&btv->prio, &fh->prio, *prio);
3437 case VIDIOC_CROPCAP:
3439 struct v4l2_cropcap *cap = arg;
3440 enum v4l2_buf_type type;
3444 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3445 type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3448 *cap = bttv_tvnorms[btv->tvnorm].cropcap;
3455 struct v4l2_crop * crop = arg;
3457 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3458 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3461 /* No fh->do_crop = 1; because btv->crop[1] may be
3462 inconsistent with fh->width or fh->height and apps
3463 do not expect a change here. */
3465 crop->c = btv->crop[!!fh->do_crop].rect;
3471 struct v4l2_crop *crop = arg;
3472 const struct v4l2_rect *b;
3479 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3480 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3483 retval = v4l2_prio_check(&btv->prio,&fh->prio);
3487 /* Make sure tvnorm, vbi_end and the current cropping
3488 parameters remain consistent until we're done. Note
3489 read() may change vbi_end in check_alloc_btres(). */
3490 mutex_lock(&btv->lock);
3494 if (locked_btres(fh->btv, VIDEO_RESOURCES))
3495 goto btv_unlock_and_return;
3497 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
3500 b_right = b_left + b->width;
3501 b_bottom = b->top + b->height;
3503 b_top = max(b->top, btv->vbi_end);
3504 if (b_top + 32 >= b_bottom)
3505 goto btv_unlock_and_return;
3507 /* Min. scaled size 48 x 32. */
3508 c.rect.left = clamp(crop->c.left, b_left, b_right - 48);
3509 c.rect.left = min(c.rect.left, (__s32) MAX_HDELAY);
3511 c.rect.width = clamp(crop->c.width,
3512 48, b_right - c.rect.left);
3514 c.rect.top = clamp(crop->c.top, b_top, b_bottom - 32);
3515 /* Top and height must be a multiple of two. */
3516 c.rect.top = (c.rect.top + 1) & ~1;
3518 c.rect.height = clamp(crop->c.height,
3519 32, b_bottom - c.rect.top);
3520 c.rect.height = (c.rect.height + 1) & ~1;
3522 bttv_crop_calc_limits(&c);
3526 mutex_unlock(&btv->lock);
3530 mutex_lock(&fh->cap.lock);
3532 if (fh->width < c.min_scaled_width) {
3533 fh->width = c.min_scaled_width;
3534 btv->init.width = c.min_scaled_width;
3535 } else if (fh->width > c.max_scaled_width) {
3536 fh->width = c.max_scaled_width;
3537 btv->init.width = c.max_scaled_width;
3540 if (fh->height < c.min_scaled_height) {
3541 fh->height = c.min_scaled_height;
3542 btv->init.height = c.min_scaled_height;
3543 } else if (fh->height > c.max_scaled_height) {
3544 fh->height = c.max_scaled_height;
3545 btv->init.height = c.max_scaled_height;
3548 mutex_unlock(&fh->cap.lock);
3553 case VIDIOC_ENUMSTD:
3556 case VIDIOC_ENUMINPUT:
3557 case VIDIOC_G_INPUT:
3558 case VIDIOC_S_INPUT:
3559 case VIDIOC_G_TUNER:
3560 case VIDIOC_S_TUNER:
3561 case VIDIOC_G_FREQUENCY:
3562 case VIDIOC_S_FREQUENCY:
3563 case VIDIOC_LOG_STATUS:
3564 return bttv_common_ioctls(btv,cmd,arg);
3567 return -ENOIOCTLCMD;
3571 fh_unlock_and_return:
3572 mutex_unlock(&fh->cap.lock);
3575 btv_unlock_and_return:
3576 mutex_unlock(&btv->lock);
3580 static int bttv_ioctl(struct inode *inode, struct file *file,
3581 unsigned int cmd, unsigned long arg)
3583 struct bttv_fh *fh = file->private_data;
3588 const struct bttv_tvnorm *tvnorm;
3590 tvnorm = fh->vbi_fmt.tvnorm;
3592 if (fh->vbi_fmt.fmt.start[0] != tvnorm->vbistart[0] ||
3593 fh->vbi_fmt.fmt.start[1] != tvnorm->vbistart[1] ||
3594 fh->vbi_fmt.fmt.count[0] != fh->vbi_fmt.fmt.count[1]) {
3595 /* BTTV_VBISIZE cannot express these parameters,
3596 however open() resets the paramters to defaults
3597 and apps shouldn't call BTTV_VBISIZE after
3602 bttv_switch_type(fh,V4L2_BUF_TYPE_VBI_CAPTURE);
3603 return (fh->vbi_fmt.fmt.count[0] * 2
3604 * fh->vbi_fmt.fmt.samples_per_line);
3608 return video_usercopy(inode, file, cmd, arg, bttv_do_ioctl);
3612 static ssize_t bttv_read(struct file *file, char __user *data,
3613 size_t count, loff_t *ppos)
3615 struct bttv_fh *fh = file->private_data;
3618 if (fh->btv->errors)
3619 bttv_reinit_bt848(fh->btv);
3620 dprintk("bttv%d: read count=%d type=%s\n",
3621 fh->btv->c.nr,(int)count,v4l2_type_names[fh->type]);
3624 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
3625 if (!check_alloc_btres(fh->btv, fh, RESOURCE_VIDEO_READ)) {
3626 /* VIDEO_READ in use by another fh,
3627 or VIDEO_STREAM by any fh. */
3630 retval = videobuf_read_one(&fh->cap, data, count, ppos,
3631 file->f_flags & O_NONBLOCK);
3632 free_btres(fh->btv, fh, RESOURCE_VIDEO_READ);
3634 case V4L2_BUF_TYPE_VBI_CAPTURE:
3635 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3637 retval = videobuf_read_stream(&fh->vbi, data, count, ppos, 1,
3638 file->f_flags & O_NONBLOCK);
3646 static unsigned int bttv_poll(struct file *file, poll_table *wait)
3648 struct bttv_fh *fh = file->private_data;
3649 struct bttv_buffer *buf;
3650 enum v4l2_field field;
3652 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
3653 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3655 return videobuf_poll_stream(file, &fh->vbi, wait);
3658 if (check_btres(fh,RESOURCE_VIDEO_STREAM)) {
3659 /* streaming capture */
3660 if (list_empty(&fh->cap.stream))
3662 buf = list_entry(fh->cap.stream.next,struct bttv_buffer,vb.stream);
3664 /* read() capture */
3665 mutex_lock(&fh->cap.lock);
3666 if (NULL == fh->cap.read_buf) {
3667 /* need to capture a new frame */
3668 if (locked_btres(fh->btv,RESOURCE_VIDEO_STREAM)) {
3669 mutex_unlock(&fh->cap.lock);
3672 fh->cap.read_buf = videobuf_alloc(fh->cap.msize);
3673 if (NULL == fh->cap.read_buf) {
3674 mutex_unlock(&fh->cap.lock);
3677 fh->cap.read_buf->memory = V4L2_MEMORY_USERPTR;
3678 field = videobuf_next_field(&fh->cap);
3679 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,field)) {
3680 kfree (fh->cap.read_buf);
3681 fh->cap.read_buf = NULL;
3682 mutex_unlock(&fh->cap.lock);
3685 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
3686 fh->cap.read_off = 0;
3688 mutex_unlock(&fh->cap.lock);
3689 buf = (struct bttv_buffer*)fh->cap.read_buf;
3692 poll_wait(file, &buf->vb.done, wait);
3693 if (buf->vb.state == STATE_DONE ||
3694 buf->vb.state == STATE_ERROR)
3695 return POLLIN|POLLRDNORM;
3699 static int bttv_open(struct inode *inode, struct file *file)
3701 int minor = iminor(inode);
3702 struct bttv *btv = NULL;
3704 enum v4l2_buf_type type = 0;
3707 dprintk(KERN_DEBUG "bttv: open minor=%d\n",minor);
3709 for (i = 0; i < bttv_num; i++) {
3710 if (bttvs[i].video_dev &&
3711 bttvs[i].video_dev->minor == minor) {
3713 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3716 if (bttvs[i].vbi_dev &&
3717 bttvs[i].vbi_dev->minor == minor) {
3719 type = V4L2_BUF_TYPE_VBI_CAPTURE;
3726 dprintk(KERN_DEBUG "bttv%d: open called (type=%s)\n",
3727 btv->c.nr,v4l2_type_names[type]);
3729 /* allocate per filehandle data */
3730 fh = kmalloc(sizeof(*fh),GFP_KERNEL);
3733 file->private_data = fh;
3736 fh->ov.setup_ok = 0;
3737 v4l2_prio_open(&btv->prio,&fh->prio);
3739 videobuf_queue_init(&fh->cap, &bttv_video_qops,
3740 btv->c.pci, &btv->s_lock,
3741 V4L2_BUF_TYPE_VIDEO_CAPTURE,
3742 V4L2_FIELD_INTERLACED,
3743 sizeof(struct bttv_buffer),
3745 videobuf_queue_init(&fh->vbi, &bttv_vbi_qops,
3746 btv->c.pci, &btv->s_lock,
3747 V4L2_BUF_TYPE_VBI_CAPTURE,
3749 sizeof(struct bttv_buffer),
3751 i2c_vidiocschan(btv);
3755 /* The V4L2 spec requires one global set of cropping parameters
3756 which only change on request. These are stored in btv->crop[1].
3757 However for compatibility with V4L apps and cropping unaware
3758 V4L2 apps we now reset the cropping parameters as seen through
3759 this fh, which is to say VIDIOC_G_CROP and scaling limit checks
3760 will use btv->crop[0], the default cropping parameters for the
3761 current video standard, and VIDIOC_S_FMT will not implicitely
3762 change the cropping parameters until VIDIOC_S_CROP has been
3764 fh->do_crop = !reset_crop; /* module parameter */
3766 /* Likewise there should be one global set of VBI capture
3767 parameters, but for compatibility with V4L apps and earlier
3768 driver versions each fh has its own parameters. */
3769 bttv_vbi_fmt_reset(&fh->vbi_fmt, btv->tvnorm);
3771 bttv_field_count(btv);
3775 static int bttv_release(struct inode *inode, struct file *file)
3777 struct bttv_fh *fh = file->private_data;
3778 struct bttv *btv = fh->btv;
3780 /* turn off overlay */
3781 if (check_btres(fh, RESOURCE_OVERLAY))
3782 bttv_switch_overlay(btv,fh,NULL);
3784 /* stop video capture */
3785 if (check_btres(fh, RESOURCE_VIDEO_STREAM)) {
3786 videobuf_streamoff(&fh->cap);
3787 free_btres(btv,fh,RESOURCE_VIDEO_STREAM);
3789 if (fh->cap.read_buf) {
3790 buffer_release(&fh->cap,fh->cap.read_buf);
3791 kfree(fh->cap.read_buf);
3793 if (check_btres(fh, RESOURCE_VIDEO_READ)) {
3794 free_btres(btv, fh, RESOURCE_VIDEO_READ);
3797 /* stop vbi capture */
3798 if (check_btres(fh, RESOURCE_VBI)) {
3799 if (fh->vbi.streaming)
3800 videobuf_streamoff(&fh->vbi);
3801 if (fh->vbi.reading)
3802 videobuf_read_stop(&fh->vbi);
3803 free_btres(btv,fh,RESOURCE_VBI);
3807 videobuf_mmap_free(&fh->cap);
3808 videobuf_mmap_free(&fh->vbi);
3809 v4l2_prio_close(&btv->prio,&fh->prio);
3810 file->private_data = NULL;
3814 bttv_field_count(btv);
3819 bttv_mmap(struct file *file, struct vm_area_struct *vma)
3821 struct bttv_fh *fh = file->private_data;
3823 dprintk("bttv%d: mmap type=%s 0x%lx+%ld\n",
3824 fh->btv->c.nr, v4l2_type_names[fh->type],
3825 vma->vm_start, vma->vm_end - vma->vm_start);
3826 return videobuf_mmap_mapper(bttv_queue(fh),vma);
3829 static const struct file_operations bttv_fops =
3831 .owner = THIS_MODULE,
3833 .release = bttv_release,
3834 .ioctl = bttv_ioctl,
3835 .compat_ioctl = v4l_compat_ioctl32,
3836 .llseek = no_llseek,
3842 static struct video_device bttv_video_template =
3845 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|
3846 VID_TYPE_CLIPPING|VID_TYPE_SCALES,
3847 .hardware = VID_HARDWARE_BT848,
3852 static struct video_device bttv_vbi_template =
3854 .name = "bt848/878 vbi",
3855 .type = VID_TYPE_TUNER|VID_TYPE_TELETEXT,
3856 .hardware = VID_HARDWARE_BT848,
3861 /* ----------------------------------------------------------------------- */
3862 /* radio interface */
3864 static int radio_open(struct inode *inode, struct file *file)
3866 int minor = iminor(inode);
3867 struct bttv *btv = NULL;
3870 dprintk("bttv: open minor=%d\n",minor);
3872 for (i = 0; i < bttv_num; i++) {
3873 if (bttvs[i].radio_dev->minor == minor) {
3881 dprintk("bttv%d: open called (radio)\n",btv->c.nr);
3882 mutex_lock(&btv->lock);
3886 file->private_data = btv;
3888 bttv_call_i2c_clients(btv,AUDC_SET_RADIO,NULL);
3889 audio_input(btv,TVAUDIO_INPUT_RADIO);
3891 mutex_unlock(&btv->lock);
3895 static int radio_release(struct inode *inode, struct file *file)
3897 struct bttv *btv = file->private_data;
3898 struct rds_command cmd;
3902 bttv_call_i2c_clients(btv, RDS_CMD_CLOSE, &cmd);
3907 static int radio_do_ioctl(struct inode *inode, struct file *file,
3908 unsigned int cmd, void *arg)
3910 struct bttv *btv = file->private_data;
3915 struct video_capability *cap = arg;
3917 memset(cap,0,sizeof(*cap));
3918 strcpy(cap->name,btv->radio_dev->name);
3919 cap->type = VID_TYPE_TUNER;
3927 struct video_tuner *v = arg;
3931 memset(v,0,sizeof(*v));
3932 strcpy(v->name, "Radio");
3933 bttv_call_i2c_clients(btv,cmd,v);
3945 case VIDIOC_LOG_STATUS:
3946 return bttv_common_ioctls(btv,cmd,arg);
3949 return -ENOIOCTLCMD;
3954 static int radio_ioctl(struct inode *inode, struct file *file,
3955 unsigned int cmd, unsigned long arg)
3957 return video_usercopy(inode, file, cmd, arg, radio_do_ioctl);
3960 static ssize_t radio_read(struct file *file, char __user *data,
3961 size_t count, loff_t *ppos)
3963 struct bttv *btv = file->private_data;
3964 struct rds_command cmd;
3965 cmd.block_count = count/3;
3967 cmd.instance = file;
3968 cmd.result = -ENODEV;
3970 bttv_call_i2c_clients(btv, RDS_CMD_READ, &cmd);
3975 static unsigned int radio_poll(struct file *file, poll_table *wait)
3977 struct bttv *btv = file->private_data;
3978 struct rds_command cmd;
3979 cmd.instance = file;
3980 cmd.event_list = wait;
3981 cmd.result = -ENODEV;
3982 bttv_call_i2c_clients(btv, RDS_CMD_POLL, &cmd);
3987 static const struct file_operations radio_fops =
3989 .owner = THIS_MODULE,
3992 .release = radio_release,
3993 .ioctl = radio_ioctl,
3994 .llseek = no_llseek,
3998 static struct video_device radio_template =
4000 .name = "bt848/878 radio",
4001 .type = VID_TYPE_TUNER,
4002 .hardware = VID_HARDWARE_BT848,
4003 .fops = &radio_fops,
4007 /* ----------------------------------------------------------------------- */
4008 /* some debug code */
4010 static int bttv_risc_decode(u32 risc)
4012 static char *instr[16] = {
4013 [ BT848_RISC_WRITE >> 28 ] = "write",
4014 [ BT848_RISC_SKIP >> 28 ] = "skip",
4015 [ BT848_RISC_WRITEC >> 28 ] = "writec",
4016 [ BT848_RISC_JUMP >> 28 ] = "jump",
4017 [ BT848_RISC_SYNC >> 28 ] = "sync",
4018 [ BT848_RISC_WRITE123 >> 28 ] = "write123",
4019 [ BT848_RISC_SKIP123 >> 28 ] = "skip123",
4020 [ BT848_RISC_WRITE1S23 >> 28 ] = "write1s23",
4022 static int incr[16] = {
4023 [ BT848_RISC_WRITE >> 28 ] = 2,
4024 [ BT848_RISC_JUMP >> 28 ] = 2,
4025 [ BT848_RISC_SYNC >> 28 ] = 2,
4026 [ BT848_RISC_WRITE123 >> 28 ] = 5,
4027 [ BT848_RISC_SKIP123 >> 28 ] = 2,
4028 [ BT848_RISC_WRITE1S23 >> 28 ] = 3,
4030 static char *bits[] = {
4031 "be0", "be1", "be2", "be3/resync",
4032 "set0", "set1", "set2", "set3",
4033 "clr0", "clr1", "clr2", "clr3",
4034 "irq", "res", "eol", "sol",
4038 printk("0x%08x [ %s", risc,
4039 instr[risc >> 28] ? instr[risc >> 28] : "INVALID");
4040 for (i = ARRAY_SIZE(bits)-1; i >= 0; i--)
4041 if (risc & (1 << (i + 12)))
4042 printk(" %s",bits[i]);
4043 printk(" count=%d ]\n", risc & 0xfff);
4044 return incr[risc >> 28] ? incr[risc >> 28] : 1;
4047 static void bttv_risc_disasm(struct bttv *btv,
4048 struct btcx_riscmem *risc)
4052 printk("%s: risc disasm: %p [dma=0x%08lx]\n",
4053 btv->c.name, risc->cpu, (unsigned long)risc->dma);
4054 for (i = 0; i < (risc->size >> 2); i += n) {
4055 printk("%s: 0x%lx: ", btv->c.name,
4056 (unsigned long)(risc->dma + (i<<2)));
4057 n = bttv_risc_decode(risc->cpu[i]);
4058 for (j = 1; j < n; j++)
4059 printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n",
4060 btv->c.name, (unsigned long)(risc->dma + ((i+j)<<2)),
4062 if (0 == risc->cpu[i])
4067 static void bttv_print_riscaddr(struct bttv *btv)
4069 printk(" main: %08Lx\n",
4070 (unsigned long long)btv->main.dma);
4071 printk(" vbi : o=%08Lx e=%08Lx\n",
4072 btv->cvbi ? (unsigned long long)btv->cvbi->top.dma : 0,
4073 btv->cvbi ? (unsigned long long)btv->cvbi->bottom.dma : 0);
4074 printk(" cap : o=%08Lx e=%08Lx\n",
4075 btv->curr.top ? (unsigned long long)btv->curr.top->top.dma : 0,
4076 btv->curr.bottom ? (unsigned long long)btv->curr.bottom->bottom.dma : 0);
4077 printk(" scr : o=%08Lx e=%08Lx\n",
4078 btv->screen ? (unsigned long long)btv->screen->top.dma : 0,
4079 btv->screen ? (unsigned long long)btv->screen->bottom.dma : 0);
4080 bttv_risc_disasm(btv, &btv->main);
4083 /* ----------------------------------------------------------------------- */
4086 static char *irq_name[] = {
4087 "FMTCHG", // format change detected (525 vs. 625)
4088 "VSYNC", // vertical sync (new field)
4089 "HSYNC", // horizontal sync
4090 "OFLOW", // chroma/luma AGC overflow
4091 "HLOCK", // horizontal lock changed
4092 "VPRES", // video presence changed
4094 "I2CDONE", // hw irc operation finished
4095 "GPINT", // gpio port triggered irq
4097 "RISCI", // risc instruction triggered irq
4098 "FBUS", // pixel data fifo dropped data (high pci bus latencies)
4099 "FTRGT", // pixel data fifo overrun
4100 "FDSR", // fifo data stream resyncronisation
4101 "PPERR", // parity error (data transfer)
4102 "RIPERR", // parity error (read risc instructions)
4103 "PABORT", // pci abort
4104 "OCERR", // risc instruction error
4105 "SCERR", // syncronisation error
4108 static void bttv_print_irqbits(u32 print, u32 mark)
4113 for (i = 0; i < ARRAY_SIZE(irq_name); i++) {
4114 if (print & (1 << i))
4115 printk(" %s",irq_name[i]);
4116 if (mark & (1 << i))
4121 static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc)
4123 printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n",
4125 (unsigned long)btv->main.dma,
4126 (unsigned long)btv->main.cpu[RISC_SLOT_O_VBI+1],
4127 (unsigned long)btv->main.cpu[RISC_SLOT_O_FIELD+1],
4130 if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) {
4131 printk("bttv%d: Oh, there (temporarely?) is no input signal. "
4132 "Ok, then this is harmless, don't worry ;)\n",
4136 printk("bttv%d: Uhm. Looks like we have unusual high IRQ latencies.\n",
4138 printk("bttv%d: Lets try to catch the culpit red-handed ...\n",
4144 bttv_irq_next_video(struct bttv *btv, struct bttv_buffer_set *set)
4146 struct bttv_buffer *item;
4148 memset(set,0,sizeof(*set));
4150 /* capture request ? */
4151 if (!list_empty(&btv->capture)) {
4153 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
4154 if (V4L2_FIELD_HAS_TOP(item->vb.field))
4156 if (V4L2_FIELD_HAS_BOTTOM(item->vb.field))
4159 /* capture request for other field ? */
4160 if (!V4L2_FIELD_HAS_BOTH(item->vb.field) &&
4161 (item->vb.queue.next != &btv->capture)) {
4162 item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue);
4163 if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) {
4164 if (NULL == set->top &&
4165 V4L2_FIELD_TOP == item->vb.field) {
4168 if (NULL == set->bottom &&
4169 V4L2_FIELD_BOTTOM == item->vb.field) {
4172 if (NULL != set->top && NULL != set->bottom)
4178 /* screen overlay ? */
4179 if (NULL != btv->screen) {
4180 if (V4L2_FIELD_HAS_BOTH(btv->screen->vb.field)) {
4181 if (NULL == set->top && NULL == set->bottom) {
4182 set->top = btv->screen;
4183 set->bottom = btv->screen;
4186 if (V4L2_FIELD_TOP == btv->screen->vb.field &&
4188 set->top = btv->screen;
4190 if (V4L2_FIELD_BOTTOM == btv->screen->vb.field &&
4191 NULL == set->bottom) {
4192 set->bottom = btv->screen;
4197 dprintk("bttv%d: next set: top=%p bottom=%p [screen=%p,irq=%d,%d]\n",
4198 btv->c.nr,set->top, set->bottom,
4199 btv->screen,set->frame_irq,set->top_irq);
4204 bttv_irq_wakeup_video(struct bttv *btv, struct bttv_buffer_set *wakeup,
4205 struct bttv_buffer_set *curr, unsigned int state)
4209 do_gettimeofday(&ts);
4211 if (wakeup->top == wakeup->bottom) {
4212 if (NULL != wakeup->top && curr->top != wakeup->top) {
4214 printk("bttv%d: wakeup: both=%p\n",btv->c.nr,wakeup->top);
4215 wakeup->top->vb.ts = ts;
4216 wakeup->top->vb.field_count = btv->field_count;
4217 wakeup->top->vb.state = state;
4218 wake_up(&wakeup->top->vb.done);
4221 if (NULL != wakeup->top && curr->top != wakeup->top) {
4223 printk("bttv%d: wakeup: top=%p\n",btv->c.nr,wakeup->top);
4224 wakeup->top->vb.ts = ts;
4225 wakeup->top->vb.field_count = btv->field_count;
4226 wakeup->top->vb.state = state;
4227 wake_up(&wakeup->top->vb.done);
4229 if (NULL != wakeup->bottom && curr->bottom != wakeup->bottom) {
4231 printk("bttv%d: wakeup: bottom=%p\n",btv->c.nr,wakeup->bottom);
4232 wakeup->bottom->vb.ts = ts;
4233 wakeup->bottom->vb.field_count = btv->field_count;
4234 wakeup->bottom->vb.state = state;
4235 wake_up(&wakeup->bottom->vb.done);
4241 bttv_irq_wakeup_vbi(struct bttv *btv, struct bttv_buffer *wakeup,
4249 do_gettimeofday(&ts);
4251 wakeup->vb.field_count = btv->field_count;
4252 wakeup->vb.state = state;
4253 wake_up(&wakeup->vb.done);
4256 static void bttv_irq_timeout(unsigned long data)
4258 struct bttv *btv = (struct bttv *)data;
4259 struct bttv_buffer_set old,new;
4260 struct bttv_buffer *ovbi;
4261 struct bttv_buffer *item;
4262 unsigned long flags;
4265 printk(KERN_INFO "bttv%d: timeout: drop=%d irq=%d/%d, risc=%08x, ",
4266 btv->c.nr, btv->framedrop, btv->irq_me, btv->irq_total,
4267 btread(BT848_RISC_COUNT));
4268 bttv_print_irqbits(btread(BT848_INT_STAT),0);
4272 spin_lock_irqsave(&btv->s_lock,flags);
4274 /* deactivate stuff */
4275 memset(&new,0,sizeof(new));
4281 bttv_buffer_activate_video(btv, &new);
4282 bttv_buffer_activate_vbi(btv, NULL);
4283 bttv_set_dma(btv, 0);
4286 bttv_irq_wakeup_video(btv, &old, &new, STATE_ERROR);
4287 bttv_irq_wakeup_vbi(btv, ovbi, STATE_ERROR);
4289 /* cancel all outstanding capture / vbi requests */
4290 while (!list_empty(&btv->capture)) {
4291 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
4292 list_del(&item->vb.queue);
4293 item->vb.state = STATE_ERROR;
4294 wake_up(&item->vb.done);
4296 while (!list_empty(&btv->vcapture)) {
4297 item = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
4298 list_del(&item->vb.queue);
4299 item->vb.state = STATE_ERROR;
4300 wake_up(&item->vb.done);
4304 spin_unlock_irqrestore(&btv->s_lock,flags);
4308 bttv_irq_wakeup_top(struct bttv *btv)
4310 struct bttv_buffer *wakeup = btv->curr.top;
4315 spin_lock(&btv->s_lock);
4316 btv->curr.top_irq = 0;
4317 btv->curr.top = NULL;
4318 bttv_risc_hook(btv, RISC_SLOT_O_FIELD, NULL, 0);
4320 do_gettimeofday(&wakeup->vb.ts);
4321 wakeup->vb.field_count = btv->field_count;
4322 wakeup->vb.state = STATE_DONE;
4323 wake_up(&wakeup->vb.done);
4324 spin_unlock(&btv->s_lock);
4327 static inline int is_active(struct btcx_riscmem *risc, u32 rc)
4331 if (rc > risc->dma + risc->size)
4337 bttv_irq_switch_video(struct bttv *btv)
4339 struct bttv_buffer_set new;
4340 struct bttv_buffer_set old;
4343 spin_lock(&btv->s_lock);
4345 /* new buffer set */
4346 bttv_irq_next_video(btv, &new);
4347 rc = btread(BT848_RISC_COUNT);
4348 if ((btv->curr.top && is_active(&btv->curr.top->top, rc)) ||
4349 (btv->curr.bottom && is_active(&btv->curr.bottom->bottom, rc))) {
4352 bttv_irq_debug_low_latency(btv, rc);
4353 spin_unlock(&btv->s_lock);
4360 btv->loop_irq &= ~1;
4361 bttv_buffer_activate_video(btv, &new);
4362 bttv_set_dma(btv, 0);
4365 if (UNSET != btv->new_input) {
4366 video_mux(btv,btv->new_input);
4367 btv->new_input = UNSET;
4370 /* wake up finished buffers */
4371 bttv_irq_wakeup_video(btv, &old, &new, STATE_DONE);
4372 spin_unlock(&btv->s_lock);
4376 bttv_irq_switch_vbi(struct bttv *btv)
4378 struct bttv_buffer *new = NULL;
4379 struct bttv_buffer *old;
4382 spin_lock(&btv->s_lock);
4384 if (!list_empty(&btv->vcapture))
4385 new = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
4388 rc = btread(BT848_RISC_COUNT);
4389 if (NULL != old && (is_active(&old->top, rc) ||
4390 is_active(&old->bottom, rc))) {
4393 bttv_irq_debug_low_latency(btv, rc);
4394 spin_unlock(&btv->s_lock);
4400 btv->loop_irq &= ~4;
4401 bttv_buffer_activate_vbi(btv, new);
4402 bttv_set_dma(btv, 0);
4404 bttv_irq_wakeup_vbi(btv, old, STATE_DONE);
4405 spin_unlock(&btv->s_lock);
4408 static irqreturn_t bttv_irq(int irq, void *dev_id)
4416 btv=(struct bttv *)dev_id;
4418 if (btv->custom_irq)
4419 handled = btv->custom_irq(btv);
4423 /* get/clear interrupt status bits */
4424 stat=btread(BT848_INT_STAT);
4425 astat=stat&btread(BT848_INT_MASK);
4429 btwrite(stat,BT848_INT_STAT);
4431 /* get device status bits */
4432 dstat=btread(BT848_DSTATUS);
4435 printk(KERN_DEBUG "bttv%d: irq loop=%d fc=%d "
4436 "riscs=%x, riscc=%08x, ",
4437 btv->c.nr, count, btv->field_count,
4438 stat>>28, btread(BT848_RISC_COUNT));
4439 bttv_print_irqbits(stat,astat);
4440 if (stat & BT848_INT_HLOCK)
4441 printk(" HLOC => %s", (dstat & BT848_DSTATUS_HLOC)
4443 if (stat & BT848_INT_VPRES)
4444 printk(" PRES => %s", (dstat & BT848_DSTATUS_PRES)
4446 if (stat & BT848_INT_FMTCHG)
4447 printk(" NUML => %s", (dstat & BT848_DSTATUS_NUML)
4452 if (astat&BT848_INT_VSYNC)
4455 if ((astat & BT848_INT_GPINT) && btv->remote) {
4456 wake_up(&btv->gpioq);
4457 bttv_input_irq(btv);
4460 if (astat & BT848_INT_I2CDONE) {
4461 btv->i2c_done = stat;
4462 wake_up(&btv->i2c_queue);
4465 if ((astat & BT848_INT_RISCI) && (stat & (4<<28)))
4466 bttv_irq_switch_vbi(btv);
4468 if ((astat & BT848_INT_RISCI) && (stat & (2<<28)))
4469 bttv_irq_wakeup_top(btv);
4471 if ((astat & BT848_INT_RISCI) && (stat & (1<<28)))
4472 bttv_irq_switch_video(btv);
4474 if ((astat & BT848_INT_HLOCK) && btv->opt_automute)
4475 audio_mute(btv, btv->mute); /* trigger automute */
4477 if (astat & (BT848_INT_SCERR|BT848_INT_OCERR)) {
4478 printk(KERN_INFO "bttv%d: %s%s @ %08x,",btv->c.nr,
4479 (astat & BT848_INT_SCERR) ? "SCERR" : "",
4480 (astat & BT848_INT_OCERR) ? "OCERR" : "",
4481 btread(BT848_RISC_COUNT));
4482 bttv_print_irqbits(stat,astat);
4485 bttv_print_riscaddr(btv);
4487 if (fdsr && astat & BT848_INT_FDSR) {
4488 printk(KERN_INFO "bttv%d: FDSR @ %08x\n",
4489 btv->c.nr,btread(BT848_RISC_COUNT));
4491 bttv_print_riscaddr(btv);
4497 if (count > 8 || !(astat & BT848_INT_GPINT)) {
4498 btwrite(0, BT848_INT_MASK);
4501 "bttv%d: IRQ lockup, cleared int mask [", btv->c.nr);
4504 "bttv%d: IRQ lockup, clearing GPINT from int mask [", btv->c.nr);
4506 btwrite(btread(BT848_INT_MASK) & (-1 ^ BT848_INT_GPINT),
4510 bttv_print_irqbits(stat,astat);
4518 return IRQ_RETVAL(handled);
4522 /* ----------------------------------------------------------------------- */
4523 /* initialitation */
4525 static struct video_device *vdev_init(struct bttv *btv,
4526 struct video_device *template,
4529 struct video_device *vfd;
4531 vfd = video_device_alloc();
4536 vfd->dev = &btv->c.pci->dev;
4537 vfd->release = video_device_release;
4538 snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)",
4539 btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "",
4540 type, bttv_tvcards[btv->c.type].name);
4544 static void bttv_unregister_video(struct bttv *btv)
4546 if (btv->video_dev) {
4547 if (-1 != btv->video_dev->minor)
4548 video_unregister_device(btv->video_dev);
4550 video_device_release(btv->video_dev);
4551 btv->video_dev = NULL;
4554 if (-1 != btv->vbi_dev->minor)
4555 video_unregister_device(btv->vbi_dev);
4557 video_device_release(btv->vbi_dev);
4558 btv->vbi_dev = NULL;
4560 if (btv->radio_dev) {
4561 if (-1 != btv->radio_dev->minor)
4562 video_unregister_device(btv->radio_dev);
4564 video_device_release(btv->radio_dev);
4565 btv->radio_dev = NULL;
4569 /* register video4linux devices */
4570 static int __devinit bttv_register_video(struct bttv *btv)
4572 if (no_overlay <= 0) {
4573 bttv_video_template.type |= VID_TYPE_OVERLAY;
4575 printk("bttv: Overlay support disabled.\n");
4579 btv->video_dev = vdev_init(btv, &bttv_video_template, "video");
4580 if (NULL == btv->video_dev)
4582 if (video_register_device(btv->video_dev,VFL_TYPE_GRABBER,video_nr)<0)
4584 printk(KERN_INFO "bttv%d: registered device video%d\n",
4585 btv->c.nr,btv->video_dev->minor & 0x1f);
4586 if (class_device_create_file(&btv->video_dev->class_dev,
4587 &class_device_attr_card)<0) {
4588 printk(KERN_ERR "bttv%d: class_device_create_file 'card' "
4589 "failed\n", btv->c.nr);
4594 btv->vbi_dev = vdev_init(btv, &bttv_vbi_template, "vbi");
4595 if (NULL == btv->vbi_dev)
4597 if (video_register_device(btv->vbi_dev,VFL_TYPE_VBI,vbi_nr)<0)
4599 printk(KERN_INFO "bttv%d: registered device vbi%d\n",
4600 btv->c.nr,btv->vbi_dev->minor & 0x1f);
4602 if (!btv->has_radio)
4605 btv->radio_dev = vdev_init(btv, &radio_template, "radio");
4606 if (NULL == btv->radio_dev)
4608 if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,radio_nr)<0)
4610 printk(KERN_INFO "bttv%d: registered device radio%d\n",
4611 btv->c.nr,btv->radio_dev->minor & 0x1f);
4617 bttv_unregister_video(btv);
4622 /* on OpenFirmware machines (PowerMac at least), PCI memory cycle */
4623 /* response on cards with no firmware is not enabled by OF */
4624 static void pci_set_command(struct pci_dev *dev)
4626 #if defined(__powerpc__)
4629 pci_read_config_dword(dev, PCI_COMMAND, &cmd);
4630 cmd = (cmd | PCI_COMMAND_MEMORY );
4631 pci_write_config_dword(dev, PCI_COMMAND, cmd);
4635 static int __devinit bttv_probe(struct pci_dev *dev,
4636 const struct pci_device_id *pci_id)
4642 if (bttv_num == BTTV_MAX)
4644 printk(KERN_INFO "bttv: Bt8xx card found (%d).\n", bttv_num);
4645 btv=&bttvs[bttv_num];
4646 memset(btv,0,sizeof(*btv));
4647 btv->c.nr = bttv_num;
4648 sprintf(btv->c.name,"bttv%d",btv->c.nr);
4650 /* initialize structs / fill in defaults */
4651 mutex_init(&btv->lock);
4652 spin_lock_init(&btv->s_lock);
4653 spin_lock_init(&btv->gpio_lock);
4654 init_waitqueue_head(&btv->gpioq);
4655 init_waitqueue_head(&btv->i2c_queue);
4656 INIT_LIST_HEAD(&btv->c.subs);
4657 INIT_LIST_HEAD(&btv->capture);
4658 INIT_LIST_HEAD(&btv->vcapture);
4659 v4l2_prio_init(&btv->prio);
4661 init_timer(&btv->timeout);
4662 btv->timeout.function = bttv_irq_timeout;
4663 btv->timeout.data = (unsigned long)btv;
4666 btv->tuner_type = UNSET;
4667 btv->new_input = UNSET;
4668 btv->has_radio=radio[btv->c.nr];
4670 /* pci stuff (init, get irq/mmio, ... */
4672 btv->id = dev->device;
4673 if (pci_enable_device(dev)) {
4674 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4678 if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) {
4679 printk(KERN_WARNING "bttv%d: No suitable DMA available.\n",
4683 if (!request_mem_region(pci_resource_start(dev,0),
4684 pci_resource_len(dev,0),
4686 printk(KERN_WARNING "bttv%d: can't request iomem (0x%llx).\n",
4688 (unsigned long long)pci_resource_start(dev,0));
4691 pci_set_master(dev);
4692 pci_set_command(dev);
4693 pci_set_drvdata(dev,btv);
4695 pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision);
4696 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
4697 printk(KERN_INFO "bttv%d: Bt%d (rev %d) at %s, ",
4698 bttv_num,btv->id, btv->revision, pci_name(dev));
4699 printk("irq: %d, latency: %d, mmio: 0x%llx\n",
4700 btv->c.pci->irq, lat,
4701 (unsigned long long)pci_resource_start(dev,0));
4704 btv->bt848_mmio = ioremap(pci_resource_start(dev, 0), 0x1000);
4705 if (NULL == btv->bt848_mmio) {
4706 printk("bttv%d: ioremap() failed\n", btv->c.nr);
4714 /* disable irqs, register irq handler */
4715 btwrite(0, BT848_INT_MASK);
4716 result = request_irq(btv->c.pci->irq, bttv_irq,
4717 IRQF_SHARED | IRQF_DISABLED,btv->c.name,(void *)btv);
4719 printk(KERN_ERR "bttv%d: can't get IRQ %d\n",
4720 bttv_num,btv->c.pci->irq);
4724 if (0 != bttv_handle_chipset(btv)) {
4729 /* init options from insmod args */
4730 btv->opt_combfilter = combfilter;
4731 btv->opt_lumafilter = lumafilter;
4732 btv->opt_automute = automute;
4733 btv->opt_chroma_agc = chroma_agc;
4734 btv->opt_adc_crush = adc_crush;
4735 btv->opt_vcr_hack = vcr_hack;
4736 btv->opt_whitecrush_upper = whitecrush_upper;
4737 btv->opt_whitecrush_lower = whitecrush_lower;
4738 btv->opt_uv_ratio = uv_ratio;
4739 btv->opt_full_luma_range = full_luma_range;
4740 btv->opt_coring = coring;
4742 /* fill struct bttv with some useful defaults */
4743 btv->init.btv = btv;
4744 btv->init.ov.w.width = 320;
4745 btv->init.ov.w.height = 240;
4746 btv->init.fmt = format_by_palette(VIDEO_PALETTE_RGB24);
4747 btv->init.width = 320;
4748 btv->init.height = 240;
4751 /* initialize hardware */
4753 bttv_gpio_tracking(btv,"pre-init");
4755 bttv_risc_init_main(btv);
4759 btwrite(0x00, BT848_GPIO_REG_INP);
4760 btwrite(0x00, BT848_GPIO_OUT_EN);
4762 bttv_gpio_tracking(btv,"init");
4764 /* needs to be done before i2c is registered */
4765 bttv_init_card1(btv);
4767 /* register i2c + gpio */
4770 /* some card-specific stuff (needs working i2c) */
4771 bttv_init_card2(btv);
4774 /* register video4linux + input */
4775 if (!bttv_tvcards[btv->c.type].no_video) {
4776 bttv_register_video(btv);
4777 bt848_bright(btv,32768);
4778 bt848_contrast(btv,32768);
4779 bt848_hue(btv,32768);
4780 bt848_sat(btv,32768);
4782 set_input(btv, 0, btv->tvnorm);
4783 bttv_crop_reset(&btv->crop[0], btv->tvnorm);
4784 btv->crop[1] = btv->crop[0]; /* current = default */
4785 disclaim_vbi_lines(btv);
4786 disclaim_video_lines(btv);
4789 /* add subdevices and autoload dvb-bt8xx if needed */
4790 if (bttv_tvcards[btv->c.type].has_dvb) {
4791 bttv_sub_add_device(&btv->c, "dvb");
4792 request_modules(btv);
4795 bttv_input_init(btv);
4797 /* everything is fine */
4802 free_irq(btv->c.pci->irq,btv);
4805 if (btv->bt848_mmio)
4806 iounmap(btv->bt848_mmio);
4807 release_mem_region(pci_resource_start(btv->c.pci,0),
4808 pci_resource_len(btv->c.pci,0));
4809 pci_set_drvdata(dev,NULL);
4813 static void __devexit bttv_remove(struct pci_dev *pci_dev)
4815 struct bttv *btv = pci_get_drvdata(pci_dev);
4818 printk("bttv%d: unloading\n",btv->c.nr);
4820 /* shutdown everything (DMA+IRQs) */
4821 btand(~15, BT848_GPIO_DMA_CTL);
4822 btwrite(0, BT848_INT_MASK);
4823 btwrite(~0x0, BT848_INT_STAT);
4824 btwrite(0x0, BT848_GPIO_OUT_EN);
4826 bttv_gpio_tracking(btv,"cleanup");
4828 /* tell gpio modules we are leaving ... */
4830 wake_up(&btv->gpioq);
4831 bttv_input_fini(btv);
4832 bttv_sub_del_devices(&btv->c);
4834 /* unregister i2c_bus + input */
4837 /* unregister video4linux */
4838 bttv_unregister_video(btv);
4840 /* free allocated memory */
4841 btcx_riscmem_free(btv->c.pci,&btv->main);
4843 /* free ressources */
4844 free_irq(btv->c.pci->irq,btv);
4845 iounmap(btv->bt848_mmio);
4846 release_mem_region(pci_resource_start(btv->c.pci,0),
4847 pci_resource_len(btv->c.pci,0));
4849 pci_set_drvdata(pci_dev, NULL);
4854 static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state)
4856 struct bttv *btv = pci_get_drvdata(pci_dev);
4857 struct bttv_buffer_set idle;
4858 unsigned long flags;
4860 dprintk("bttv%d: suspend %d\n", btv->c.nr, state.event);
4862 /* stop dma + irqs */
4863 spin_lock_irqsave(&btv->s_lock,flags);
4864 memset(&idle, 0, sizeof(idle));
4865 btv->state.video = btv->curr;
4866 btv->state.vbi = btv->cvbi;
4867 btv->state.loop_irq = btv->loop_irq;
4870 bttv_buffer_activate_video(btv, &idle);
4871 bttv_buffer_activate_vbi(btv, NULL);
4872 bttv_set_dma(btv, 0);
4873 btwrite(0, BT848_INT_MASK);
4874 spin_unlock_irqrestore(&btv->s_lock,flags);
4876 /* save bt878 state */
4877 btv->state.gpio_enable = btread(BT848_GPIO_OUT_EN);
4878 btv->state.gpio_data = gpio_read();
4880 /* save pci state */
4881 pci_save_state(pci_dev);
4882 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
4883 pci_disable_device(pci_dev);
4884 btv->state.disabled = 1;
4889 static int bttv_resume(struct pci_dev *pci_dev)
4891 struct bttv *btv = pci_get_drvdata(pci_dev);
4892 unsigned long flags;
4895 dprintk("bttv%d: resume\n", btv->c.nr);
4897 /* restore pci state */
4898 if (btv->state.disabled) {
4899 err=pci_enable_device(pci_dev);
4901 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4905 btv->state.disabled = 0;
4907 err=pci_set_power_state(pci_dev, PCI_D0);
4909 pci_disable_device(pci_dev);
4910 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4912 btv->state.disabled = 1;
4916 pci_restore_state(pci_dev);
4918 /* restore bt878 state */
4919 bttv_reinit_bt848(btv);
4920 gpio_inout(0xffffff, btv->state.gpio_enable);
4921 gpio_write(btv->state.gpio_data);
4924 spin_lock_irqsave(&btv->s_lock,flags);
4925 btv->curr = btv->state.video;
4926 btv->cvbi = btv->state.vbi;
4927 btv->loop_irq = btv->state.loop_irq;
4928 bttv_buffer_activate_video(btv, &btv->curr);
4929 bttv_buffer_activate_vbi(btv, btv->cvbi);
4930 bttv_set_dma(btv, 0);
4931 spin_unlock_irqrestore(&btv->s_lock,flags);
4936 static struct pci_device_id bttv_pci_tbl[] = {
4937 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848,
4938 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4939 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT849,
4940 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4941 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT878,
4942 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4943 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT879,
4944 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4948 MODULE_DEVICE_TABLE(pci, bttv_pci_tbl);
4950 static struct pci_driver bttv_pci_driver = {
4952 .id_table = bttv_pci_tbl,
4953 .probe = bttv_probe,
4954 .remove = __devexit_p(bttv_remove),
4956 .suspend = bttv_suspend,
4957 .resume = bttv_resume,
4961 static int bttv_init_module(void)
4967 printk(KERN_INFO "bttv: driver version %d.%d.%d loaded\n",
4968 (BTTV_VERSION_CODE >> 16) & 0xff,
4969 (BTTV_VERSION_CODE >> 8) & 0xff,
4970 BTTV_VERSION_CODE & 0xff);
4972 printk(KERN_INFO "bttv: snapshot date %04d-%02d-%02d\n",
4973 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
4975 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
4977 if (gbufsize < 0 || gbufsize > BTTV_MAX_FBUF)
4978 gbufsize = BTTV_MAX_FBUF;
4979 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
4981 printk(KERN_INFO "bttv: using %d buffers with %dk (%d pages) each for capture\n",
4982 gbuffers, gbufsize >> 10, gbufsize >> PAGE_SHIFT);
4984 bttv_check_chipset();
4986 ret = bus_register(&bttv_sub_bus_type);
4988 printk(KERN_WARNING "bttv: bus_register error: %d\n", ret);
4991 return pci_register_driver(&bttv_pci_driver);
4994 static void bttv_cleanup_module(void)
4996 pci_unregister_driver(&bttv_pci_driver);
4997 bus_unregister(&bttv_sub_bus_type);
5001 module_init(bttv_init_module);
5002 module_exit(bttv_cleanup_module);