blob: 4ec476a9c0e43147bf7a0a91a7d5a0c567853c2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3 bttv - Bt848 frame grabber driver
4
5 Copyright (C) 1996,97,98 Ralph Metzler <rjkm@thp.uni-koeln.de>
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08006 & Marcus Metzler <mocm@thp.uni-koeln.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 (c) 1999-2002 Gerd Knorr <kraxel@bytesex.org>
8
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>
11
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -030012 V4L1 removal from:
13 (c) 2005-2006 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
14
Mauro Carvalho Chehabc96dd072007-10-26 16:51:47 -030015 Fixes to be fully V4L2 compliant by
16 (c) 2006 Mauro Carvalho Chehab <mchehab@infradead.org>
17
Michael Schimeke5bd0262007-01-18 16:17:39 -030018 Cropping and overscan support
19 Copyright (C) 2005, 2006 Michael H. Schimek <mschimek@gmx.at>
20 Sponsored by OPQ Systems AB
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 This program is free software; you can redistribute it and/or modify
23 it under the terms of the GNU General Public License as published by
24 the Free Software Foundation; either version 2 of the License, or
25 (at your option) any later version.
26
27 This program is distributed in the hope that it will be useful,
28 but WITHOUT ANY WARRANTY; without even the implied warranty of
29 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 GNU General Public License for more details.
31
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
35*/
36
37#include <linux/init.h>
38#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/errno.h>
41#include <linux/fs.h>
42#include <linux/kernel.h>
43#include <linux/sched.h>
44#include <linux/interrupt.h>
45#include <linux/kdev_t.h>
Mauro Carvalho Chehabb5b8ab82006-01-09 15:25:20 -020046#include "bttvp.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020047#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030048#include <media/v4l2-ioctl.h>
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030049#include <media/tvaudio.h>
Hans Verkuil2474ed42006-03-19 12:35:57 -030050#include <media/msp3400.h>
Mauro Carvalho Chehabb5b8ab82006-01-09 15:25:20 -020051
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -070052#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <asm/io.h>
55#include <asm/byteorder.h>
56
Mauro Carvalho Chehabfa3fcce2006-03-23 21:45:24 -030057#include <media/rds.h>
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -070058
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060unsigned int bttv_num; /* number of Bt848s in use */
61struct bttv bttvs[BTTV_MAX];
62
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020063unsigned int bttv_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064unsigned int bttv_verbose = 1;
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020065unsigned int bttv_gpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* config variables */
68#ifdef __BIG_ENDIAN
69static unsigned int bigendian=1;
70#else
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020071static unsigned int bigendian;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73static unsigned int radio[BTTV_MAX];
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020074static unsigned int irq_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static unsigned int gbuffers = 8;
76static unsigned int gbufsize = 0x208000;
Michael Schimeke5bd0262007-01-18 16:17:39 -030077static unsigned int reset_crop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Jean Delvare176c2f32008-09-07 12:49:59 -030079static int video_nr[BTTV_MAX] = { [0 ... (BTTV_MAX-1)] = -1 };
80static int radio_nr[BTTV_MAX] = { [0 ... (BTTV_MAX-1)] = -1 };
81static int vbi_nr[BTTV_MAX] = { [0 ... (BTTV_MAX-1)] = -1 };
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020082static int debug_latency;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020084static unsigned int fdsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/* options */
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020087static unsigned int combfilter;
88static unsigned int lumafilter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static unsigned int automute = 1;
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020090static unsigned int chroma_agc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static unsigned int adc_crush = 1;
92static unsigned int whitecrush_upper = 0xCF;
93static unsigned int whitecrush_lower = 0x7F;
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020094static unsigned int vcr_hack;
95static unsigned int irq_iswitch;
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -070096static unsigned int uv_ratio = 50;
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020097static unsigned int full_luma_range;
98static unsigned int coring;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/* API features (turn on/off stuff for testing) */
101static unsigned int v4l2 = 1;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/* insmod args */
104module_param(bttv_verbose, int, 0644);
105module_param(bttv_gpio, int, 0644);
106module_param(bttv_debug, int, 0644);
107module_param(irq_debug, int, 0644);
108module_param(debug_latency, int, 0644);
109
110module_param(fdsr, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111module_param(gbuffers, int, 0444);
112module_param(gbufsize, int, 0444);
Michael Schimeke5bd0262007-01-18 16:17:39 -0300113module_param(reset_crop, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115module_param(v4l2, int, 0644);
116module_param(bigendian, int, 0644);
117module_param(irq_iswitch, int, 0644);
118module_param(combfilter, int, 0444);
119module_param(lumafilter, int, 0444);
120module_param(automute, int, 0444);
121module_param(chroma_agc, int, 0444);
122module_param(adc_crush, int, 0444);
123module_param(whitecrush_upper, int, 0444);
124module_param(whitecrush_lower, int, 0444);
125module_param(vcr_hack, int, 0444);
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700126module_param(uv_ratio, int, 0444);
127module_param(full_luma_range, int, 0444);
128module_param(coring, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Jean Delvare176c2f32008-09-07 12:49:59 -0300130module_param_array(radio, int, NULL, 0444);
131module_param_array(video_nr, int, NULL, 0444);
132module_param_array(radio_nr, int, NULL, 0444);
133module_param_array(vbi_nr, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135MODULE_PARM_DESC(radio,"The TV card supports radio, default is 0 (no)");
136MODULE_PARM_DESC(bigendian,"byte order of the framebuffer, default is native endian");
137MODULE_PARM_DESC(bttv_verbose,"verbose startup messages, default is 1 (yes)");
138MODULE_PARM_DESC(bttv_gpio,"log gpio changes, default is 0 (no)");
139MODULE_PARM_DESC(bttv_debug,"debug messages, default is 0 (no)");
140MODULE_PARM_DESC(irq_debug,"irq handler debug messages, default is 0 (no)");
141MODULE_PARM_DESC(gbuffers,"number of capture buffers. range 2-32, default 8");
142MODULE_PARM_DESC(gbufsize,"size of the capture buffers, default is 0x208000");
Michael Schimeke5bd0262007-01-18 16:17:39 -0300143MODULE_PARM_DESC(reset_crop,"reset cropping parameters at open(), default "
144 "is 1 (yes) for compatibility with older applications");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145MODULE_PARM_DESC(automute,"mute audio on bad/missing video signal, default is 1 (yes)");
146MODULE_PARM_DESC(chroma_agc,"enables the AGC of chroma signal, default is 0 (no)");
147MODULE_PARM_DESC(adc_crush,"enables the luminance ADC crush, default is 1 (yes)");
148MODULE_PARM_DESC(whitecrush_upper,"sets the white crush upper value, default is 207");
149MODULE_PARM_DESC(whitecrush_lower,"sets the white crush lower value, default is 127");
150MODULE_PARM_DESC(vcr_hack,"enables the VCR hack (improves synch on poor VCR tapes), default is 0 (no)");
151MODULE_PARM_DESC(irq_iswitch,"switch inputs in irq handler");
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700152MODULE_PARM_DESC(uv_ratio,"ratio between u and v gains, default is 50");
153MODULE_PARM_DESC(full_luma_range,"use the full luma range, default is 0 (no)");
154MODULE_PARM_DESC(coring,"set the luma coring level, default is 0 (no)");
Jean Delvare176c2f32008-09-07 12:49:59 -0300155MODULE_PARM_DESC(video_nr, "video device numbers");
156MODULE_PARM_DESC(vbi_nr, "vbi device numbers");
157MODULE_PARM_DESC(radio_nr, "radio device numbers");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159MODULE_DESCRIPTION("bttv - v4l/v4l2 driver module for bt848/878 based cards");
160MODULE_AUTHOR("Ralph Metzler & Marcus Metzler & Gerd Knorr");
161MODULE_LICENSE("GPL");
162
163/* ----------------------------------------------------------------------- */
164/* sysfs */
165
Kay Sievers54bd5b62007-10-08 16:26:13 -0300166static ssize_t show_card(struct device *cd,
167 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Hans Verkuil22a04f12008-07-20 06:35:02 -0300169 struct video_device *vfd = container_of(cd, struct video_device, dev);
Hans Verkuil5e85e732008-07-20 06:31:39 -0300170 struct bttv *btv = dev_get_drvdata(vfd->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return sprintf(buf, "%d\n", btv ? btv->c.type : UNSET);
172}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300173static DEVICE_ATTR(card, S_IRUGO, show_card, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/* ----------------------------------------------------------------------- */
Jarod Wilsonf992a492007-03-24 15:23:50 -0300176/* dvb auto-load setup */
177#if defined(CONFIG_MODULES) && defined(MODULE)
178static void request_module_async(struct work_struct *work)
179{
180 request_module("dvb-bt8xx");
181}
182
183static void request_modules(struct bttv *dev)
184{
185 INIT_WORK(&dev->request_module_wk, request_module_async);
186 schedule_work(&dev->request_module_wk);
187}
188#else
189#define request_modules(dev)
190#endif /* CONFIG_MODULES */
191
192
193/* ----------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* static data */
195
196/* special timing tables from conexant... */
197static u8 SRAM_Table[][60] =
198{
199 /* PAL digital input over GPIO[7:0] */
200 {
201 45, // 45 bytes following
202 0x36,0x11,0x01,0x00,0x90,0x02,0x05,0x10,0x04,0x16,
203 0x12,0x05,0x11,0x00,0x04,0x12,0xC0,0x00,0x31,0x00,
204 0x06,0x51,0x08,0x03,0x89,0x08,0x07,0xC0,0x44,0x00,
205 0x81,0x01,0x01,0xA9,0x0D,0x02,0x02,0x50,0x03,0x37,
206 0x37,0x00,0xAF,0x21,0x00
207 },
208 /* NTSC digital input over GPIO[7:0] */
209 {
210 51, // 51 bytes following
211 0x0C,0xC0,0x00,0x00,0x90,0x02,0x03,0x10,0x03,0x06,
212 0x10,0x04,0x12,0x12,0x05,0x02,0x13,0x04,0x19,0x00,
213 0x04,0x39,0x00,0x06,0x59,0x08,0x03,0x83,0x08,0x07,
214 0x03,0x50,0x00,0xC0,0x40,0x00,0x86,0x01,0x01,0xA6,
215 0x0D,0x02,0x03,0x11,0x01,0x05,0x37,0x00,0xAC,0x21,
216 0x00,
217 },
218 // TGB_NTSC392 // quartzsight
219 // This table has been modified to be used for Fusion Rev D
220 {
221 0x2A, // size of table = 42
222 0x06, 0x08, 0x04, 0x0a, 0xc0, 0x00, 0x18, 0x08, 0x03, 0x24,
223 0x08, 0x07, 0x02, 0x90, 0x02, 0x08, 0x10, 0x04, 0x0c, 0x10,
224 0x05, 0x2c, 0x11, 0x04, 0x55, 0x48, 0x00, 0x05, 0x50, 0x00,
225 0xbf, 0x0c, 0x02, 0x2f, 0x3d, 0x00, 0x2f, 0x3f, 0x00, 0xc3,
226 0x20, 0x00
227 }
228};
229
Michael Schimeke5bd0262007-01-18 16:17:39 -0300230/* minhdelayx1 first video pixel we can capture on a line and
231 hdelayx1 start of active video, both relative to rising edge of
232 /HRESET pulse (0H) in 1 / fCLKx1.
233 swidth width of active video and
234 totalwidth total line width, both in 1 / fCLKx1.
235 sqwidth total line width in square pixels.
236 vdelay start of active video in 2 * field lines relative to
237 trailing edge of /VRESET pulse (VDELAY register).
238 sheight height of active video in 2 * field lines.
239 videostart0 ITU-R frame line number of the line corresponding
240 to vdelay in the first field. */
241#define CROPCAP(minhdelayx1, hdelayx1, swidth, totalwidth, sqwidth, \
242 vdelay, sheight, videostart0) \
243 .cropcap.bounds.left = minhdelayx1, \
244 /* * 2 because vertically we count field lines times two, */ \
245 /* e.g. 23 * 2 to 23 * 2 + 576 in PAL-BGHI defrect. */ \
246 .cropcap.bounds.top = (videostart0) * 2 - (vdelay) + MIN_VDELAY, \
247 /* 4 is a safety margin at the end of the line. */ \
248 .cropcap.bounds.width = (totalwidth) - (minhdelayx1) - 4, \
249 .cropcap.bounds.height = (sheight) + (vdelay) - MIN_VDELAY, \
250 .cropcap.defrect.left = hdelayx1, \
251 .cropcap.defrect.top = (videostart0) * 2, \
252 .cropcap.defrect.width = swidth, \
253 .cropcap.defrect.height = sheight, \
254 .cropcap.pixelaspect.numerator = totalwidth, \
255 .cropcap.pixelaspect.denominator = sqwidth,
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257const struct bttv_tvnorm bttv_tvnorms[] = {
258 /* PAL-BDGHI */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800259 /* max. active video is actually 922, but 924 is divisible by 4 and 3! */
260 /* actually, max active PAL with HSCALE=0 is 948, NTSC is 768 - nil */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 {
262 .v4l2_id = V4L2_STD_PAL,
263 .name = "PAL",
264 .Fsc = 35468950,
265 .swidth = 924,
266 .sheight = 576,
267 .totalwidth = 1135,
268 .adelay = 0x7f,
269 .bdelay = 0x72,
270 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
271 .scaledtwidth = 1135,
272 .hdelayx1 = 186,
273 .hactivex1 = 924,
274 .vdelay = 0x20,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300275 .vbipack = 255, /* min (2048 / 4, 0x1ff) & 0xff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .sram = 0,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200277 /* ITU-R frame line number of the first VBI line
Michael Schimeke5bd0262007-01-18 16:17:39 -0300278 we can capture, of the first and second field.
279 The last line is determined by cropcap.bounds. */
280 .vbistart = { 7, 320 },
281 CROPCAP(/* minhdelayx1 */ 68,
282 /* hdelayx1 */ 186,
283 /* Should be (768 * 1135 + 944 / 2) / 944.
284 cropcap.defrect is used for image width
285 checks, so we keep the old value 924. */
286 /* swidth */ 924,
287 /* totalwidth */ 1135,
288 /* sqwidth */ 944,
289 /* vdelay */ 0x20,
290 /* sheight */ 576,
291 /* videostart0 */ 23)
292 /* bt878 (and bt848?) can capture another
293 line below active video. */
294 .cropcap.bounds.height = (576 + 2) + 0x20 - 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 },{
Hans Verkuild97a11e2006-02-07 06:48:40 -0200296 .v4l2_id = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .name = "NTSC",
298 .Fsc = 28636363,
299 .swidth = 768,
300 .sheight = 480,
301 .totalwidth = 910,
302 .adelay = 0x68,
303 .bdelay = 0x5d,
304 .iform = (BT848_IFORM_NTSC|BT848_IFORM_XT0),
305 .scaledtwidth = 910,
306 .hdelayx1 = 128,
307 .hactivex1 = 910,
308 .vdelay = 0x1a,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300309 .vbipack = 144, /* min (1600 / 4, 0x1ff) & 0xff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 .sram = 1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200311 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300312 CROPCAP(/* minhdelayx1 */ 68,
313 /* hdelayx1 */ 128,
314 /* Should be (640 * 910 + 780 / 2) / 780? */
315 /* swidth */ 768,
316 /* totalwidth */ 910,
317 /* sqwidth */ 780,
318 /* vdelay */ 0x1a,
319 /* sheight */ 480,
320 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 },{
322 .v4l2_id = V4L2_STD_SECAM,
323 .name = "SECAM",
324 .Fsc = 35468950,
325 .swidth = 924,
326 .sheight = 576,
327 .totalwidth = 1135,
328 .adelay = 0x7f,
329 .bdelay = 0xb0,
330 .iform = (BT848_IFORM_SECAM|BT848_IFORM_XT1),
331 .scaledtwidth = 1135,
332 .hdelayx1 = 186,
333 .hactivex1 = 922,
334 .vdelay = 0x20,
335 .vbipack = 255,
336 .sram = 0, /* like PAL, correct? */
Michael H. Schimek67f15702006-01-09 15:25:27 -0200337 .vbistart = { 7, 320 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300338 CROPCAP(/* minhdelayx1 */ 68,
339 /* hdelayx1 */ 186,
340 /* swidth */ 924,
341 /* totalwidth */ 1135,
342 /* sqwidth */ 944,
343 /* vdelay */ 0x20,
344 /* sheight */ 576,
345 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 },{
347 .v4l2_id = V4L2_STD_PAL_Nc,
348 .name = "PAL-Nc",
349 .Fsc = 28636363,
350 .swidth = 640,
351 .sheight = 576,
352 .totalwidth = 910,
353 .adelay = 0x68,
354 .bdelay = 0x5d,
355 .iform = (BT848_IFORM_PAL_NC|BT848_IFORM_XT0),
356 .scaledtwidth = 780,
357 .hdelayx1 = 130,
358 .hactivex1 = 734,
359 .vdelay = 0x1a,
360 .vbipack = 144,
361 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200362 .vbistart = { 7, 320 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300363 CROPCAP(/* minhdelayx1 */ 68,
364 /* hdelayx1 */ 130,
365 /* swidth */ (640 * 910 + 780 / 2) / 780,
366 /* totalwidth */ 910,
367 /* sqwidth */ 780,
368 /* vdelay */ 0x1a,
369 /* sheight */ 576,
370 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 },{
372 .v4l2_id = V4L2_STD_PAL_M,
373 .name = "PAL-M",
374 .Fsc = 28636363,
375 .swidth = 640,
376 .sheight = 480,
377 .totalwidth = 910,
378 .adelay = 0x68,
379 .bdelay = 0x5d,
380 .iform = (BT848_IFORM_PAL_M|BT848_IFORM_XT0),
381 .scaledtwidth = 780,
382 .hdelayx1 = 135,
383 .hactivex1 = 754,
384 .vdelay = 0x1a,
385 .vbipack = 144,
386 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200387 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300388 CROPCAP(/* minhdelayx1 */ 68,
389 /* hdelayx1 */ 135,
390 /* swidth */ (640 * 910 + 780 / 2) / 780,
391 /* totalwidth */ 910,
392 /* sqwidth */ 780,
393 /* vdelay */ 0x1a,
394 /* sheight */ 480,
395 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 },{
397 .v4l2_id = V4L2_STD_PAL_N,
398 .name = "PAL-N",
399 .Fsc = 35468950,
400 .swidth = 768,
401 .sheight = 576,
402 .totalwidth = 1135,
403 .adelay = 0x7f,
404 .bdelay = 0x72,
405 .iform = (BT848_IFORM_PAL_N|BT848_IFORM_XT1),
406 .scaledtwidth = 944,
407 .hdelayx1 = 186,
408 .hactivex1 = 922,
409 .vdelay = 0x20,
410 .vbipack = 144,
411 .sram = -1,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300412 .vbistart = { 7, 320 },
413 CROPCAP(/* minhdelayx1 */ 68,
414 /* hdelayx1 */ 186,
415 /* swidth */ (768 * 1135 + 944 / 2) / 944,
416 /* totalwidth */ 1135,
417 /* sqwidth */ 944,
418 /* vdelay */ 0x20,
419 /* sheight */ 576,
420 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 },{
422 .v4l2_id = V4L2_STD_NTSC_M_JP,
423 .name = "NTSC-JP",
424 .Fsc = 28636363,
425 .swidth = 640,
426 .sheight = 480,
427 .totalwidth = 910,
428 .adelay = 0x68,
429 .bdelay = 0x5d,
430 .iform = (BT848_IFORM_NTSC_J|BT848_IFORM_XT0),
431 .scaledtwidth = 780,
432 .hdelayx1 = 135,
433 .hactivex1 = 754,
434 .vdelay = 0x16,
435 .vbipack = 144,
436 .sram = -1,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300437 .vbistart = { 10, 273 },
438 CROPCAP(/* minhdelayx1 */ 68,
439 /* hdelayx1 */ 135,
440 /* swidth */ (640 * 910 + 780 / 2) / 780,
441 /* totalwidth */ 910,
442 /* sqwidth */ 780,
443 /* vdelay */ 0x16,
444 /* sheight */ 480,
445 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 },{
447 /* that one hopefully works with the strange timing
448 * which video recorders produce when playing a NTSC
449 * tape on a PAL TV ... */
450 .v4l2_id = V4L2_STD_PAL_60,
451 .name = "PAL-60",
452 .Fsc = 35468950,
453 .swidth = 924,
454 .sheight = 480,
455 .totalwidth = 1135,
456 .adelay = 0x7f,
457 .bdelay = 0x72,
458 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
459 .scaledtwidth = 1135,
460 .hdelayx1 = 186,
461 .hactivex1 = 924,
462 .vdelay = 0x1a,
463 .vbipack = 255,
464 .vtotal = 524,
465 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200466 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300467 CROPCAP(/* minhdelayx1 */ 68,
468 /* hdelayx1 */ 186,
469 /* swidth */ 924,
470 /* totalwidth */ 1135,
471 /* sqwidth */ 944,
472 /* vdelay */ 0x1a,
473 /* sheight */ 480,
474 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476};
477static const unsigned int BTTV_TVNORMS = ARRAY_SIZE(bttv_tvnorms);
478
479/* ----------------------------------------------------------------------- */
480/* bttv format list
481 packed pixel formats must come first */
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300482static const struct bttv_format formats[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 {
484 .name = "8 bpp, gray",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 .fourcc = V4L2_PIX_FMT_GREY,
486 .btformat = BT848_COLOR_FMT_Y8,
487 .depth = 8,
488 .flags = FORMAT_FLAGS_PACKED,
489 },{
490 .name = "8 bpp, dithered color",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .fourcc = V4L2_PIX_FMT_HI240,
492 .btformat = BT848_COLOR_FMT_RGB8,
493 .depth = 8,
494 .flags = FORMAT_FLAGS_PACKED | FORMAT_FLAGS_DITHER,
495 },{
496 .name = "15 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .fourcc = V4L2_PIX_FMT_RGB555,
498 .btformat = BT848_COLOR_FMT_RGB15,
499 .depth = 16,
500 .flags = FORMAT_FLAGS_PACKED,
501 },{
502 .name = "15 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .fourcc = V4L2_PIX_FMT_RGB555X,
504 .btformat = BT848_COLOR_FMT_RGB15,
505 .btswap = 0x03, /* byteswap */
506 .depth = 16,
507 .flags = FORMAT_FLAGS_PACKED,
508 },{
509 .name = "16 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 .fourcc = V4L2_PIX_FMT_RGB565,
511 .btformat = BT848_COLOR_FMT_RGB16,
512 .depth = 16,
513 .flags = FORMAT_FLAGS_PACKED,
514 },{
515 .name = "16 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 .fourcc = V4L2_PIX_FMT_RGB565X,
517 .btformat = BT848_COLOR_FMT_RGB16,
518 .btswap = 0x03, /* byteswap */
519 .depth = 16,
520 .flags = FORMAT_FLAGS_PACKED,
521 },{
522 .name = "24 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 .fourcc = V4L2_PIX_FMT_BGR24,
524 .btformat = BT848_COLOR_FMT_RGB24,
525 .depth = 24,
526 .flags = FORMAT_FLAGS_PACKED,
527 },{
528 .name = "32 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 .fourcc = V4L2_PIX_FMT_BGR32,
530 .btformat = BT848_COLOR_FMT_RGB32,
531 .depth = 32,
532 .flags = FORMAT_FLAGS_PACKED,
533 },{
534 .name = "32 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 .fourcc = V4L2_PIX_FMT_RGB32,
536 .btformat = BT848_COLOR_FMT_RGB32,
537 .btswap = 0x0f, /* byte+word swap */
538 .depth = 32,
539 .flags = FORMAT_FLAGS_PACKED,
540 },{
541 .name = "4:2:2, packed, YUYV",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .fourcc = V4L2_PIX_FMT_YUYV,
543 .btformat = BT848_COLOR_FMT_YUY2,
544 .depth = 16,
545 .flags = FORMAT_FLAGS_PACKED,
546 },{
547 .name = "4:2:2, packed, YUYV",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 .fourcc = V4L2_PIX_FMT_YUYV,
549 .btformat = BT848_COLOR_FMT_YUY2,
550 .depth = 16,
551 .flags = FORMAT_FLAGS_PACKED,
552 },{
553 .name = "4:2:2, packed, UYVY",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 .fourcc = V4L2_PIX_FMT_UYVY,
555 .btformat = BT848_COLOR_FMT_YUY2,
556 .btswap = 0x03, /* byteswap */
557 .depth = 16,
558 .flags = FORMAT_FLAGS_PACKED,
559 },{
560 .name = "4:2:2, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .fourcc = V4L2_PIX_FMT_YUV422P,
562 .btformat = BT848_COLOR_FMT_YCrCb422,
563 .depth = 16,
564 .flags = FORMAT_FLAGS_PLANAR,
565 .hshift = 1,
566 .vshift = 0,
567 },{
568 .name = "4:2:0, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 .fourcc = V4L2_PIX_FMT_YUV420,
570 .btformat = BT848_COLOR_FMT_YCrCb422,
571 .depth = 12,
572 .flags = FORMAT_FLAGS_PLANAR,
573 .hshift = 1,
574 .vshift = 1,
575 },{
576 .name = "4:2:0, planar, Y-Cr-Cb",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 .fourcc = V4L2_PIX_FMT_YVU420,
578 .btformat = BT848_COLOR_FMT_YCrCb422,
579 .depth = 12,
580 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
581 .hshift = 1,
582 .vshift = 1,
583 },{
584 .name = "4:1:1, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 .fourcc = V4L2_PIX_FMT_YUV411P,
586 .btformat = BT848_COLOR_FMT_YCrCb411,
587 .depth = 12,
588 .flags = FORMAT_FLAGS_PLANAR,
589 .hshift = 2,
590 .vshift = 0,
591 },{
592 .name = "4:1:0, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 .fourcc = V4L2_PIX_FMT_YUV410,
594 .btformat = BT848_COLOR_FMT_YCrCb411,
595 .depth = 9,
596 .flags = FORMAT_FLAGS_PLANAR,
597 .hshift = 2,
598 .vshift = 2,
599 },{
600 .name = "4:1:0, planar, Y-Cr-Cb",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 .fourcc = V4L2_PIX_FMT_YVU410,
602 .btformat = BT848_COLOR_FMT_YCrCb411,
603 .depth = 9,
604 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
605 .hshift = 2,
606 .vshift = 2,
607 },{
608 .name = "raw scanlines",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 .fourcc = -1,
610 .btformat = BT848_COLOR_FMT_RAW,
611 .depth = 8,
612 .flags = FORMAT_FLAGS_RAW,
613 }
614};
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300615static const unsigned int FORMATS = ARRAY_SIZE(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617/* ----------------------------------------------------------------------- */
618
619#define V4L2_CID_PRIVATE_CHROMA_AGC (V4L2_CID_PRIVATE_BASE + 0)
620#define V4L2_CID_PRIVATE_COMBFILTER (V4L2_CID_PRIVATE_BASE + 1)
621#define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 2)
622#define V4L2_CID_PRIVATE_LUMAFILTER (V4L2_CID_PRIVATE_BASE + 3)
623#define V4L2_CID_PRIVATE_AGC_CRUSH (V4L2_CID_PRIVATE_BASE + 4)
624#define V4L2_CID_PRIVATE_VCR_HACK (V4L2_CID_PRIVATE_BASE + 5)
625#define V4L2_CID_PRIVATE_WHITECRUSH_UPPER (V4L2_CID_PRIVATE_BASE + 6)
626#define V4L2_CID_PRIVATE_WHITECRUSH_LOWER (V4L2_CID_PRIVATE_BASE + 7)
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700627#define V4L2_CID_PRIVATE_UV_RATIO (V4L2_CID_PRIVATE_BASE + 8)
628#define V4L2_CID_PRIVATE_FULL_LUMA_RANGE (V4L2_CID_PRIVATE_BASE + 9)
629#define V4L2_CID_PRIVATE_CORING (V4L2_CID_PRIVATE_BASE + 10)
630#define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632static const struct v4l2_queryctrl no_ctl = {
633 .name = "42",
634 .flags = V4L2_CTRL_FLAG_DISABLED,
635};
636static const struct v4l2_queryctrl bttv_ctls[] = {
637 /* --- video --- */
638 {
639 .id = V4L2_CID_BRIGHTNESS,
640 .name = "Brightness",
641 .minimum = 0,
642 .maximum = 65535,
643 .step = 256,
644 .default_value = 32768,
645 .type = V4L2_CTRL_TYPE_INTEGER,
646 },{
647 .id = V4L2_CID_CONTRAST,
648 .name = "Contrast",
649 .minimum = 0,
650 .maximum = 65535,
651 .step = 128,
652 .default_value = 32768,
653 .type = V4L2_CTRL_TYPE_INTEGER,
654 },{
655 .id = V4L2_CID_SATURATION,
656 .name = "Saturation",
657 .minimum = 0,
658 .maximum = 65535,
659 .step = 128,
660 .default_value = 32768,
661 .type = V4L2_CTRL_TYPE_INTEGER,
662 },{
663 .id = V4L2_CID_HUE,
664 .name = "Hue",
665 .minimum = 0,
666 .maximum = 65535,
667 .step = 256,
668 .default_value = 32768,
669 .type = V4L2_CTRL_TYPE_INTEGER,
670 },
671 /* --- audio --- */
672 {
673 .id = V4L2_CID_AUDIO_MUTE,
674 .name = "Mute",
675 .minimum = 0,
676 .maximum = 1,
677 .type = V4L2_CTRL_TYPE_BOOLEAN,
678 },{
679 .id = V4L2_CID_AUDIO_VOLUME,
680 .name = "Volume",
681 .minimum = 0,
682 .maximum = 65535,
683 .step = 65535/100,
684 .default_value = 65535,
685 .type = V4L2_CTRL_TYPE_INTEGER,
686 },{
687 .id = V4L2_CID_AUDIO_BALANCE,
688 .name = "Balance",
689 .minimum = 0,
690 .maximum = 65535,
691 .step = 65535/100,
692 .default_value = 32768,
693 .type = V4L2_CTRL_TYPE_INTEGER,
694 },{
695 .id = V4L2_CID_AUDIO_BASS,
696 .name = "Bass",
697 .minimum = 0,
698 .maximum = 65535,
699 .step = 65535/100,
700 .default_value = 32768,
701 .type = V4L2_CTRL_TYPE_INTEGER,
702 },{
703 .id = V4L2_CID_AUDIO_TREBLE,
704 .name = "Treble",
705 .minimum = 0,
706 .maximum = 65535,
707 .step = 65535/100,
708 .default_value = 32768,
709 .type = V4L2_CTRL_TYPE_INTEGER,
710 },
711 /* --- private --- */
712 {
713 .id = V4L2_CID_PRIVATE_CHROMA_AGC,
714 .name = "chroma agc",
715 .minimum = 0,
716 .maximum = 1,
717 .type = V4L2_CTRL_TYPE_BOOLEAN,
718 },{
719 .id = V4L2_CID_PRIVATE_COMBFILTER,
720 .name = "combfilter",
721 .minimum = 0,
722 .maximum = 1,
723 .type = V4L2_CTRL_TYPE_BOOLEAN,
724 },{
725 .id = V4L2_CID_PRIVATE_AUTOMUTE,
726 .name = "automute",
727 .minimum = 0,
728 .maximum = 1,
729 .type = V4L2_CTRL_TYPE_BOOLEAN,
730 },{
731 .id = V4L2_CID_PRIVATE_LUMAFILTER,
732 .name = "luma decimation filter",
733 .minimum = 0,
734 .maximum = 1,
735 .type = V4L2_CTRL_TYPE_BOOLEAN,
736 },{
737 .id = V4L2_CID_PRIVATE_AGC_CRUSH,
738 .name = "agc crush",
739 .minimum = 0,
740 .maximum = 1,
741 .type = V4L2_CTRL_TYPE_BOOLEAN,
742 },{
743 .id = V4L2_CID_PRIVATE_VCR_HACK,
744 .name = "vcr hack",
745 .minimum = 0,
746 .maximum = 1,
747 .type = V4L2_CTRL_TYPE_BOOLEAN,
748 },{
749 .id = V4L2_CID_PRIVATE_WHITECRUSH_UPPER,
750 .name = "whitecrush upper",
751 .minimum = 0,
752 .maximum = 255,
753 .step = 1,
754 .default_value = 0xCF,
755 .type = V4L2_CTRL_TYPE_INTEGER,
756 },{
757 .id = V4L2_CID_PRIVATE_WHITECRUSH_LOWER,
758 .name = "whitecrush lower",
759 .minimum = 0,
760 .maximum = 255,
761 .step = 1,
762 .default_value = 0x7F,
763 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700764 },{
765 .id = V4L2_CID_PRIVATE_UV_RATIO,
766 .name = "uv ratio",
767 .minimum = 0,
768 .maximum = 100,
769 .step = 1,
770 .default_value = 50,
771 .type = V4L2_CTRL_TYPE_INTEGER,
772 },{
773 .id = V4L2_CID_PRIVATE_FULL_LUMA_RANGE,
774 .name = "full luma range",
775 .minimum = 0,
776 .maximum = 1,
777 .type = V4L2_CTRL_TYPE_BOOLEAN,
778 },{
779 .id = V4L2_CID_PRIVATE_CORING,
780 .name = "coring",
781 .minimum = 0,
782 .maximum = 3,
783 .step = 1,
784 .default_value = 0,
785 .type = V4L2_CTRL_TYPE_INTEGER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700788
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300792static const struct v4l2_queryctrl *ctrl_by_id(int id)
793{
794 int i;
795
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -0300796 for (i = 0; i < ARRAY_SIZE(bttv_ctls); i++)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300797 if (bttv_ctls[i].id == id)
798 return bttv_ctls+i;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -0300799
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300800 return NULL;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/* ----------------------------------------------------------------------- */
804/* resource management */
805
Michael Schimeke5bd0262007-01-18 16:17:39 -0300806/*
807 RESOURCE_ allocated by freed by
808
809 VIDEO_READ bttv_read 1) bttv_read 2)
810
811 VIDEO_STREAM VIDIOC_STREAMON VIDIOC_STREAMOFF
812 VIDIOC_QBUF 1) bttv_release
813 VIDIOCMCAPTURE 1)
814
815 OVERLAY VIDIOCCAPTURE on VIDIOCCAPTURE off
816 VIDIOC_OVERLAY on VIDIOC_OVERLAY off
817 3) bttv_release
818
819 VBI VIDIOC_STREAMON VIDIOC_STREAMOFF
820 VIDIOC_QBUF 1) bttv_release
821 bttv_read, bttv_poll 1) 4)
822
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.
829
830 Note this driver permits video input and standard changes regardless if
831 resources are allocated.
832*/
833
834#define VBI_RESOURCES (RESOURCE_VBI)
835#define VIDEO_RESOURCES (RESOURCE_VIDEO_READ | \
836 RESOURCE_VIDEO_STREAM | \
837 RESOURCE_OVERLAY)
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static
840int check_alloc_btres(struct bttv *btv, struct bttv_fh *fh, int bit)
841{
Michael Schimeke5bd0262007-01-18 16:17:39 -0300842 int xbits; /* mutual exclusive resources */
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (fh->resources & bit)
845 /* have it already allocated */
846 return 1;
847
Michael Schimeke5bd0262007-01-18 16:17:39 -0300848 xbits = bit;
849 if (bit & (RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM))
850 xbits |= RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM;
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* is it free? */
Michael Schimeke5bd0262007-01-18 16:17:39 -0300853 mutex_lock(&btv->lock);
854 if (btv->resources & xbits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /* no, someone else uses it */
Michael Schimeke5bd0262007-01-18 16:17:39 -0300856 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Michael Schimeke5bd0262007-01-18 16:17:39 -0300858
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;
863
864 if (btv->vbi_end > top)
865 goto fail;
866
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;
872
873 if (end > btv->crop_start)
874 goto fail;
875
876 /* Claim scan lines above fh->vbi_fmt.end. */
877 btv->vbi_end = end;
878 }
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* it's free, grab it */
881 fh->resources |= bit;
882 btv->resources |= bit;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300883 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 1;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300885
886 fail:
887 mutex_unlock(&btv->lock);
888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891static
892int check_btres(struct bttv_fh *fh, int bit)
893{
894 return (fh->resources & bit);
895}
896
897static
898int locked_btres(struct bttv *btv, int bit)
899{
900 return (btv->resources & bit);
901}
902
Michael Schimeke5bd0262007-01-18 16:17:39 -0300903/* Call with btv->lock down. */
904static void
905disclaim_vbi_lines(struct bttv *btv)
906{
907 btv->vbi_end = 0;
908}
909
910/* Call with btv->lock down. */
911static void
912disclaim_video_lines(struct bttv *btv)
913{
914 const struct bttv_tvnorm *tvnorm;
915 u8 crop;
916
917 tvnorm = &bttv_tvnorms[btv->tvnorm];
918 btv->crop_start = tvnorm->cropcap.bounds.top
919 + tvnorm->cropcap.bounds.height;
920
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);
930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932static
933void free_btres(struct bttv *btv, struct bttv_fh *fh, int bits)
934{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if ((fh->resources & bits) != bits) {
936 /* trying to free ressources not allocated by us ... */
937 printk("bttv: BUG! (btres)\n");
938 }
Michael Schimeke5bd0262007-01-18 16:17:39 -0300939 mutex_lock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 fh->resources &= ~bits;
941 btv->resources &= ~bits;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300942
943 bits = btv->resources;
944
945 if (0 == (bits & VIDEO_RESOURCES))
946 disclaim_video_lines(btv);
947
948 if (0 == (bits & VBI_RESOURCES))
949 disclaim_vbi_lines(btv);
950
951 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954/* ----------------------------------------------------------------------- */
955/* If Bt848a or Bt849, use PLL for PAL/SECAM and crystal for NTSC */
956
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
962
963 F_input = 28.636363 MHz:
964 PAL (CLKx2 = 35.46895 MHz): PLL_X = 1, PLL_I = 0x0E, PLL_F = 0xDCF9, PLL_C = 0
965*/
966
967static void set_pll_freq(struct bttv *btv, unsigned int fin, unsigned int fout)
968{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800969 unsigned char fl, fh, fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800971 /* prevent overflows */
972 fin/=4;
973 fout/=4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800975 fout*=12;
976 fi=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800978 fout=(fout%fin)*256;
979 fh=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800981 fout=(fout%fin)*256;
982 fl=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800984 btwrite(fl, BT848_PLL_F_LO);
985 btwrite(fh, BT848_PLL_F_HI);
986 btwrite(fi|BT848_PLL_X, BT848_PLL_XCI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989static void set_pll(struct bttv *btv)
990{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800991 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800993 if (!btv->pll.pll_crystal)
994 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 if (btv->pll.pll_ofreq == btv->pll.pll_current) {
997 dprintk("bttv%d: PLL: no change required\n",btv->c.nr);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800998 return;
999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001001 if (btv->pll.pll_ifreq == btv->pll.pll_ofreq) {
1002 /* no PLL needed */
1003 if (btv->pll.pll_current == 0)
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001004 return;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001005 bttv_printk(KERN_INFO "bttv%d: PLL can sleep, using XTAL (%d).\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001006 btv->c.nr,btv->pll.pll_ifreq);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001007 btwrite(0x00,BT848_TGCTRL);
1008 btwrite(0x00,BT848_PLL_XCI);
1009 btv->pll.pll_current = 0;
1010 return;
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001013 bttv_printk(KERN_INFO "bttv%d: PLL: %d => %d ",btv->c.nr,
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001014 btv->pll.pll_ifreq, btv->pll.pll_ofreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 set_pll_freq(btv, btv->pll.pll_ifreq, btv->pll.pll_ofreq);
1016
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001017 for (i=0; i<10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* Let other people run while the PLL stabilizes */
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001019 bttv_printk(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 msleep(10);
1021
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001022 if (btread(BT848_DSTATUS) & BT848_DSTATUS_PLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 btwrite(0,BT848_DSTATUS);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001024 } else {
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001025 btwrite(0x08,BT848_TGCTRL);
1026 btv->pll.pll_current = btv->pll.pll_ofreq;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001027 bttv_printk(" ok\n");
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001028 return;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001029 }
1030 }
1031 btv->pll.pll_current = -1;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001032 bttv_printk("failed\n");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001033 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036/* used to switch between the bt848's analog/digital video capture modes */
1037static void bt848A_set_timing(struct bttv *btv)
1038{
1039 int i, len;
1040 int table_idx = bttv_tvnorms[btv->tvnorm].sram;
1041 int fsc = bttv_tvnorms[btv->tvnorm].Fsc;
1042
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);
1046
1047 /* timing change...reset timing generator address */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001048 btwrite(0x00, BT848_TGCTRL);
1049 btwrite(0x02, BT848_TGCTRL);
1050 btwrite(0x00, BT848_TGCTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
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;
1056
1057 set_pll(btv);
1058 btwrite(0x11, BT848_TGCTRL);
1059 btwrite(0x41, BT848_DVSIF);
1060 } else {
1061 btv->pll.pll_ofreq = fsc;
1062 set_pll(btv);
1063 btwrite(0x0, BT848_DVSIF);
1064 }
1065}
1066
1067/* ----------------------------------------------------------------------- */
1068
1069static void bt848_bright(struct bttv *btv, int bright)
1070{
1071 int value;
1072
1073 // printk("bttv: set bright: %d\n",bright); // DEBUG
1074 btv->bright = bright;
1075
1076 /* We want -128 to 127 we get 0-65535 */
1077 value = (bright >> 8) - 128;
1078 btwrite(value & 0xff, BT848_BRIGHT);
1079}
1080
1081static void bt848_hue(struct bttv *btv, int hue)
1082{
1083 int value;
1084
1085 btv->hue = hue;
1086
1087 /* -128 to 127 */
1088 value = (hue >> 8) - 128;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001089 btwrite(value & 0xff, BT848_HUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092static void bt848_contrast(struct bttv *btv, int cont)
1093{
1094 int value,hibit;
1095
1096 btv->contrast = cont;
1097
1098 /* 0-511 */
1099 value = (cont >> 7);
1100 hibit = (value >> 6) & 4;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001101 btwrite(value & 0xff, BT848_CONTRAST_LO);
1102 btaor(hibit, ~4, BT848_E_CONTROL);
1103 btaor(hibit, ~4, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106static void bt848_sat(struct bttv *btv, int color)
1107{
1108 int val_u,val_v,hibits;
1109
1110 btv->saturation = color;
1111
1112 /* 0-511 for the color */
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -07001113 val_u = ((color * btv->opt_uv_ratio) / 50) >> 7;
1114 val_v = (((color * (100 - btv->opt_uv_ratio) / 50) >>7)*180L)/254;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001115 hibits = (val_u >> 7) & 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 hibits |= (val_v >> 8) & 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001117 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123/* ----------------------------------------------------------------------- */
1124
1125static int
1126video_mux(struct bttv *btv, unsigned int input)
1127{
1128 int mux,mask2;
1129
1130 if (input >= bttv_tvcards[btv->c.type].video_inputs)
1131 return -EINVAL;
1132
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001133 /* needed by RemoteVideo MX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 mask2 = bttv_tvcards[btv->c.type].gpiomask2;
1135 if (mask2)
1136 gpio_inout(mask2,mask2);
1137
1138 if (input == btv->svhs) {
1139 btor(BT848_CONTROL_COMP, BT848_E_CONTROL);
1140 btor(BT848_CONTROL_COMP, BT848_O_CONTROL);
1141 } else {
1142 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
1143 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
1144 }
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);
1149
1150 /* card specific hook */
1151 if(bttv_tvcards[btv->c.type].muxsel_hook)
1152 bttv_tvcards[btv->c.type].muxsel_hook (btv, input);
1153 return 0;
1154}
1155
1156static char *audio_modes[] = {
1157 "audio: tuner", "audio: radio", "audio: extern",
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001158 "audio: intern", "audio: mute"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159};
1160
1161static int
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001162audio_mux(struct bttv *btv, int input, int mute)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001164 int gpio_val, signal;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001165 struct v4l2_control ctrl;
1166 struct i2c_client *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 gpio_inout(bttv_tvcards[btv->c.type].gpiomask,
1169 bttv_tvcards[btv->c.type].gpiomask);
1170 signal = btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC;
1171
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001172 btv->mute = mute;
1173 btv->audio = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001175 /* automute */
1176 mute = mute || (btv->opt_automute && !signal && !btv->radio_user);
1177
1178 if (mute)
1179 gpio_val = bttv_tvcards[btv->c.type].gpiomute;
1180 else
1181 gpio_val = bttv_tvcards[btv->c.type].gpiomux[input];
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001182
1183 gpio_bits(bttv_tvcards[btv->c.type].gpiomask, gpio_val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (bttv_gpio)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001185 bttv_gpio_tracking(btv, audio_modes[mute ? 4 : input]);
1186 if (in_interrupt())
1187 return 0;
1188
1189 ctrl.id = V4L2_CID_AUDIO_MUTE;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001190 ctrl.value = btv->mute;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001191 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, &ctrl);
1192 c = btv->i2c_msp34xx_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001193 if (c) {
1194 struct v4l2_routing route;
1195
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. */
1201 switch (input) {
1202 case TVAUDIO_INPUT_RADIO:
Hans Verkuil07151722006-04-01 18:03:23 -03001203 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1204 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001205 break;
1206 case TVAUDIO_INPUT_EXTERN:
Hans Verkuil07151722006-04-01 18:03:23 -03001207 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER1,
1208 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001209 break;
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. */
Hans Verkuil07151722006-04-01 18:03:23 -03001216 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1217 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001218 break;
1219 case TVAUDIO_INPUT_TUNER:
1220 default:
Wade Berrier434b2522007-06-25 13:02:16 -03001221 /* This is the only card that uses TUNER2, and afaik,
1222 is the only difference between the VOODOOTV_FM
1223 and VOODOOTV_200 */
1224 if (btv->c.type == BTTV_BOARD_VOODOOTV_200)
1225 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER2, \
1226 MSP_DSP_IN_TUNER, MSP_DSP_IN_TUNER);
1227 else
1228 route.input = MSP_INPUT_DEFAULT;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001229 break;
1230 }
1231 route.output = MSP_OUTPUT_DEFAULT;
1232 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1233 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001234 c = btv->i2c_tvaudio_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001235 if (c) {
1236 struct v4l2_routing route;
1237
1238 route.input = input;
1239 route.output = 0;
1240 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return 0;
1243}
1244
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001245static inline int
1246audio_mute(struct bttv *btv, int mute)
1247{
1248 return audio_mux(btv, btv->audio, mute);
1249}
1250
1251static inline int
1252audio_input(struct bttv *btv, int input)
1253{
1254 return audio_mux(btv, input, btv->mute);
1255}
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257static void
Michael Schimeke5bd0262007-01-18 16:17:39 -03001258bttv_crop_calc_limits(struct bttv_crop *c)
1259{
1260 /* Scale factor min. 1:1, max. 16:1. Min. image size
1261 48 x 32. Scaled width must be a multiple of 4. */
1262
1263 if (1) {
1264 /* For bug compatibility with VIDIOCGCAP and image
1265 size checks in earlier driver versions. */
1266 c->min_scaled_width = 48;
1267 c->min_scaled_height = 32;
1268 } else {
1269 c->min_scaled_width =
1270 (max(48, c->rect.width >> 4) + 3) & ~3;
1271 c->min_scaled_height =
1272 max(32, c->rect.height >> 4);
1273 }
1274
1275 c->max_scaled_width = c->rect.width & ~3;
1276 c->max_scaled_height = c->rect.height;
1277}
1278
1279static void
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001280bttv_crop_reset(struct bttv_crop *c, unsigned int norm)
Michael Schimeke5bd0262007-01-18 16:17:39 -03001281{
1282 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1283 bttv_crop_calc_limits(c);
1284}
1285
1286/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287static int
1288set_tvnorm(struct bttv *btv, unsigned int norm)
1289{
1290 const struct bttv_tvnorm *tvnorm;
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001291 v4l2_std_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001293 BUG_ON(norm >= BTTV_TVNORMS);
1294 BUG_ON(btv->tvnorm >= BTTV_TVNORMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 tvnorm = &bttv_tvnorms[norm];
1297
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001298 if (!memcmp(&bttv_tvnorms[btv->tvnorm].cropcap, &tvnorm->cropcap,
1299 sizeof (tvnorm->cropcap))) {
Michael Schimeke5bd0262007-01-18 16:17:39 -03001300 bttv_crop_reset(&btv->crop[0], norm);
1301 btv->crop[1] = btv->crop[0]; /* current = default */
1302
1303 if (0 == (btv->resources & VIDEO_RESOURCES)) {
1304 btv->crop_start = tvnorm->cropcap.bounds.top
1305 + tvnorm->cropcap.bounds.height;
1306 }
1307 }
1308
1309 btv->tvnorm = norm;
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 btwrite(tvnorm->adelay, BT848_ADELAY);
1312 btwrite(tvnorm->bdelay, BT848_BDELAY);
1313 btaor(tvnorm->iform,~(BT848_IFORM_NORM|BT848_IFORM_XTBOTH),
1314 BT848_IFORM);
1315 btwrite(tvnorm->vbipack, BT848_VBI_PACK_SIZE);
1316 btwrite(1, BT848_VBI_PACK_DEL);
1317 bt848A_set_timing(btv);
1318
1319 switch (btv->c.type) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001320 case BTTV_BOARD_VOODOOTV_FM:
Wade Berrier434b2522007-06-25 13:02:16 -03001321 case BTTV_BOARD_VOODOOTV_200:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 bttv_tda9880_setnorm(btv,norm);
1323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001325 id = tvnorm->v4l2_id;
1326 bttv_call_i2c_clients(btv, VIDIOC_S_STD, &id);
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return 0;
1329}
1330
Michael Schimeke5bd0262007-01-18 16:17:39 -03001331/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static void
Trent Piepho333408f2007-07-03 15:08:10 -03001333set_input(struct bttv *btv, unsigned int input, unsigned int norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 unsigned long flags;
1336
1337 btv->input = input;
1338 if (irq_iswitch) {
1339 spin_lock_irqsave(&btv->s_lock,flags);
1340 if (btv->curr.frame_irq) {
1341 /* active capture -> delayed input switch */
1342 btv->new_input = input;
1343 } else {
1344 video_mux(btv,input);
1345 }
1346 spin_unlock_irqrestore(&btv->s_lock,flags);
1347 } else {
1348 video_mux(btv,input);
1349 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001350 audio_input(btv,(input == bttv_tvcards[btv->c.type].tuner ?
1351 TVAUDIO_INPUT_TUNER : TVAUDIO_INPUT_EXTERN));
Trent Piepho333408f2007-07-03 15:08:10 -03001352 set_tvnorm(btv, norm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355static void init_irqreg(struct bttv *btv)
1356{
1357 /* clear status */
1358 btwrite(0xfffffUL, BT848_INT_STAT);
1359
1360 if (bttv_tvcards[btv->c.type].no_video) {
1361 /* i2c only */
1362 btwrite(BT848_INT_I2CDONE,
1363 BT848_INT_MASK);
1364 } else {
1365 /* full video */
1366 btwrite((btv->triton1) |
1367 (btv->gpioirq ? BT848_INT_GPINT : 0) |
1368 BT848_INT_SCERR |
1369 (fdsr ? BT848_INT_FDSR : 0) |
Jean Delvareeb1b27b2008-08-30 10:18:21 -03001370 BT848_INT_RISCI | BT848_INT_OCERR |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 BT848_INT_FMTCHG|BT848_INT_HLOCK|
1372 BT848_INT_I2CDONE,
1373 BT848_INT_MASK);
1374 }
1375}
1376
1377static void init_bt848(struct bttv *btv)
1378{
1379 int val;
1380
1381 if (bttv_tvcards[btv->c.type].no_video) {
1382 /* very basic init only */
1383 init_irqreg(btv);
1384 return;
1385 }
1386
1387 btwrite(0x00, BT848_CAP_CTL);
1388 btwrite(BT848_COLOR_CTL_GAMMA, BT848_COLOR_CTL);
1389 btwrite(BT848_IFORM_XTAUTO | BT848_IFORM_AUTO, BT848_IFORM);
1390
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001391 /* set planar and packed mode trigger points and */
1392 /* set rising edge of inverted GPINTR pin as irq trigger */
1393 btwrite(BT848_GPIO_DMA_CTL_PKTP_32|
1394 BT848_GPIO_DMA_CTL_PLTP1_16|
1395 BT848_GPIO_DMA_CTL_PLTP23_16|
1396 BT848_GPIO_DMA_CTL_GPINTC|
1397 BT848_GPIO_DMA_CTL_GPINTI,
1398 BT848_GPIO_DMA_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001401 btwrite(val, BT848_E_SCLOOP);
1402 btwrite(val, BT848_O_SCLOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001404 btwrite(0x20, BT848_E_VSCALE_HI);
1405 btwrite(0x20, BT848_O_VSCALE_HI);
1406 btwrite(BT848_ADC_RESERVED | (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 BT848_ADC);
1408
1409 btwrite(whitecrush_upper, BT848_WC_UP);
1410 btwrite(whitecrush_lower, BT848_WC_DOWN);
1411
1412 if (btv->opt_lumafilter) {
1413 btwrite(0, BT848_E_CONTROL);
1414 btwrite(0, BT848_O_CONTROL);
1415 } else {
1416 btwrite(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1417 btwrite(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1418 }
1419
1420 bt848_bright(btv, btv->bright);
1421 bt848_hue(btv, btv->hue);
1422 bt848_contrast(btv, btv->contrast);
1423 bt848_sat(btv, btv->saturation);
1424
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001425 /* interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 init_irqreg(btv);
1427}
1428
1429static void bttv_reinit_bt848(struct bttv *btv)
1430{
1431 unsigned long flags;
1432
1433 if (bttv_verbose)
1434 printk(KERN_INFO "bttv%d: reset, reinitialize\n",btv->c.nr);
1435 spin_lock_irqsave(&btv->s_lock,flags);
1436 btv->errors=0;
1437 bttv_set_dma(btv,0);
1438 spin_unlock_irqrestore(&btv->s_lock,flags);
1439
1440 init_bt848(btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001441 btv->pll.pll_current = -1;
Trent Piepho333408f2007-07-03 15:08:10 -03001442 set_input(btv, btv->input, btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
Mauro Carvalho Chehab04a94d32007-12-27 22:23:34 -03001445static int bttv_g_ctrl(struct file *file, void *priv,
1446 struct v4l2_control *c)
1447{
1448 struct bttv_fh *fh = priv;
1449 struct bttv *btv = fh->btv;
1450
1451 switch (c->id) {
1452 case V4L2_CID_BRIGHTNESS:
1453 c->value = btv->bright;
1454 break;
1455 case V4L2_CID_HUE:
1456 c->value = btv->hue;
1457 break;
1458 case V4L2_CID_CONTRAST:
1459 c->value = btv->contrast;
1460 break;
1461 case V4L2_CID_SATURATION:
1462 c->value = btv->saturation;
1463 break;
1464
1465 case V4L2_CID_AUDIO_MUTE:
1466 case V4L2_CID_AUDIO_VOLUME:
1467 case V4L2_CID_AUDIO_BALANCE:
1468 case V4L2_CID_AUDIO_BASS:
1469 case V4L2_CID_AUDIO_TREBLE:
1470 bttv_call_i2c_clients(btv, VIDIOC_G_CTRL, c);
1471 break;
1472
1473 case V4L2_CID_PRIVATE_CHROMA_AGC:
1474 c->value = btv->opt_chroma_agc;
1475 break;
1476 case V4L2_CID_PRIVATE_COMBFILTER:
1477 c->value = btv->opt_combfilter;
1478 break;
1479 case V4L2_CID_PRIVATE_LUMAFILTER:
1480 c->value = btv->opt_lumafilter;
1481 break;
1482 case V4L2_CID_PRIVATE_AUTOMUTE:
1483 c->value = btv->opt_automute;
1484 break;
1485 case V4L2_CID_PRIVATE_AGC_CRUSH:
1486 c->value = btv->opt_adc_crush;
1487 break;
1488 case V4L2_CID_PRIVATE_VCR_HACK:
1489 c->value = btv->opt_vcr_hack;
1490 break;
1491 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1492 c->value = btv->opt_whitecrush_upper;
1493 break;
1494 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1495 c->value = btv->opt_whitecrush_lower;
1496 break;
1497 case V4L2_CID_PRIVATE_UV_RATIO:
1498 c->value = btv->opt_uv_ratio;
1499 break;
1500 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1501 c->value = btv->opt_full_luma_range;
1502 break;
1503 case V4L2_CID_PRIVATE_CORING:
1504 c->value = btv->opt_coring;
1505 break;
1506 default:
1507 return -EINVAL;
1508 }
1509 return 0;
1510}
1511
1512static int bttv_s_ctrl(struct file *file, void *f,
1513 struct v4l2_control *c)
1514{
1515 int err;
1516 int val;
1517 struct bttv_fh *fh = f;
1518 struct bttv *btv = fh->btv;
1519
1520 err = v4l2_prio_check(&btv->prio, &fh->prio);
1521 if (0 != err)
1522 return err;
1523
1524 switch (c->id) {
1525 case V4L2_CID_BRIGHTNESS:
1526 bt848_bright(btv, c->value);
1527 break;
1528 case V4L2_CID_HUE:
1529 bt848_hue(btv, c->value);
1530 break;
1531 case V4L2_CID_CONTRAST:
1532 bt848_contrast(btv, c->value);
1533 break;
1534 case V4L2_CID_SATURATION:
1535 bt848_sat(btv, c->value);
1536 break;
1537 case V4L2_CID_AUDIO_MUTE:
1538 audio_mute(btv, c->value);
1539 /* fall through */
1540 case V4L2_CID_AUDIO_VOLUME:
1541 if (btv->volume_gpio)
1542 btv->volume_gpio(btv, c->value);
1543
1544 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1545 break;
1546 case V4L2_CID_AUDIO_BALANCE:
1547 case V4L2_CID_AUDIO_BASS:
1548 case V4L2_CID_AUDIO_TREBLE:
1549 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1550 break;
1551
1552 case V4L2_CID_PRIVATE_CHROMA_AGC:
1553 btv->opt_chroma_agc = c->value;
1554 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
1555 btwrite(val, BT848_E_SCLOOP);
1556 btwrite(val, BT848_O_SCLOOP);
1557 break;
1558 case V4L2_CID_PRIVATE_COMBFILTER:
1559 btv->opt_combfilter = c->value;
1560 break;
1561 case V4L2_CID_PRIVATE_LUMAFILTER:
1562 btv->opt_lumafilter = c->value;
1563 if (btv->opt_lumafilter) {
1564 btand(~BT848_CONTROL_LDEC, BT848_E_CONTROL);
1565 btand(~BT848_CONTROL_LDEC, BT848_O_CONTROL);
1566 } else {
1567 btor(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1568 btor(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1569 }
1570 break;
1571 case V4L2_CID_PRIVATE_AUTOMUTE:
1572 btv->opt_automute = c->value;
1573 break;
1574 case V4L2_CID_PRIVATE_AGC_CRUSH:
1575 btv->opt_adc_crush = c->value;
1576 btwrite(BT848_ADC_RESERVED |
1577 (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
1578 BT848_ADC);
1579 break;
1580 case V4L2_CID_PRIVATE_VCR_HACK:
1581 btv->opt_vcr_hack = c->value;
1582 break;
1583 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1584 btv->opt_whitecrush_upper = c->value;
1585 btwrite(c->value, BT848_WC_UP);
1586 break;
1587 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1588 btv->opt_whitecrush_lower = c->value;
1589 btwrite(c->value, BT848_WC_DOWN);
1590 break;
1591 case V4L2_CID_PRIVATE_UV_RATIO:
1592 btv->opt_uv_ratio = c->value;
1593 bt848_sat(btv, btv->saturation);
1594 break;
1595 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1596 btv->opt_full_luma_range = c->value;
1597 btaor((c->value<<7), ~BT848_OFORM_RANGE, BT848_OFORM);
1598 break;
1599 case V4L2_CID_PRIVATE_CORING:
1600 btv->opt_coring = c->value;
1601 btaor((c->value<<5), ~BT848_OFORM_CORE32, BT848_OFORM);
1602 break;
1603 default:
1604 return -EINVAL;
1605 }
1606 return 0;
1607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609/* ----------------------------------------------------------------------- */
1610
1611void bttv_gpio_tracking(struct bttv *btv, char *comment)
1612{
1613 unsigned int outbits, data;
1614 outbits = btread(BT848_GPIO_OUT_EN);
1615 data = btread(BT848_GPIO_DATA);
1616 printk(KERN_DEBUG "bttv%d: gpio: en=%08x, out=%08x in=%08x [%s]\n",
1617 btv->c.nr,outbits,data & outbits, data & ~outbits, comment);
1618}
1619
1620static void bttv_field_count(struct bttv *btv)
1621{
1622 int need_count = 0;
1623
1624 if (btv->users)
1625 need_count++;
1626
1627 if (need_count) {
1628 /* start field counter */
1629 btor(BT848_INT_VSYNC,BT848_INT_MASK);
1630 } else {
1631 /* stop field counter */
1632 btand(~BT848_INT_VSYNC,BT848_INT_MASK);
1633 btv->field_count = 0;
1634 }
1635}
1636
1637static const struct bttv_format*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638format_by_fourcc(int fourcc)
1639{
1640 unsigned int i;
1641
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001642 for (i = 0; i < FORMATS; i++) {
1643 if (-1 == formats[i].fourcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 continue;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001645 if (formats[i].fourcc == fourcc)
1646 return formats+i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648 return NULL;
1649}
1650
1651/* ----------------------------------------------------------------------- */
1652/* misc helpers */
1653
1654static int
1655bttv_switch_overlay(struct bttv *btv, struct bttv_fh *fh,
1656 struct bttv_buffer *new)
1657{
1658 struct bttv_buffer *old;
1659 unsigned long flags;
1660 int retval = 0;
1661
1662 dprintk("switch_overlay: enter [new=%p]\n",new);
1663 if (new)
Brandon Philips0fc06862007-11-06 20:02:36 -03001664 new->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 spin_lock_irqsave(&btv->s_lock,flags);
1666 old = btv->screen;
1667 btv->screen = new;
1668 btv->loop_irq |= 1;
1669 bttv_set_dma(btv, 0x03);
1670 spin_unlock_irqrestore(&btv->s_lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (NULL != old) {
1672 dprintk("switch_overlay: old=%p state is %d\n",old,old->vb.state);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001673 bttv_dma_free(&fh->cap,btv, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 kfree(old);
1675 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03001676 if (NULL == new)
1677 free_btres(btv,fh,RESOURCE_OVERLAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 dprintk("switch_overlay: done\n");
1679 return retval;
1680}
1681
1682/* ----------------------------------------------------------------------- */
1683/* video4linux (1) interface */
1684
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001685static int bttv_prepare_buffer(struct videobuf_queue *q,struct bttv *btv,
1686 struct bttv_buffer *buf,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001687 const struct bttv_format *fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 unsigned int width, unsigned int height,
1689 enum v4l2_field field)
1690{
Michael Schimeke5bd0262007-01-18 16:17:39 -03001691 struct bttv_fh *fh = q->priv_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 int redo_dma_risc = 0;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001693 struct bttv_crop c;
1694 int norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 int rc;
1696
1697 /* check settings */
1698 if (NULL == fmt)
1699 return -EINVAL;
1700 if (fmt->btformat == BT848_COLOR_FMT_RAW) {
1701 width = RAW_BPL;
1702 height = RAW_LINES*2;
1703 if (width*height > buf->vb.bsize)
1704 return -EINVAL;
1705 buf->vb.size = buf->vb.bsize;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001706
1707 /* Make sure tvnorm and vbi_end remain consistent
1708 until we're done. */
1709 mutex_lock(&btv->lock);
1710
1711 norm = btv->tvnorm;
1712
1713 /* In this mode capturing always starts at defrect.top
1714 (default VDELAY), ignoring cropping parameters. */
1715 if (btv->vbi_end > bttv_tvnorms[norm].cropcap.defrect.top) {
1716 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001718 }
1719
1720 mutex_unlock(&btv->lock);
1721
1722 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1723 } else {
1724 mutex_lock(&btv->lock);
1725
1726 norm = btv->tvnorm;
1727 c = btv->crop[!!fh->do_crop];
1728
1729 mutex_unlock(&btv->lock);
1730
1731 if (width < c.min_scaled_width ||
1732 width > c.max_scaled_width ||
1733 height < c.min_scaled_height)
1734 return -EINVAL;
1735
1736 switch (field) {
1737 case V4L2_FIELD_TOP:
1738 case V4L2_FIELD_BOTTOM:
1739 case V4L2_FIELD_ALTERNATE:
1740 /* btv->crop counts frame lines. Max. scale
1741 factor is 16:1 for frames, 8:1 for fields. */
1742 if (height * 2 > c.max_scaled_height)
1743 return -EINVAL;
1744 break;
1745
1746 default:
1747 if (height > c.max_scaled_height)
1748 return -EINVAL;
1749 break;
1750 }
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 buf->vb.size = (width * height * fmt->depth) >> 3;
1753 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
1754 return -EINVAL;
1755 }
1756
1757 /* alloc + fill struct bttv_buffer (if changed) */
1758 if (buf->vb.width != width || buf->vb.height != height ||
1759 buf->vb.field != field ||
Michael Schimeke5bd0262007-01-18 16:17:39 -03001760 buf->tvnorm != norm || buf->fmt != fmt ||
1761 buf->crop.top != c.rect.top ||
1762 buf->crop.left != c.rect.left ||
1763 buf->crop.width != c.rect.width ||
1764 buf->crop.height != c.rect.height) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 buf->vb.width = width;
1766 buf->vb.height = height;
1767 buf->vb.field = field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001768 buf->tvnorm = norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 buf->fmt = fmt;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001770 buf->crop = c.rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 redo_dma_risc = 1;
1772 }
1773
1774 /* alloc risc memory */
Brandon Philips0fc06862007-11-06 20:02:36 -03001775 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 redo_dma_risc = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001777 if (0 != (rc = videobuf_iolock(q,&buf->vb,&btv->fbuf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto fail;
1779 }
1780
1781 if (redo_dma_risc)
1782 if (0 != (rc = bttv_buffer_risc(btv,buf)))
1783 goto fail;
1784
Brandon Philips0fc06862007-11-06 20:02:36 -03001785 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return 0;
1787
1788 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001789 bttv_dma_free(q,btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return rc;
1791}
1792
1793static int
1794buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1795{
1796 struct bttv_fh *fh = q->priv_data;
1797
1798 *size = fh->fmt->depth*fh->width*fh->height >> 3;
1799 if (0 == *count)
1800 *count = gbuffers;
1801 while (*size * *count > gbuffers * gbufsize)
1802 (*count)--;
1803 return 0;
1804}
1805
1806static int
1807buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
1808 enum v4l2_field field)
1809{
1810 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1811 struct bttv_fh *fh = q->priv_data;
1812
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001813 return bttv_prepare_buffer(q,fh->btv, buf, fh->fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 fh->width, fh->height, field);
1815}
1816
1817static void
1818buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1819{
1820 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1821 struct bttv_fh *fh = q->priv_data;
1822 struct bttv *btv = fh->btv;
1823
Brandon Philips0fc06862007-11-06 20:02:36 -03001824 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 list_add_tail(&buf->vb.queue,&btv->capture);
1826 if (!btv->curr.frame_irq) {
1827 btv->loop_irq |= 1;
1828 bttv_set_dma(btv, 0x03);
1829 }
1830}
1831
1832static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1833{
1834 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1835 struct bttv_fh *fh = q->priv_data;
1836
Michael Schimekfeaba7a2007-01-26 08:30:05 -03001837 bttv_dma_free(q,fh->btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
1840static struct videobuf_queue_ops bttv_video_qops = {
1841 .buf_setup = buffer_setup,
1842 .buf_prepare = buffer_prepare,
1843 .buf_queue = buffer_queue,
1844 .buf_release = buffer_release,
1845};
1846
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001847static int bttv_s_std(struct file *file, void *priv, v4l2_std_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001849 struct bttv_fh *fh = priv;
1850 struct bttv *btv = fh->btv;
1851 unsigned int i;
1852 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001854 err = v4l2_prio_check(&btv->prio, &fh->prio);
1855 if (0 != err)
1856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001858 for (i = 0; i < BTTV_TVNORMS; i++)
1859 if (*id & bttv_tvnorms[i].v4l2_id)
1860 break;
1861 if (i == BTTV_TVNORMS)
1862 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001864 mutex_lock(&btv->lock);
1865 set_tvnorm(btv, i);
1866 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001868 return 0;
1869}
1870
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001871static int bttv_querystd(struct file *file, void *f, v4l2_std_id *id)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001872{
1873 struct bttv_fh *fh = f;
1874 struct bttv *btv = fh->btv;
1875
1876 if (btread(BT848_DSTATUS) & BT848_DSTATUS_NUML)
1877 *id = V4L2_STD_625_50;
1878 else
1879 *id = V4L2_STD_525_60;
1880 return 0;
1881}
1882
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001883static int bttv_enum_input(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001884 struct v4l2_input *i)
1885{
1886 struct bttv_fh *fh = priv;
1887 struct bttv *btv = fh->btv;
1888 unsigned int n;
1889
1890 n = i->index;
1891
1892 if (n >= bttv_tvcards[btv->c.type].video_inputs)
1893 return -EINVAL;
1894
1895 memset(i, 0, sizeof(*i));
1896
1897 i->index = n;
1898 i->type = V4L2_INPUT_TYPE_CAMERA;
1899 i->audioset = 1;
1900
1901 if (i->index == bttv_tvcards[btv->c.type].tuner) {
1902 sprintf(i->name, "Television");
1903 i->type = V4L2_INPUT_TYPE_TUNER;
1904 i->tuner = 0;
1905 } else if (i->index == btv->svhs) {
1906 sprintf(i->name, "S-Video");
1907 } else {
1908 sprintf(i->name, "Composite%d", i->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
1910
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001911 if (i->index == btv->input) {
1912 __u32 dstatus = btread(BT848_DSTATUS);
1913 if (0 == (dstatus & BT848_DSTATUS_PRES))
1914 i->status |= V4L2_IN_ST_NO_SIGNAL;
1915 if (0 == (dstatus & BT848_DSTATUS_HLOC))
1916 i->status |= V4L2_IN_ST_NO_H_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001919 for (n = 0; n < BTTV_TVNORMS; n++)
1920 i->std |= bttv_tvnorms[n].v4l2_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001922 return 0;
1923}
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001924
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001925static int bttv_g_input(struct file *file, void *priv, unsigned int *i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001926{
1927 struct bttv_fh *fh = priv;
1928 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001930 *i = btv->input;
1931 return 0;
1932}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001934static int bttv_s_input(struct file *file, void *priv, unsigned int i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001935{
1936 struct bttv_fh *fh = priv;
1937 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001939 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001941 err = v4l2_prio_check(&btv->prio, &fh->prio);
1942 if (0 != err)
1943 return err;
1944
1945 if (i > bttv_tvcards[btv->c.type].video_inputs)
1946 return -EINVAL;
1947
1948 mutex_lock(&btv->lock);
1949 set_input(btv, i, btv->tvnorm);
1950 mutex_unlock(&btv->lock);
1951 return 0;
1952}
1953
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001954static int bttv_s_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001955 struct v4l2_tuner *t)
1956{
1957 struct bttv_fh *fh = priv;
1958 struct bttv *btv = fh->btv;
1959 int err;
1960
1961 err = v4l2_prio_check(&btv->prio, &fh->prio);
1962 if (0 != err)
1963 return err;
1964
1965 if (UNSET == bttv_tvcards[btv->c.type].tuner)
1966 return -EINVAL;
1967
1968 if (0 != t->index)
1969 return -EINVAL;
1970
1971 mutex_lock(&btv->lock);
1972 bttv_call_i2c_clients(btv, VIDIOC_S_TUNER, t);
1973
1974 if (btv->audio_mode_gpio)
1975 btv->audio_mode_gpio(btv, t, 1);
1976
1977 mutex_unlock(&btv->lock);
1978
1979 return 0;
1980}
1981
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001982static int bttv_g_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001983 struct v4l2_frequency *f)
1984{
1985 struct bttv_fh *fh = priv;
1986 struct bttv *btv = fh->btv;
1987 int err;
1988
1989 err = v4l2_prio_check(&btv->prio, &fh->prio);
1990 if (0 != err)
1991 return err;
1992
Robert Fitzsimons1b069012008-04-01 11:41:54 -03001993 f->type = btv->radio_user ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001994 f->frequency = btv->freq;
1995
1996 return 0;
1997}
1998
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001999static int bttv_s_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002000 struct v4l2_frequency *f)
2001{
2002 struct bttv_fh *fh = priv;
2003 struct bttv *btv = fh->btv;
2004 int err;
2005
2006 err = v4l2_prio_check(&btv->prio, &fh->prio);
2007 if (0 != err)
2008 return err;
2009
2010 if (unlikely(f->tuner != 0))
2011 return -EINVAL;
Robert Fitzsimons1b069012008-04-01 11:41:54 -03002012 if (unlikely(f->type != (btv->radio_user
2013 ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV)))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002014 return -EINVAL;
2015 mutex_lock(&btv->lock);
2016 btv->freq = f->frequency;
2017 bttv_call_i2c_clients(btv, VIDIOC_S_FREQUENCY, f);
2018 if (btv->has_matchbox && btv->radio_user)
2019 tea5757_set_freq(btv, btv->freq);
2020 mutex_unlock(&btv->lock);
2021 return 0;
2022}
2023
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002024static int bttv_log_status(struct file *file, void *f)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002025{
2026 struct bttv_fh *fh = f;
2027 struct bttv *btv = fh->btv;
2028
2029 printk(KERN_INFO "bttv%d: ======== START STATUS CARD #%d ========\n",
2030 btv->c.nr, btv->c.nr);
2031 bttv_call_i2c_clients(btv, VIDIOC_LOG_STATUS, NULL);
2032 printk(KERN_INFO "bttv%d: ======== END STATUS CARD #%d ========\n",
2033 btv->c.nr, btv->c.nr);
2034 return 0;
2035}
2036
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002037#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002038static int bttv_g_register(struct file *file, void *f,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002039 struct v4l2_dbg_register *reg)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002040{
2041 struct bttv_fh *fh = f;
2042 struct bttv *btv = fh->btv;
2043
2044 if (!capable(CAP_SYS_ADMIN))
2045 return -EPERM;
2046
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002047 if (!v4l2_chip_match_host(&reg->match))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002048 return -EINVAL;
2049
2050 /* bt848 has a 12-bit register space */
2051 reg->reg &= 0xfff;
2052 reg->val = btread(reg->reg);
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002053 reg->size = 1;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002054
2055 return 0;
2056}
2057
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002058static int bttv_s_register(struct file *file, void *f,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002059 struct v4l2_dbg_register *reg)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002060{
2061 struct bttv_fh *fh = f;
2062 struct bttv *btv = fh->btv;
2063
2064 if (!capable(CAP_SYS_ADMIN))
2065 return -EPERM;
2066
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002067 if (!v4l2_chip_match_host(&reg->match))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002068 return -EINVAL;
2069
2070 /* bt848 has a 12-bit register space */
2071 reg->reg &= 0xfff;
2072 btwrite(reg->val, reg->reg);
2073
2074 return 0;
2075}
2076#endif
2077
Michael Schimeke5bd0262007-01-18 16:17:39 -03002078/* Given cropping boundaries b and the scaled width and height of a
2079 single field or frame, which must not exceed hardware limits, this
2080 function adjusts the cropping parameters c. */
2081static void
2082bttv_crop_adjust (struct bttv_crop * c,
2083 const struct v4l2_rect * b,
2084 __s32 width,
2085 __s32 height,
2086 enum v4l2_field field)
2087{
2088 __s32 frame_height = height << !V4L2_FIELD_HAS_BOTH(field);
2089 __s32 max_left;
2090 __s32 max_top;
2091
2092 if (width < c->min_scaled_width) {
2093 /* Max. hor. scale factor 16:1. */
2094 c->rect.width = width * 16;
2095 } else if (width > c->max_scaled_width) {
2096 /* Min. hor. scale factor 1:1. */
2097 c->rect.width = width;
2098
2099 max_left = b->left + b->width - width;
2100 max_left = min(max_left, (__s32) MAX_HDELAY);
2101 if (c->rect.left > max_left)
2102 c->rect.left = max_left;
2103 }
2104
2105 if (height < c->min_scaled_height) {
2106 /* Max. vert. scale factor 16:1, single fields 8:1. */
2107 c->rect.height = height * 16;
2108 } else if (frame_height > c->max_scaled_height) {
2109 /* Min. vert. scale factor 1:1.
2110 Top and height count field lines times two. */
2111 c->rect.height = (frame_height + 1) & ~1;
2112
2113 max_top = b->top + b->height - c->rect.height;
2114 if (c->rect.top > max_top)
2115 c->rect.top = max_top;
2116 }
2117
2118 bttv_crop_calc_limits(c);
2119}
2120
2121/* Returns an error if scaling to a frame or single field with the given
2122 width and height is not possible with the current cropping parameters
2123 and width aligned according to width_mask. If adjust_size is TRUE the
2124 function may adjust the width and/or height instead, rounding width
2125 to (width + width_bias) & width_mask. If adjust_crop is TRUE it may
2126 also adjust the current cropping parameters to get closer to the
2127 desired image size. */
2128static int
2129limit_scaled_size (struct bttv_fh * fh,
2130 __s32 * width,
2131 __s32 * height,
2132 enum v4l2_field field,
2133 unsigned int width_mask,
2134 unsigned int width_bias,
2135 int adjust_size,
2136 int adjust_crop)
2137{
2138 struct bttv *btv = fh->btv;
2139 const struct v4l2_rect *b;
2140 struct bttv_crop *c;
2141 __s32 min_width;
2142 __s32 min_height;
2143 __s32 max_width;
2144 __s32 max_height;
2145 int rc;
2146
2147 BUG_ON((int) width_mask >= 0 ||
2148 width_bias >= (unsigned int) -width_mask);
2149
2150 /* Make sure tvnorm, vbi_end and the current cropping parameters
2151 remain consistent until we're done. */
2152 mutex_lock(&btv->lock);
2153
2154 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
2155
2156 /* Do crop - use current, don't - use default parameters. */
2157 c = &btv->crop[!!fh->do_crop];
2158
2159 if (fh->do_crop
2160 && adjust_size
2161 && adjust_crop
2162 && !locked_btres(btv, VIDEO_RESOURCES)) {
2163 min_width = 48;
2164 min_height = 32;
2165
2166 /* We cannot scale up. When the scaled image is larger
2167 than crop.rect we adjust the crop.rect as required
2168 by the V4L2 spec, hence cropcap.bounds are our limit. */
2169 max_width = min(b->width, (__s32) MAX_HACTIVE);
2170 max_height = b->height;
2171
2172 /* We cannot capture the same line as video and VBI data.
2173 Note btv->vbi_end is really a minimum, see
2174 bttv_vbi_try_fmt(). */
2175 if (btv->vbi_end > b->top) {
2176 max_height -= btv->vbi_end - b->top;
2177 rc = -EBUSY;
2178 if (min_height > max_height)
2179 goto fail;
2180 }
2181 } else {
2182 rc = -EBUSY;
2183 if (btv->vbi_end > c->rect.top)
2184 goto fail;
2185
2186 min_width = c->min_scaled_width;
2187 min_height = c->min_scaled_height;
2188 max_width = c->max_scaled_width;
2189 max_height = c->max_scaled_height;
2190
2191 adjust_crop = 0;
2192 }
2193
2194 min_width = (min_width - width_mask - 1) & width_mask;
2195 max_width = max_width & width_mask;
2196
2197 /* Max. scale factor is 16:1 for frames, 8:1 for fields. */
2198 min_height = min_height;
2199 /* Min. scale factor is 1:1. */
2200 max_height >>= !V4L2_FIELD_HAS_BOTH(field);
2201
2202 if (adjust_size) {
2203 *width = clamp(*width, min_width, max_width);
2204 *height = clamp(*height, min_height, max_height);
2205
2206 /* Round after clamping to avoid overflow. */
2207 *width = (*width + width_bias) & width_mask;
2208
2209 if (adjust_crop) {
2210 bttv_crop_adjust(c, b, *width, *height, field);
2211
2212 if (btv->vbi_end > c->rect.top) {
2213 /* Move the crop window out of the way. */
2214 c->rect.top = btv->vbi_end;
2215 }
2216 }
2217 } else {
2218 rc = -EINVAL;
2219 if (*width < min_width ||
2220 *height < min_height ||
2221 *width > max_width ||
2222 *height > max_height ||
2223 0 != (*width & ~width_mask))
2224 goto fail;
2225 }
2226
2227 rc = 0; /* success */
2228
2229 fail:
2230 mutex_unlock(&btv->lock);
2231
2232 return rc;
2233}
2234
2235/* Returns an error if the given overlay window dimensions are not
2236 possible with the current cropping parameters. If adjust_size is
2237 TRUE the function may adjust the window width and/or height
2238 instead, however it always rounds the horizontal position and
2239 width as btcx_align() does. If adjust_crop is TRUE the function
2240 may also adjust the current cropping parameters to get closer
2241 to the desired window size. */
2242static int
2243verify_window (struct bttv_fh * fh,
2244 struct v4l2_window * win,
2245 int adjust_size,
2246 int adjust_crop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 enum v4l2_field field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002249 unsigned int width_mask;
2250 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 if (win->w.width < 48 || win->w.height < 32)
2253 return -EINVAL;
2254 if (win->clipcount > 2048)
2255 return -EINVAL;
2256
2257 field = win->field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 if (V4L2_FIELD_ANY == field) {
Michael Schimeke5bd0262007-01-18 16:17:39 -03002260 __s32 height2;
2261
2262 height2 = fh->btv->crop[!!fh->do_crop].rect.height >> 1;
2263 field = (win->w.height > height2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 ? V4L2_FIELD_INTERLACED
2265 : V4L2_FIELD_TOP;
2266 }
2267 switch (field) {
2268 case V4L2_FIELD_TOP:
2269 case V4L2_FIELD_BOTTOM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 case V4L2_FIELD_INTERLACED:
2271 break;
2272 default:
2273 return -EINVAL;
2274 }
2275
Michael Schimeke5bd0262007-01-18 16:17:39 -03002276 /* 4-byte alignment. */
2277 if (NULL == fh->ovfmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002279 width_mask = ~0;
2280 switch (fh->ovfmt->depth) {
2281 case 8:
2282 case 24:
2283 width_mask = ~3;
2284 break;
2285 case 16:
2286 width_mask = ~1;
2287 break;
2288 case 32:
2289 break;
2290 default:
2291 BUG();
2292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Michael Schimeke5bd0262007-01-18 16:17:39 -03002294 win->w.width -= win->w.left & ~width_mask;
2295 win->w.left = (win->w.left - width_mask - 1) & width_mask;
2296
2297 rc = limit_scaled_size(fh, &win->w.width, &win->w.height,
2298 field, width_mask,
2299 /* width_bias: round down */ 0,
2300 adjust_size, adjust_crop);
2301 if (0 != rc)
2302 return rc;
2303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 win->field = field;
2305 return 0;
2306}
2307
2308static int setup_window(struct bttv_fh *fh, struct bttv *btv,
2309 struct v4l2_window *win, int fixup)
2310{
2311 struct v4l2_clip *clips = NULL;
2312 int n,size,retval = 0;
2313
2314 if (NULL == fh->ovfmt)
2315 return -EINVAL;
2316 if (!(fh->ovfmt->flags & FORMAT_FLAGS_PACKED))
2317 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002318 retval = verify_window(fh, win,
2319 /* adjust_size */ fixup,
2320 /* adjust_crop */ fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (0 != retval)
2322 return retval;
2323
2324 /* copy clips -- luckily v4l1 + v4l2 are binary
2325 compatible here ...*/
2326 n = win->clipcount;
2327 size = sizeof(*clips)*(n+4);
2328 clips = kmalloc(size,GFP_KERNEL);
2329 if (NULL == clips)
2330 return -ENOMEM;
2331 if (n > 0) {
2332 if (copy_from_user(clips,win->clips,sizeof(struct v4l2_clip)*n)) {
2333 kfree(clips);
2334 return -EFAULT;
2335 }
2336 }
2337 /* clip against screen */
2338 if (NULL != btv->fbuf.base)
2339 n = btcx_screen_clips(btv->fbuf.fmt.width, btv->fbuf.fmt.height,
2340 &win->w, clips, n);
2341 btcx_sort_clips(clips,n);
2342
2343 /* 4-byte alignments */
2344 switch (fh->ovfmt->depth) {
2345 case 8:
2346 case 24:
2347 btcx_align(&win->w, clips, n, 3);
2348 break;
2349 case 16:
2350 btcx_align(&win->w, clips, n, 1);
2351 break;
2352 case 32:
2353 /* no alignment fixups needed */
2354 break;
2355 default:
2356 BUG();
2357 }
2358
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002359 mutex_lock(&fh->cap.vb_lock);
2360 kfree(fh->ov.clips);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 fh->ov.clips = clips;
2362 fh->ov.nclips = n;
2363
2364 fh->ov.w = win->w;
2365 fh->ov.field = win->field;
2366 fh->ov.setup_ok = 1;
2367 btv->init.ov.w.width = win->w.width;
2368 btv->init.ov.w.height = win->w.height;
2369 btv->init.ov.field = win->field;
2370
2371 /* update overlay if needed */
2372 retval = 0;
2373 if (check_btres(fh, RESOURCE_OVERLAY)) {
2374 struct bttv_buffer *new;
2375
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002376 new = videobuf_sg_alloc(sizeof(*new));
Michael Schimeke5bd0262007-01-18 16:17:39 -03002377 new->crop = btv->crop[!!fh->do_crop].rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2379 retval = bttv_switch_overlay(btv,fh,new);
2380 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002381 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return retval;
2383}
2384
2385/* ----------------------------------------------------------------------- */
2386
2387static struct videobuf_queue* bttv_queue(struct bttv_fh *fh)
2388{
2389 struct videobuf_queue* q = NULL;
2390
2391 switch (fh->type) {
2392 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2393 q = &fh->cap;
2394 break;
2395 case V4L2_BUF_TYPE_VBI_CAPTURE:
2396 q = &fh->vbi;
2397 break;
2398 default:
2399 BUG();
2400 }
2401 return q;
2402}
2403
2404static int bttv_resource(struct bttv_fh *fh)
2405{
2406 int res = 0;
2407
2408 switch (fh->type) {
2409 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Michael Schimeke5bd0262007-01-18 16:17:39 -03002410 res = RESOURCE_VIDEO_STREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 break;
2412 case V4L2_BUF_TYPE_VBI_CAPTURE:
2413 res = RESOURCE_VBI;
2414 break;
2415 default:
2416 BUG();
2417 }
2418 return res;
2419}
2420
2421static int bttv_switch_type(struct bttv_fh *fh, enum v4l2_buf_type type)
2422{
2423 struct videobuf_queue *q = bttv_queue(fh);
2424 int res = bttv_resource(fh);
2425
2426 if (check_btres(fh,res))
2427 return -EBUSY;
2428 if (videobuf_queue_is_busy(q))
2429 return -EBUSY;
2430 fh->type = type;
2431 return 0;
2432}
2433
Michael H. Schimekc87c9482005-12-01 00:51:33 -08002434static void
2435pix_format_set_size (struct v4l2_pix_format * f,
2436 const struct bttv_format * fmt,
2437 unsigned int width,
2438 unsigned int height)
2439{
2440 f->width = width;
2441 f->height = height;
2442
2443 if (fmt->flags & FORMAT_FLAGS_PLANAR) {
2444 f->bytesperline = width; /* Y plane */
2445 f->sizeimage = (width * height * fmt->depth) >> 3;
2446 } else {
2447 f->bytesperline = (width * fmt->depth) >> 3;
2448 f->sizeimage = height * f->bytesperline;
2449 }
2450}
2451
Hans Verkuil78b526a2008-05-28 12:16:41 -03002452static int bttv_g_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002453 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002455 struct bttv_fh *fh = priv;
2456
2457 pix_format_set_size(&f->fmt.pix, fh->fmt,
2458 fh->width, fh->height);
2459 f->fmt.pix.field = fh->cap.field;
2460 f->fmt.pix.pixelformat = fh->fmt->fourcc;
2461
2462 return 0;
2463}
2464
Hans Verkuil78b526a2008-05-28 12:16:41 -03002465static int bttv_g_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002466 struct v4l2_format *f)
2467{
2468 struct bttv_fh *fh = priv;
2469
2470 f->fmt.win.w = fh->ov.w;
2471 f->fmt.win.field = fh->ov.field;
2472
2473 return 0;
2474}
2475
Hans Verkuil78b526a2008-05-28 12:16:41 -03002476static int bttv_try_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002477 struct v4l2_format *f)
2478{
2479 const struct bttv_format *fmt;
2480 struct bttv_fh *fh = priv;
2481 struct bttv *btv = fh->btv;
2482 enum v4l2_field field;
2483 __s32 width, height;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002484 int rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002485
2486 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
2487 if (NULL == fmt)
2488 return -EINVAL;
2489
2490 field = f->fmt.pix.field;
2491
2492 if (V4L2_FIELD_ANY == field) {
2493 __s32 height2;
2494
2495 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
2496 field = (f->fmt.pix.height > height2)
2497 ? V4L2_FIELD_INTERLACED
2498 : V4L2_FIELD_BOTTOM;
2499 }
2500
2501 if (V4L2_FIELD_SEQ_BT == field)
2502 field = V4L2_FIELD_SEQ_TB;
2503
2504 switch (field) {
2505 case V4L2_FIELD_TOP:
2506 case V4L2_FIELD_BOTTOM:
2507 case V4L2_FIELD_ALTERNATE:
2508 case V4L2_FIELD_INTERLACED:
2509 break;
2510 case V4L2_FIELD_SEQ_TB:
2511 if (fmt->flags & FORMAT_FLAGS_PLANAR)
2512 return -EINVAL;
2513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 default:
2515 return -EINVAL;
2516 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002517
2518 width = f->fmt.pix.width;
2519 height = f->fmt.pix.height;
2520
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002521 rc = limit_scaled_size(fh, &width, &height, field,
2522 /* width_mask: 4 pixels */ ~3,
2523 /* width_bias: nearest */ 2,
2524 /* adjust_size */ 1,
2525 /* adjust_crop */ 0);
2526 if (0 != rc)
2527 return rc;
2528
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002529 /* update data for the application */
2530 f->fmt.pix.field = field;
2531 pix_format_set_size(&f->fmt.pix, fmt, width, height);
2532
2533 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534}
2535
Hans Verkuil78b526a2008-05-28 12:16:41 -03002536static int bttv_try_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002537 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002539 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002541 return verify_window(fh, &f->fmt.win,
2542 /* adjust_size */ 1,
2543 /* adjust_crop */ 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
Hans Verkuil78b526a2008-05-28 12:16:41 -03002546static int bttv_s_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002547 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548{
2549 int retval;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002550 const struct bttv_format *fmt;
2551 struct bttv_fh *fh = priv;
2552 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002553 __s32 width, height;
2554 enum v4l2_field field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002556 retval = bttv_switch_type(fh, f->type);
2557 if (0 != retval)
2558 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Hans Verkuil78b526a2008-05-28 12:16:41 -03002560 retval = bttv_try_fmt_vid_cap(file, priv, f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002561 if (0 != retval)
2562 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002564 width = f->fmt.pix.width;
2565 height = f->fmt.pix.height;
2566 field = f->fmt.pix.field;
2567
2568 retval = limit_scaled_size(fh, &width, &height, f->fmt.pix.field,
2569 /* width_mask: 4 pixels */ ~3,
2570 /* width_bias: nearest */ 2,
2571 /* adjust_size */ 1,
2572 /* adjust_crop */ 1);
2573 if (0 != retval)
2574 return retval;
2575
2576 f->fmt.pix.field = field;
2577
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002578 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002580 /* update our state informations */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002581 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002582 fh->fmt = fmt;
2583 fh->cap.field = f->fmt.pix.field;
2584 fh->cap.last = V4L2_FIELD_NONE;
2585 fh->width = f->fmt.pix.width;
2586 fh->height = f->fmt.pix.height;
2587 btv->init.fmt = fmt;
2588 btv->init.width = f->fmt.pix.width;
2589 btv->init.height = f->fmt.pix.height;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002590 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002591
2592 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
Hans Verkuil78b526a2008-05-28 12:16:41 -03002595static int bttv_s_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002596 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002598 struct bttv_fh *fh = priv;
2599 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002601 if (no_overlay > 0) {
2602 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002603 return -EINVAL;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002604 }
Michael Krufky5e453dc2006-01-09 15:32:31 -02002605
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002606 return setup_window(fh, btv, &f->fmt.win, 1);
2607}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002609#ifdef CONFIG_VIDEO_V4L1_COMPAT
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002610static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
2611{
2612 int retval;
2613 unsigned int i;
2614 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002616 mutex_lock(&fh->cap.vb_lock);
Arjan van de Ven81b2dbc2008-05-20 09:53:52 -07002617 retval = __videobuf_mmap_setup(&fh->cap, gbuffers, gbufsize,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002618 V4L2_MEMORY_MMAP);
2619 if (retval < 0) {
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002620 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002621 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002623
2624 gbuffers = retval;
2625 memset(mbuf, 0, sizeof(*mbuf));
2626 mbuf->frames = gbuffers;
2627 mbuf->size = gbuffers * gbufsize;
2628
2629 for (i = 0; i < gbuffers; i++)
2630 mbuf->offsets[i] = i * gbufsize;
2631
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002632 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002633 return 0;
2634}
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002635#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002637static int bttv_querycap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002638 struct v4l2_capability *cap)
2639{
2640 struct bttv_fh *fh = priv;
2641 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002643 if (0 == v4l2)
2644 return -EINVAL;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07002645
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002646 strlcpy(cap->driver, "bttv", sizeof(cap->driver));
2647 strlcpy(cap->card, btv->video_dev->name, sizeof(cap->card));
2648 snprintf(cap->bus_info, sizeof(cap->bus_info),
2649 "PCI:%s", pci_name(btv->c.pci));
2650 cap->version = BTTV_VERSION_CODE;
2651 cap->capabilities =
2652 V4L2_CAP_VIDEO_CAPTURE |
2653 V4L2_CAP_VBI_CAPTURE |
2654 V4L2_CAP_READWRITE |
2655 V4L2_CAP_STREAMING;
2656 if (no_overlay <= 0)
2657 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002659 if (bttv_tvcards[btv->c.type].tuner != UNSET &&
2660 bttv_tvcards[btv->c.type].tuner != TUNER_ABSENT)
2661 cap->capabilities |= V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return 0;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002665static int bttv_enum_fmt_cap_ovr(struct v4l2_fmtdesc *f)
2666{
2667 int index = -1, i;
2668
2669 for (i = 0; i < FORMATS; i++) {
2670 if (formats[i].fourcc != -1)
2671 index++;
2672 if ((unsigned int)index == f->index)
2673 break;
2674 }
2675 if (FORMATS == i)
2676 return -EINVAL;
2677
2678 f->pixelformat = formats[i].fourcc;
2679 strlcpy(f->description, formats[i].name, sizeof(f->description));
2680
2681 return i;
2682}
2683
Hans Verkuil78b526a2008-05-28 12:16:41 -03002684static int bttv_enum_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002685 struct v4l2_fmtdesc *f)
2686{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002687 int rc = bttv_enum_fmt_cap_ovr(f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002688
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002689 if (rc < 0)
2690 return rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002691
2692 return 0;
2693}
2694
Hans Verkuil78b526a2008-05-28 12:16:41 -03002695static int bttv_enum_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002696 struct v4l2_fmtdesc *f)
2697{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002698 int rc;
2699
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002700 if (no_overlay > 0) {
2701 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2702 return -EINVAL;
2703 }
2704
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002705 rc = bttv_enum_fmt_cap_ovr(f);
2706
2707 if (rc < 0)
2708 return rc;
2709
2710 if (!(formats[rc].flags & FORMAT_FLAGS_PACKED))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002711 return -EINVAL;
2712
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002713 return 0;
2714}
2715
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002716static int bttv_g_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002717 struct v4l2_framebuffer *fb)
2718{
2719 struct bttv_fh *fh = f;
2720 struct bttv *btv = fh->btv;
2721
2722 *fb = btv->fbuf;
2723 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2724 if (fh->ovfmt)
2725 fb->fmt.pixelformat = fh->ovfmt->fourcc;
2726 return 0;
2727}
2728
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002729static int bttv_overlay(struct file *file, void *f, unsigned int on)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002730{
2731 struct bttv_fh *fh = f;
2732 struct bttv *btv = fh->btv;
2733 struct bttv_buffer *new;
2734 int retval;
2735
2736 if (on) {
2737 /* verify args */
2738 if (NULL == btv->fbuf.base)
2739 return -EINVAL;
2740 if (!fh->ov.setup_ok) {
2741 dprintk("bttv%d: overlay: !setup_ok\n", btv->c.nr);
2742 return -EINVAL;
2743 }
2744 }
2745
2746 if (!check_alloc_btres(btv, fh, RESOURCE_OVERLAY))
2747 return -EBUSY;
2748
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002749 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002750 if (on) {
2751 fh->ov.tvnorm = btv->tvnorm;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002752 new = videobuf_sg_alloc(sizeof(*new));
Robert Fitzsimons7c018802008-02-13 16:38:11 -03002753 new->crop = btv->crop[!!fh->do_crop].rect;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002754 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2755 } else {
2756 new = NULL;
2757 }
2758
2759 /* switch over */
2760 retval = bttv_switch_overlay(btv, fh, new);
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002761 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return retval;
2763}
2764
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002765static int bttv_s_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002766 struct v4l2_framebuffer *fb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002768 struct bttv_fh *fh = f;
2769 struct bttv *btv = fh->btv;
2770 const struct bttv_format *fmt;
2771 int retval;
2772
2773 if (!capable(CAP_SYS_ADMIN) &&
2774 !capable(CAP_SYS_RAWIO))
2775 return -EPERM;
2776
2777 /* check args */
2778 fmt = format_by_fourcc(fb->fmt.pixelformat);
2779 if (NULL == fmt)
2780 return -EINVAL;
2781 if (0 == (fmt->flags & FORMAT_FLAGS_PACKED))
2782 return -EINVAL;
2783
2784 retval = -EINVAL;
2785 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2786 __s32 width = fb->fmt.width;
2787 __s32 height = fb->fmt.height;
2788
2789 retval = limit_scaled_size(fh, &width, &height,
2790 V4L2_FIELD_INTERLACED,
2791 /* width_mask */ ~3,
2792 /* width_bias */ 2,
2793 /* adjust_size */ 0,
2794 /* adjust_crop */ 0);
2795 if (0 != retval)
2796 return retval;
2797 }
2798
2799 /* ok, accept it */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002800 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002801 btv->fbuf.base = fb->base;
2802 btv->fbuf.fmt.width = fb->fmt.width;
2803 btv->fbuf.fmt.height = fb->fmt.height;
2804 if (0 != fb->fmt.bytesperline)
2805 btv->fbuf.fmt.bytesperline = fb->fmt.bytesperline;
2806 else
2807 btv->fbuf.fmt.bytesperline = btv->fbuf.fmt.width*fmt->depth/8;
2808
2809 retval = 0;
2810 fh->ovfmt = fmt;
2811 btv->init.ovfmt = fmt;
2812 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2813 fh->ov.w.left = 0;
2814 fh->ov.w.top = 0;
2815 fh->ov.w.width = fb->fmt.width;
2816 fh->ov.w.height = fb->fmt.height;
2817 btv->init.ov.w.width = fb->fmt.width;
2818 btv->init.ov.w.height = fb->fmt.height;
2819 kfree(fh->ov.clips);
2820 fh->ov.clips = NULL;
2821 fh->ov.nclips = 0;
2822
2823 if (check_btres(fh, RESOURCE_OVERLAY)) {
2824 struct bttv_buffer *new;
2825
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002826 new = videobuf_sg_alloc(sizeof(*new));
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002827 new->crop = btv->crop[!!fh->do_crop].rect;
2828 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2829 retval = bttv_switch_overlay(btv, fh, new);
2830 }
2831 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002832 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002833 return retval;
2834}
2835
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002836static int bttv_reqbufs(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002837 struct v4l2_requestbuffers *p)
2838{
2839 struct bttv_fh *fh = priv;
2840 return videobuf_reqbufs(bttv_queue(fh), p);
2841}
2842
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002843static int bttv_querybuf(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002844 struct v4l2_buffer *b)
2845{
2846 struct bttv_fh *fh = priv;
2847 return videobuf_querybuf(bttv_queue(fh), b);
2848}
2849
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002850static int bttv_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002851{
2852 struct bttv_fh *fh = priv;
2853 struct bttv *btv = fh->btv;
2854 int res = bttv_resource(fh);
2855
2856 if (!check_alloc_btres(btv, fh, res))
2857 return -EBUSY;
2858
2859 return videobuf_qbuf(bttv_queue(fh), b);
2860}
2861
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002862static int bttv_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002863{
2864 struct bttv_fh *fh = priv;
2865 return videobuf_dqbuf(bttv_queue(fh), b,
2866 file->f_flags & O_NONBLOCK);
2867}
2868
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002869static int bttv_streamon(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002870 enum v4l2_buf_type type)
2871{
2872 struct bttv_fh *fh = priv;
2873 struct bttv *btv = fh->btv;
2874 int res = bttv_resource(fh);
2875
2876 if (!check_alloc_btres(btv, fh, res))
2877 return -EBUSY;
2878 return videobuf_streamon(bttv_queue(fh));
2879}
2880
2881
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002882static int bttv_streamoff(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002883 enum v4l2_buf_type type)
2884{
2885 struct bttv_fh *fh = priv;
2886 struct bttv *btv = fh->btv;
2887 int retval;
2888 int res = bttv_resource(fh);
2889
2890
2891 retval = videobuf_streamoff(bttv_queue(fh));
2892 if (retval < 0)
2893 return retval;
2894 free_btres(btv, fh, res);
2895 return 0;
2896}
2897
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002898static int bttv_queryctrl(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002899 struct v4l2_queryctrl *c)
2900{
2901 struct bttv_fh *fh = priv;
2902 struct bttv *btv = fh->btv;
2903 const struct v4l2_queryctrl *ctrl;
2904
2905 if ((c->id < V4L2_CID_BASE ||
2906 c->id >= V4L2_CID_LASTP1) &&
2907 (c->id < V4L2_CID_PRIVATE_BASE ||
2908 c->id >= V4L2_CID_PRIVATE_LASTP1))
2909 return -EINVAL;
2910
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002911 if (!btv->volume_gpio && (c->id == V4L2_CID_AUDIO_VOLUME))
2912 *c = no_ctl;
2913 else {
2914 ctrl = ctrl_by_id(c->id);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002915
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002916 *c = (NULL != ctrl) ? *ctrl : no_ctl;
2917 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002918
2919 return 0;
2920}
2921
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002922static int bttv_g_parm(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002923 struct v4l2_streamparm *parm)
2924{
2925 struct bttv_fh *fh = f;
2926 struct bttv *btv = fh->btv;
2927 struct v4l2_standard s;
2928
2929 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2930 return -EINVAL;
2931 v4l2_video_std_construct(&s, bttv_tvnorms[btv->tvnorm].v4l2_id,
2932 bttv_tvnorms[btv->tvnorm].name);
2933 parm->parm.capture.timeperframe = s.frameperiod;
2934 return 0;
2935}
2936
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002937static int bttv_g_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002938 struct v4l2_tuner *t)
2939{
2940 struct bttv_fh *fh = priv;
2941 struct bttv *btv = fh->btv;
2942
2943 if (UNSET == bttv_tvcards[btv->c.type].tuner)
2944 return -EINVAL;
2945 if (0 != t->index)
2946 return -EINVAL;
2947
2948 mutex_lock(&btv->lock);
2949 memset(t, 0, sizeof(*t));
2950 t->rxsubchans = V4L2_TUNER_SUB_MONO;
2951 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
2952 strcpy(t->name, "Television");
2953 t->capability = V4L2_TUNER_CAP_NORM;
2954 t->type = V4L2_TUNER_ANALOG_TV;
2955 if (btread(BT848_DSTATUS)&BT848_DSTATUS_HLOC)
2956 t->signal = 0xffff;
2957
2958 if (btv->audio_mode_gpio)
2959 btv->audio_mode_gpio(btv, t, 0);
2960
2961 mutex_unlock(&btv->lock);
2962 return 0;
2963}
2964
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002965static int bttv_g_priority(struct file *file, void *f, enum v4l2_priority *p)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002966{
2967 struct bttv_fh *fh = f;
2968 struct bttv *btv = fh->btv;
2969
2970 *p = v4l2_prio_max(&btv->prio);
2971
2972 return 0;
2973}
2974
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002975static int bttv_s_priority(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002976 enum v4l2_priority prio)
2977{
2978 struct bttv_fh *fh = f;
2979 struct bttv *btv = fh->btv;
2980
2981 return v4l2_prio_change(&btv->prio, &fh->prio, prio);
2982}
2983
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002984static int bttv_cropcap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002985 struct v4l2_cropcap *cap)
2986{
2987 struct bttv_fh *fh = priv;
2988 struct bttv *btv = fh->btv;
2989
2990 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
2991 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
2992 return -EINVAL;
2993
2994 *cap = bttv_tvnorms[btv->tvnorm].cropcap;
2995
2996 return 0;
2997}
2998
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002999static int bttv_g_crop(struct file *file, void *f, struct v4l2_crop *crop)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003000{
3001 struct bttv_fh *fh = f;
3002 struct bttv *btv = fh->btv;
3003
3004 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3005 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3006 return -EINVAL;
3007
3008 /* No fh->do_crop = 1; because btv->crop[1] may be
3009 inconsistent with fh->width or fh->height and apps
3010 do not expect a change here. */
3011
3012 crop->c = btv->crop[!!fh->do_crop].rect;
3013
3014 return 0;
3015}
3016
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003017static int bttv_s_crop(struct file *file, void *f, struct v4l2_crop *crop)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003018{
3019 struct bttv_fh *fh = f;
3020 struct bttv *btv = fh->btv;
3021 const struct v4l2_rect *b;
3022 int retval;
3023 struct bttv_crop c;
3024 __s32 b_left;
3025 __s32 b_top;
3026 __s32 b_right;
3027 __s32 b_bottom;
3028
3029 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3030 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3031 return -EINVAL;
3032
3033 retval = v4l2_prio_check(&btv->prio, &fh->prio);
3034 if (0 != retval)
3035 return retval;
3036
3037 /* Make sure tvnorm, vbi_end and the current cropping
3038 parameters remain consistent until we're done. Note
3039 read() may change vbi_end in check_alloc_btres(). */
3040 mutex_lock(&btv->lock);
3041
3042 retval = -EBUSY;
3043
3044 if (locked_btres(fh->btv, VIDEO_RESOURCES)) {
3045 mutex_unlock(&btv->lock);
3046 return retval;
3047 }
3048
3049 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
3050
3051 b_left = b->left;
3052 b_right = b_left + b->width;
3053 b_bottom = b->top + b->height;
3054
3055 b_top = max(b->top, btv->vbi_end);
3056 if (b_top + 32 >= b_bottom) {
3057 mutex_unlock(&btv->lock);
3058 return retval;
3059 }
3060
3061 /* Min. scaled size 48 x 32. */
3062 c.rect.left = clamp(crop->c.left, b_left, b_right - 48);
3063 c.rect.left = min(c.rect.left, (__s32) MAX_HDELAY);
3064
3065 c.rect.width = clamp(crop->c.width,
3066 48, b_right - c.rect.left);
3067
3068 c.rect.top = clamp(crop->c.top, b_top, b_bottom - 32);
3069 /* Top and height must be a multiple of two. */
3070 c.rect.top = (c.rect.top + 1) & ~1;
3071
3072 c.rect.height = clamp(crop->c.height,
3073 32, b_bottom - c.rect.top);
3074 c.rect.height = (c.rect.height + 1) & ~1;
3075
3076 bttv_crop_calc_limits(&c);
3077
3078 btv->crop[1] = c;
3079
3080 mutex_unlock(&btv->lock);
3081
3082 fh->do_crop = 1;
3083
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003084 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003085
3086 if (fh->width < c.min_scaled_width) {
3087 fh->width = c.min_scaled_width;
3088 btv->init.width = c.min_scaled_width;
3089 } else if (fh->width > c.max_scaled_width) {
3090 fh->width = c.max_scaled_width;
3091 btv->init.width = c.max_scaled_width;
3092 }
3093
3094 if (fh->height < c.min_scaled_height) {
3095 fh->height = c.min_scaled_height;
3096 btv->init.height = c.min_scaled_height;
3097 } else if (fh->height > c.max_scaled_height) {
3098 fh->height = c.max_scaled_height;
3099 btv->init.height = c.max_scaled_height;
3100 }
3101
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003102 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003103
3104 return 0;
3105}
3106
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003107static int bttv_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003108{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003109 if (unlikely(a->index))
3110 return -EINVAL;
3111
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003112 strcpy(a->name, "audio");
3113 return 0;
3114}
3115
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003116static int bttv_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003117{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003118 if (unlikely(a->index))
3119 return -EINVAL;
3120
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122}
3123
3124static ssize_t bttv_read(struct file *file, char __user *data,
3125 size_t count, loff_t *ppos)
3126{
3127 struct bttv_fh *fh = file->private_data;
3128 int retval = 0;
3129
3130 if (fh->btv->errors)
3131 bttv_reinit_bt848(fh->btv);
3132 dprintk("bttv%d: read count=%d type=%s\n",
3133 fh->btv->c.nr,(int)count,v4l2_type_names[fh->type]);
3134
3135 switch (fh->type) {
3136 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Michael Schimeke5bd0262007-01-18 16:17:39 -03003137 if (!check_alloc_btres(fh->btv, fh, RESOURCE_VIDEO_READ)) {
3138 /* VIDEO_READ in use by another fh,
3139 or VIDEO_STREAM by any fh. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 return -EBUSY;
Michael Schimeke5bd0262007-01-18 16:17:39 -03003141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 retval = videobuf_read_one(&fh->cap, data, count, ppos,
3143 file->f_flags & O_NONBLOCK);
Michael Schimeke5bd0262007-01-18 16:17:39 -03003144 free_btres(fh->btv, fh, RESOURCE_VIDEO_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 break;
3146 case V4L2_BUF_TYPE_VBI_CAPTURE:
3147 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3148 return -EBUSY;
3149 retval = videobuf_read_stream(&fh->vbi, data, count, ppos, 1,
3150 file->f_flags & O_NONBLOCK);
3151 break;
3152 default:
3153 BUG();
3154 }
3155 return retval;
3156}
3157
3158static unsigned int bttv_poll(struct file *file, poll_table *wait)
3159{
3160 struct bttv_fh *fh = file->private_data;
3161 struct bttv_buffer *buf;
3162 enum v4l2_field field;
3163
3164 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
3165 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3166 return POLLERR;
3167 return videobuf_poll_stream(file, &fh->vbi, wait);
3168 }
3169
Michael Schimeke5bd0262007-01-18 16:17:39 -03003170 if (check_btres(fh,RESOURCE_VIDEO_STREAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 /* streaming capture */
3172 if (list_empty(&fh->cap.stream))
3173 return POLLERR;
3174 buf = list_entry(fh->cap.stream.next,struct bttv_buffer,vb.stream);
3175 } else {
3176 /* read() capture */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003177 mutex_lock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 if (NULL == fh->cap.read_buf) {
3179 /* need to capture a new frame */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003180 if (locked_btres(fh->btv,RESOURCE_VIDEO_STREAM))
3181 goto err;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003182 fh->cap.read_buf = videobuf_sg_alloc(fh->cap.msize);
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003183 if (NULL == fh->cap.read_buf)
3184 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 fh->cap.read_buf->memory = V4L2_MEMORY_USERPTR;
3186 field = videobuf_next_field(&fh->cap);
3187 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,field)) {
Nickolay V. Shmyrev50ab5ed2005-12-01 00:51:32 -08003188 kfree (fh->cap.read_buf);
3189 fh->cap.read_buf = NULL;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003190 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 }
3192 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
3193 fh->cap.read_off = 0;
3194 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003195 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 buf = (struct bttv_buffer*)fh->cap.read_buf;
3197 }
3198
3199 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -03003200 if (buf->vb.state == VIDEOBUF_DONE ||
3201 buf->vb.state == VIDEOBUF_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 return POLLIN|POLLRDNORM;
3203 return 0;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003204err:
3205 mutex_unlock(&fh->cap.vb_lock);
3206 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207}
3208
Hans Verkuilbec43662008-12-30 06:58:20 -03003209static int bttv_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
Hans Verkuilbec43662008-12-30 06:58:20 -03003211 int minor = video_devdata(file)->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 struct bttv *btv = NULL;
3213 struct bttv_fh *fh;
3214 enum v4l2_buf_type type = 0;
3215 unsigned int i;
3216
3217 dprintk(KERN_DEBUG "bttv: open minor=%d\n",minor);
3218
Hans Verkuild56dc612008-07-30 08:43:36 -03003219 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 for (i = 0; i < bttv_num; i++) {
3221 if (bttvs[i].video_dev &&
3222 bttvs[i].video_dev->minor == minor) {
3223 btv = &bttvs[i];
3224 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3225 break;
3226 }
3227 if (bttvs[i].vbi_dev &&
3228 bttvs[i].vbi_dev->minor == minor) {
3229 btv = &bttvs[i];
3230 type = V4L2_BUF_TYPE_VBI_CAPTURE;
3231 break;
3232 }
3233 }
Hans Verkuild56dc612008-07-30 08:43:36 -03003234 if (NULL == btv) {
3235 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 dprintk(KERN_DEBUG "bttv%d: open called (type=%s)\n",
3240 btv->c.nr,v4l2_type_names[type]);
3241
3242 /* allocate per filehandle data */
3243 fh = kmalloc(sizeof(*fh),GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003244 if (NULL == fh) {
3245 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 file->private_data = fh;
3249 *fh = btv->init;
3250 fh->type = type;
3251 fh->ov.setup_ok = 0;
3252 v4l2_prio_open(&btv->prio,&fh->prio);
3253
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003254 videobuf_queue_sg_init(&fh->cap, &bttv_video_qops,
3255 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 V4L2_BUF_TYPE_VIDEO_CAPTURE,
3257 V4L2_FIELD_INTERLACED,
3258 sizeof(struct bttv_buffer),
3259 fh);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003260 videobuf_queue_sg_init(&fh->vbi, &bttv_vbi_qops,
3261 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 V4L2_BUF_TYPE_VBI_CAPTURE,
3263 V4L2_FIELD_SEQ_TB,
3264 sizeof(struct bttv_buffer),
3265 fh);
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03003266 set_tvnorm(btv,btv->tvnorm);
Mauro Carvalho Chehabb46a9c82008-08-05 10:12:35 -03003267 set_input(btv, btv->input, btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
3269 btv->users++;
Michael Schimeke5bd0262007-01-18 16:17:39 -03003270
3271 /* The V4L2 spec requires one global set of cropping parameters
3272 which only change on request. These are stored in btv->crop[1].
3273 However for compatibility with V4L apps and cropping unaware
3274 V4L2 apps we now reset the cropping parameters as seen through
3275 this fh, which is to say VIDIOC_G_CROP and scaling limit checks
3276 will use btv->crop[0], the default cropping parameters for the
3277 current video standard, and VIDIOC_S_FMT will not implicitely
3278 change the cropping parameters until VIDIOC_S_CROP has been
3279 called. */
3280 fh->do_crop = !reset_crop; /* module parameter */
3281
3282 /* Likewise there should be one global set of VBI capture
3283 parameters, but for compatibility with V4L apps and earlier
3284 driver versions each fh has its own parameters. */
3285 bttv_vbi_fmt_reset(&fh->vbi_fmt, btv->tvnorm);
3286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 bttv_field_count(btv);
Hans Verkuild56dc612008-07-30 08:43:36 -03003288 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 return 0;
3290}
3291
Hans Verkuilbec43662008-12-30 06:58:20 -03003292static int bttv_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
3294 struct bttv_fh *fh = file->private_data;
3295 struct bttv *btv = fh->btv;
3296
3297 /* turn off overlay */
3298 if (check_btres(fh, RESOURCE_OVERLAY))
3299 bttv_switch_overlay(btv,fh,NULL);
3300
3301 /* stop video capture */
Michael Schimeke5bd0262007-01-18 16:17:39 -03003302 if (check_btres(fh, RESOURCE_VIDEO_STREAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 videobuf_streamoff(&fh->cap);
Michael Schimeke5bd0262007-01-18 16:17:39 -03003304 free_btres(btv,fh,RESOURCE_VIDEO_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
3306 if (fh->cap.read_buf) {
3307 buffer_release(&fh->cap,fh->cap.read_buf);
3308 kfree(fh->cap.read_buf);
3309 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03003310 if (check_btres(fh, RESOURCE_VIDEO_READ)) {
3311 free_btres(btv, fh, RESOURCE_VIDEO_READ);
3312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
3314 /* stop vbi capture */
3315 if (check_btres(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -03003316 videobuf_stop(&fh->vbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 free_btres(btv,fh,RESOURCE_VBI);
3318 }
3319
3320 /* free stuff */
3321 videobuf_mmap_free(&fh->cap);
3322 videobuf_mmap_free(&fh->vbi);
3323 v4l2_prio_close(&btv->prio,&fh->prio);
3324 file->private_data = NULL;
3325 kfree(fh);
3326
3327 btv->users--;
3328 bttv_field_count(btv);
Mauro Carvalho Chehabb46a9c82008-08-05 10:12:35 -03003329
3330 if (!btv->users)
3331 audio_mute(btv, 1);
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 return 0;
3334}
3335
3336static int
3337bttv_mmap(struct file *file, struct vm_area_struct *vma)
3338{
3339 struct bttv_fh *fh = file->private_data;
3340
3341 dprintk("bttv%d: mmap type=%s 0x%lx+%ld\n",
3342 fh->btv->c.nr, v4l2_type_names[fh->type],
3343 vma->vm_start, vma->vm_end - vma->vm_start);
3344 return videobuf_mmap_mapper(bttv_queue(fh),vma);
3345}
3346
Hans Verkuilbec43662008-12-30 06:58:20 -03003347static const struct v4l2_file_operations bttv_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348{
3349 .owner = THIS_MODULE,
3350 .open = bttv_open,
3351 .release = bttv_release,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003352 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 .read = bttv_read,
3354 .mmap = bttv_mmap,
3355 .poll = bttv_poll,
3356};
3357
Hans Verkuila3998102008-07-21 02:57:38 -03003358static const struct v4l2_ioctl_ops bttv_ioctl_ops = {
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003359 .vidioc_querycap = bttv_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03003360 .vidioc_enum_fmt_vid_cap = bttv_enum_fmt_vid_cap,
3361 .vidioc_g_fmt_vid_cap = bttv_g_fmt_vid_cap,
3362 .vidioc_try_fmt_vid_cap = bttv_try_fmt_vid_cap,
3363 .vidioc_s_fmt_vid_cap = bttv_s_fmt_vid_cap,
3364 .vidioc_enum_fmt_vid_overlay = bttv_enum_fmt_vid_overlay,
3365 .vidioc_g_fmt_vid_overlay = bttv_g_fmt_vid_overlay,
3366 .vidioc_try_fmt_vid_overlay = bttv_try_fmt_vid_overlay,
3367 .vidioc_s_fmt_vid_overlay = bttv_s_fmt_vid_overlay,
Hans Verkuil78b526a2008-05-28 12:16:41 -03003368 .vidioc_g_fmt_vbi_cap = bttv_g_fmt_vbi_cap,
3369 .vidioc_try_fmt_vbi_cap = bttv_try_fmt_vbi_cap,
3370 .vidioc_s_fmt_vbi_cap = bttv_s_fmt_vbi_cap,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003371 .vidioc_g_audio = bttv_g_audio,
3372 .vidioc_s_audio = bttv_s_audio,
3373 .vidioc_cropcap = bttv_cropcap,
3374 .vidioc_reqbufs = bttv_reqbufs,
3375 .vidioc_querybuf = bttv_querybuf,
3376 .vidioc_qbuf = bttv_qbuf,
3377 .vidioc_dqbuf = bttv_dqbuf,
3378 .vidioc_s_std = bttv_s_std,
3379 .vidioc_enum_input = bttv_enum_input,
3380 .vidioc_g_input = bttv_g_input,
3381 .vidioc_s_input = bttv_s_input,
3382 .vidioc_queryctrl = bttv_queryctrl,
3383 .vidioc_g_ctrl = bttv_g_ctrl,
3384 .vidioc_s_ctrl = bttv_s_ctrl,
3385 .vidioc_streamon = bttv_streamon,
3386 .vidioc_streamoff = bttv_streamoff,
3387 .vidioc_g_tuner = bttv_g_tuner,
3388 .vidioc_s_tuner = bttv_s_tuner,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003389#ifdef CONFIG_VIDEO_V4L1_COMPAT
3390 .vidiocgmbuf = vidiocgmbuf,
3391#endif
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003392 .vidioc_g_crop = bttv_g_crop,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003393 .vidioc_s_crop = bttv_s_crop,
3394 .vidioc_g_fbuf = bttv_g_fbuf,
3395 .vidioc_s_fbuf = bttv_s_fbuf,
3396 .vidioc_overlay = bttv_overlay,
3397 .vidioc_g_priority = bttv_g_priority,
3398 .vidioc_s_priority = bttv_s_priority,
3399 .vidioc_g_parm = bttv_g_parm,
3400 .vidioc_g_frequency = bttv_g_frequency,
3401 .vidioc_s_frequency = bttv_s_frequency,
3402 .vidioc_log_status = bttv_log_status,
3403 .vidioc_querystd = bttv_querystd,
Zoltan Devai43846832008-01-14 13:24:38 -03003404#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003405 .vidioc_g_register = bttv_g_register,
3406 .vidioc_s_register = bttv_s_register,
Zoltan Devai43846832008-01-14 13:24:38 -03003407#endif
Hans Verkuila3998102008-07-21 02:57:38 -03003408};
3409
3410static struct video_device bttv_video_template = {
3411 .fops = &bttv_fops,
3412 .minor = -1,
3413 .ioctl_ops = &bttv_ioctl_ops,
3414 .tvnorms = BTTV_NORMS,
3415 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416};
3417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418/* ----------------------------------------------------------------------- */
3419/* radio interface */
3420
Hans Verkuilbec43662008-12-30 06:58:20 -03003421static int radio_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422{
Hans Verkuilbec43662008-12-30 06:58:20 -03003423 int minor = video_devdata(file)->minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 struct bttv *btv = NULL;
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003425 struct bttv_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 unsigned int i;
3427
3428 dprintk("bttv: open minor=%d\n",minor);
3429
Hans Verkuild56dc612008-07-30 08:43:36 -03003430 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 for (i = 0; i < bttv_num; i++) {
Jean Delvarec37396c2008-09-07 13:47:03 -03003432 if (bttvs[i].radio_dev && bttvs[i].radio_dev->minor == minor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 btv = &bttvs[i];
3434 break;
3435 }
3436 }
Hans Verkuild56dc612008-07-30 08:43:36 -03003437 if (NULL == btv) {
3438 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
3442 dprintk("bttv%d: open called (radio)\n",btv->c.nr);
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003443
3444 /* allocate per filehandle data */
3445 fh = kmalloc(sizeof(*fh), GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003446 if (NULL == fh) {
3447 unlock_kernel();
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003448 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003449 }
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003450 file->private_data = fh;
3451 *fh = btv->init;
3452 v4l2_prio_open(&btv->prio, &fh->prio);
3453
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003454 mutex_lock(&btv->lock);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 btv->radio_user++;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003457
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003458 bttv_call_i2c_clients(btv,AUDC_SET_RADIO,NULL);
3459 audio_input(btv,TVAUDIO_INPUT_RADIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003461 mutex_unlock(&btv->lock);
Hans Verkuild56dc612008-07-30 08:43:36 -03003462 unlock_kernel();
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464}
3465
Hans Verkuilbec43662008-12-30 06:58:20 -03003466static int radio_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003468 struct bttv_fh *fh = file->private_data;
3469 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003470 struct rds_command cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Udo Steinbergb15dd792009-01-02 17:34:28 -03003472 v4l2_prio_close(&btv->prio,&fh->prio);
Robert Fitzsimonsb9bc07a2008-04-10 09:40:31 -03003473 file->private_data = NULL;
3474 kfree(fh);
3475
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 btv->radio_user--;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003477
3478 bttv_call_i2c_clients(btv, RDS_CMD_CLOSE, &cmd);
3479
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 return 0;
3481}
3482
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003483static int radio_querycap(struct file *file, void *priv,
3484 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003486 struct bttv_fh *fh = priv;
3487 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003489 strcpy(cap->driver, "bttv");
3490 strlcpy(cap->card, btv->radio_dev->name, sizeof(cap->card));
3491 sprintf(cap->bus_info, "PCI:%s", pci_name(btv->c.pci));
3492 cap->version = BTTV_VERSION_CODE;
3493 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 return 0;
3496}
3497
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003498static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003500 struct bttv_fh *fh = priv;
3501 struct bttv *btv = fh->btv;
3502
3503 if (UNSET == bttv_tvcards[btv->c.type].tuner)
3504 return -EINVAL;
3505 if (0 != t->index)
3506 return -EINVAL;
3507 mutex_lock(&btv->lock);
3508 memset(t, 0, sizeof(*t));
3509 strcpy(t->name, "Radio");
3510 t->type = V4L2_TUNER_RADIO;
3511
3512 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3513
3514 if (btv->audio_mode_gpio)
3515 btv->audio_mode_gpio(btv, t, 0);
3516
3517 mutex_unlock(&btv->lock);
3518
3519 return 0;
3520}
3521
3522static int radio_enum_input(struct file *file, void *priv,
3523 struct v4l2_input *i)
3524{
3525 if (i->index != 0)
3526 return -EINVAL;
3527
3528 strcpy(i->name, "Radio");
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003529 i->type = V4L2_INPUT_TYPE_TUNER;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003530
3531 return 0;
3532}
3533
3534static int radio_g_audio(struct file *file, void *priv,
3535 struct v4l2_audio *a)
3536{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003537 if (unlikely(a->index))
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003538 return -EINVAL;
3539
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003540 strcpy(a->name, "Radio");
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003541
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003542 return 0;
3543}
3544
3545static int radio_s_tuner(struct file *file, void *priv,
3546 struct v4l2_tuner *t)
3547{
3548 struct bttv_fh *fh = priv;
3549 struct bttv *btv = fh->btv;
3550
3551 if (0 != t->index)
3552 return -EINVAL;
3553
3554 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3555 return 0;
3556}
3557
3558static int radio_s_audio(struct file *file, void *priv,
3559 struct v4l2_audio *a)
3560{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003561 if (unlikely(a->index))
3562 return -EINVAL;
3563
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003564 return 0;
3565}
3566
3567static int radio_s_input(struct file *filp, void *priv, unsigned int i)
3568{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003569 if (unlikely(i))
3570 return -EINVAL;
3571
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003572 return 0;
3573}
3574
3575static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
3576{
3577 return 0;
3578}
3579
3580static int radio_queryctrl(struct file *file, void *priv,
3581 struct v4l2_queryctrl *c)
3582{
3583 const struct v4l2_queryctrl *ctrl;
3584
3585 if (c->id < V4L2_CID_BASE ||
3586 c->id >= V4L2_CID_LASTP1)
3587 return -EINVAL;
3588
3589 if (c->id == V4L2_CID_AUDIO_MUTE) {
3590 ctrl = ctrl_by_id(c->id);
3591 *c = *ctrl;
3592 } else
3593 *c = no_ctl;
3594
3595 return 0;
3596}
3597
3598static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
3599{
3600 *i = 0;
3601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602}
3603
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003604static ssize_t radio_read(struct file *file, char __user *data,
3605 size_t count, loff_t *ppos)
3606{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003607 struct bttv_fh *fh = file->private_data;
3608 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003609 struct rds_command cmd;
3610 cmd.block_count = count/3;
3611 cmd.buffer = data;
3612 cmd.instance = file;
3613 cmd.result = -ENODEV;
3614
3615 bttv_call_i2c_clients(btv, RDS_CMD_READ, &cmd);
3616
3617 return cmd.result;
3618}
3619
3620static unsigned int radio_poll(struct file *file, poll_table *wait)
3621{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003622 struct bttv_fh *fh = file->private_data;
3623 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003624 struct rds_command cmd;
3625 cmd.instance = file;
3626 cmd.event_list = wait;
3627 cmd.result = -ENODEV;
3628 bttv_call_i2c_clients(btv, RDS_CMD_POLL, &cmd);
3629
3630 return cmd.result;
3631}
3632
Hans Verkuilbec43662008-12-30 06:58:20 -03003633static const struct v4l2_file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634{
3635 .owner = THIS_MODULE,
3636 .open = radio_open,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003637 .read = radio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 .release = radio_release,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003639 .ioctl = video_ioctl2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003640 .poll = radio_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641};
3642
Hans Verkuila3998102008-07-21 02:57:38 -03003643static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003644 .vidioc_querycap = radio_querycap,
3645 .vidioc_g_tuner = radio_g_tuner,
3646 .vidioc_enum_input = radio_enum_input,
3647 .vidioc_g_audio = radio_g_audio,
3648 .vidioc_s_tuner = radio_s_tuner,
3649 .vidioc_s_audio = radio_s_audio,
3650 .vidioc_s_input = radio_s_input,
3651 .vidioc_s_std = radio_s_std,
3652 .vidioc_queryctrl = radio_queryctrl,
3653 .vidioc_g_input = radio_g_input,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003654 .vidioc_g_ctrl = bttv_g_ctrl,
3655 .vidioc_s_ctrl = bttv_s_ctrl,
3656 .vidioc_g_frequency = bttv_g_frequency,
3657 .vidioc_s_frequency = bttv_s_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658};
3659
Hans Verkuila3998102008-07-21 02:57:38 -03003660static struct video_device radio_template = {
3661 .fops = &radio_fops,
3662 .minor = -1,
3663 .ioctl_ops = &radio_ioctl_ops,
3664};
3665
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666/* ----------------------------------------------------------------------- */
3667/* some debug code */
3668
Adrian Bunk408b6642005-05-01 08:59:29 -07003669static int bttv_risc_decode(u32 risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670{
3671 static char *instr[16] = {
3672 [ BT848_RISC_WRITE >> 28 ] = "write",
3673 [ BT848_RISC_SKIP >> 28 ] = "skip",
3674 [ BT848_RISC_WRITEC >> 28 ] = "writec",
3675 [ BT848_RISC_JUMP >> 28 ] = "jump",
3676 [ BT848_RISC_SYNC >> 28 ] = "sync",
3677 [ BT848_RISC_WRITE123 >> 28 ] = "write123",
3678 [ BT848_RISC_SKIP123 >> 28 ] = "skip123",
3679 [ BT848_RISC_WRITE1S23 >> 28 ] = "write1s23",
3680 };
3681 static int incr[16] = {
3682 [ BT848_RISC_WRITE >> 28 ] = 2,
3683 [ BT848_RISC_JUMP >> 28 ] = 2,
3684 [ BT848_RISC_SYNC >> 28 ] = 2,
3685 [ BT848_RISC_WRITE123 >> 28 ] = 5,
3686 [ BT848_RISC_SKIP123 >> 28 ] = 2,
3687 [ BT848_RISC_WRITE1S23 >> 28 ] = 3,
3688 };
3689 static char *bits[] = {
3690 "be0", "be1", "be2", "be3/resync",
3691 "set0", "set1", "set2", "set3",
3692 "clr0", "clr1", "clr2", "clr3",
3693 "irq", "res", "eol", "sol",
3694 };
3695 int i;
3696
3697 printk("0x%08x [ %s", risc,
3698 instr[risc >> 28] ? instr[risc >> 28] : "INVALID");
3699 for (i = ARRAY_SIZE(bits)-1; i >= 0; i--)
3700 if (risc & (1 << (i + 12)))
3701 printk(" %s",bits[i]);
3702 printk(" count=%d ]\n", risc & 0xfff);
3703 return incr[risc >> 28] ? incr[risc >> 28] : 1;
3704}
3705
Adrian Bunk408b6642005-05-01 08:59:29 -07003706static void bttv_risc_disasm(struct bttv *btv,
3707 struct btcx_riscmem *risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708{
3709 unsigned int i,j,n;
3710
3711 printk("%s: risc disasm: %p [dma=0x%08lx]\n",
3712 btv->c.name, risc->cpu, (unsigned long)risc->dma);
3713 for (i = 0; i < (risc->size >> 2); i += n) {
3714 printk("%s: 0x%lx: ", btv->c.name,
3715 (unsigned long)(risc->dma + (i<<2)));
Al Viro3aa71102008-06-22 14:20:09 -03003716 n = bttv_risc_decode(le32_to_cpu(risc->cpu[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 for (j = 1; j < n; j++)
3718 printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n",
3719 btv->c.name, (unsigned long)(risc->dma + ((i+j)<<2)),
3720 risc->cpu[i+j], j);
3721 if (0 == risc->cpu[i])
3722 break;
3723 }
3724}
3725
3726static void bttv_print_riscaddr(struct bttv *btv)
3727{
3728 printk(" main: %08Lx\n",
3729 (unsigned long long)btv->main.dma);
3730 printk(" vbi : o=%08Lx e=%08Lx\n",
3731 btv->cvbi ? (unsigned long long)btv->cvbi->top.dma : 0,
3732 btv->cvbi ? (unsigned long long)btv->cvbi->bottom.dma : 0);
3733 printk(" cap : o=%08Lx e=%08Lx\n",
3734 btv->curr.top ? (unsigned long long)btv->curr.top->top.dma : 0,
3735 btv->curr.bottom ? (unsigned long long)btv->curr.bottom->bottom.dma : 0);
3736 printk(" scr : o=%08Lx e=%08Lx\n",
3737 btv->screen ? (unsigned long long)btv->screen->top.dma : 0,
3738 btv->screen ? (unsigned long long)btv->screen->bottom.dma : 0);
3739 bttv_risc_disasm(btv, &btv->main);
3740}
3741
3742/* ----------------------------------------------------------------------- */
3743/* irq handler */
3744
3745static char *irq_name[] = {
3746 "FMTCHG", // format change detected (525 vs. 625)
3747 "VSYNC", // vertical sync (new field)
3748 "HSYNC", // horizontal sync
3749 "OFLOW", // chroma/luma AGC overflow
3750 "HLOCK", // horizontal lock changed
3751 "VPRES", // video presence changed
3752 "6", "7",
3753 "I2CDONE", // hw irc operation finished
3754 "GPINT", // gpio port triggered irq
3755 "10",
3756 "RISCI", // risc instruction triggered irq
3757 "FBUS", // pixel data fifo dropped data (high pci bus latencies)
3758 "FTRGT", // pixel data fifo overrun
3759 "FDSR", // fifo data stream resyncronisation
3760 "PPERR", // parity error (data transfer)
3761 "RIPERR", // parity error (read risc instructions)
3762 "PABORT", // pci abort
3763 "OCERR", // risc instruction error
3764 "SCERR", // syncronisation error
3765};
3766
3767static void bttv_print_irqbits(u32 print, u32 mark)
3768{
3769 unsigned int i;
3770
3771 printk("bits:");
3772 for (i = 0; i < ARRAY_SIZE(irq_name); i++) {
3773 if (print & (1 << i))
3774 printk(" %s",irq_name[i]);
3775 if (mark & (1 << i))
3776 printk("*");
3777 }
3778}
3779
3780static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc)
3781{
3782 printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n",
3783 btv->c.nr,
3784 (unsigned long)btv->main.dma,
Al Viro3aa71102008-06-22 14:20:09 -03003785 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_VBI+1]),
3786 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_FIELD+1]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 (unsigned long)rc);
3788
3789 if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) {
3790 printk("bttv%d: Oh, there (temporarely?) is no input signal. "
3791 "Ok, then this is harmless, don't worry ;)\n",
3792 btv->c.nr);
3793 return;
3794 }
3795 printk("bttv%d: Uhm. Looks like we have unusual high IRQ latencies.\n",
3796 btv->c.nr);
3797 printk("bttv%d: Lets try to catch the culpit red-handed ...\n",
3798 btv->c.nr);
3799 dump_stack();
3800}
3801
3802static int
3803bttv_irq_next_video(struct bttv *btv, struct bttv_buffer_set *set)
3804{
3805 struct bttv_buffer *item;
3806
3807 memset(set,0,sizeof(*set));
3808
3809 /* capture request ? */
3810 if (!list_empty(&btv->capture)) {
3811 set->frame_irq = 1;
3812 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3813 if (V4L2_FIELD_HAS_TOP(item->vb.field))
3814 set->top = item;
3815 if (V4L2_FIELD_HAS_BOTTOM(item->vb.field))
3816 set->bottom = item;
3817
3818 /* capture request for other field ? */
3819 if (!V4L2_FIELD_HAS_BOTH(item->vb.field) &&
3820 (item->vb.queue.next != &btv->capture)) {
3821 item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue);
3822 if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) {
3823 if (NULL == set->top &&
3824 V4L2_FIELD_TOP == item->vb.field) {
3825 set->top = item;
3826 }
3827 if (NULL == set->bottom &&
3828 V4L2_FIELD_BOTTOM == item->vb.field) {
3829 set->bottom = item;
3830 }
3831 if (NULL != set->top && NULL != set->bottom)
3832 set->top_irq = 2;
3833 }
3834 }
3835 }
3836
3837 /* screen overlay ? */
3838 if (NULL != btv->screen) {
3839 if (V4L2_FIELD_HAS_BOTH(btv->screen->vb.field)) {
3840 if (NULL == set->top && NULL == set->bottom) {
3841 set->top = btv->screen;
3842 set->bottom = btv->screen;
3843 }
3844 } else {
3845 if (V4L2_FIELD_TOP == btv->screen->vb.field &&
3846 NULL == set->top) {
3847 set->top = btv->screen;
3848 }
3849 if (V4L2_FIELD_BOTTOM == btv->screen->vb.field &&
3850 NULL == set->bottom) {
3851 set->bottom = btv->screen;
3852 }
3853 }
3854 }
3855
3856 dprintk("bttv%d: next set: top=%p bottom=%p [screen=%p,irq=%d,%d]\n",
3857 btv->c.nr,set->top, set->bottom,
3858 btv->screen,set->frame_irq,set->top_irq);
3859 return 0;
3860}
3861
3862static void
3863bttv_irq_wakeup_video(struct bttv *btv, struct bttv_buffer_set *wakeup,
3864 struct bttv_buffer_set *curr, unsigned int state)
3865{
3866 struct timeval ts;
3867
3868 do_gettimeofday(&ts);
3869
3870 if (wakeup->top == wakeup->bottom) {
3871 if (NULL != wakeup->top && curr->top != wakeup->top) {
3872 if (irq_debug > 1)
3873 printk("bttv%d: wakeup: both=%p\n",btv->c.nr,wakeup->top);
3874 wakeup->top->vb.ts = ts;
3875 wakeup->top->vb.field_count = btv->field_count;
3876 wakeup->top->vb.state = state;
3877 wake_up(&wakeup->top->vb.done);
3878 }
3879 } else {
3880 if (NULL != wakeup->top && curr->top != wakeup->top) {
3881 if (irq_debug > 1)
3882 printk("bttv%d: wakeup: top=%p\n",btv->c.nr,wakeup->top);
3883 wakeup->top->vb.ts = ts;
3884 wakeup->top->vb.field_count = btv->field_count;
3885 wakeup->top->vb.state = state;
3886 wake_up(&wakeup->top->vb.done);
3887 }
3888 if (NULL != wakeup->bottom && curr->bottom != wakeup->bottom) {
3889 if (irq_debug > 1)
3890 printk("bttv%d: wakeup: bottom=%p\n",btv->c.nr,wakeup->bottom);
3891 wakeup->bottom->vb.ts = ts;
3892 wakeup->bottom->vb.field_count = btv->field_count;
3893 wakeup->bottom->vb.state = state;
3894 wake_up(&wakeup->bottom->vb.done);
3895 }
3896 }
3897}
3898
3899static void
3900bttv_irq_wakeup_vbi(struct bttv *btv, struct bttv_buffer *wakeup,
3901 unsigned int state)
3902{
3903 struct timeval ts;
3904
3905 if (NULL == wakeup)
3906 return;
3907
3908 do_gettimeofday(&ts);
3909 wakeup->vb.ts = ts;
3910 wakeup->vb.field_count = btv->field_count;
3911 wakeup->vb.state = state;
3912 wake_up(&wakeup->vb.done);
3913}
3914
3915static void bttv_irq_timeout(unsigned long data)
3916{
3917 struct bttv *btv = (struct bttv *)data;
3918 struct bttv_buffer_set old,new;
3919 struct bttv_buffer *ovbi;
3920 struct bttv_buffer *item;
3921 unsigned long flags;
3922
3923 if (bttv_verbose) {
3924 printk(KERN_INFO "bttv%d: timeout: drop=%d irq=%d/%d, risc=%08x, ",
3925 btv->c.nr, btv->framedrop, btv->irq_me, btv->irq_total,
3926 btread(BT848_RISC_COUNT));
3927 bttv_print_irqbits(btread(BT848_INT_STAT),0);
3928 printk("\n");
3929 }
3930
3931 spin_lock_irqsave(&btv->s_lock,flags);
3932
3933 /* deactivate stuff */
3934 memset(&new,0,sizeof(new));
3935 old = btv->curr;
3936 ovbi = btv->cvbi;
3937 btv->curr = new;
3938 btv->cvbi = NULL;
3939 btv->loop_irq = 0;
3940 bttv_buffer_activate_video(btv, &new);
3941 bttv_buffer_activate_vbi(btv, NULL);
3942 bttv_set_dma(btv, 0);
3943
3944 /* wake up */
Brandon Philips0fc06862007-11-06 20:02:36 -03003945 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_ERROR);
3946 bttv_irq_wakeup_vbi(btv, ovbi, VIDEOBUF_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
3948 /* cancel all outstanding capture / vbi requests */
3949 while (!list_empty(&btv->capture)) {
3950 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3951 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003952 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 wake_up(&item->vb.done);
3954 }
3955 while (!list_empty(&btv->vcapture)) {
3956 item = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
3957 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003958 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 wake_up(&item->vb.done);
3960 }
3961
3962 btv->errors++;
3963 spin_unlock_irqrestore(&btv->s_lock,flags);
3964}
3965
3966static void
3967bttv_irq_wakeup_top(struct bttv *btv)
3968{
3969 struct bttv_buffer *wakeup = btv->curr.top;
3970
3971 if (NULL == wakeup)
3972 return;
3973
3974 spin_lock(&btv->s_lock);
3975 btv->curr.top_irq = 0;
3976 btv->curr.top = NULL;
3977 bttv_risc_hook(btv, RISC_SLOT_O_FIELD, NULL, 0);
3978
3979 do_gettimeofday(&wakeup->vb.ts);
3980 wakeup->vb.field_count = btv->field_count;
Brandon Philips0fc06862007-11-06 20:02:36 -03003981 wakeup->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 wake_up(&wakeup->vb.done);
3983 spin_unlock(&btv->s_lock);
3984}
3985
3986static inline int is_active(struct btcx_riscmem *risc, u32 rc)
3987{
3988 if (rc < risc->dma)
3989 return 0;
3990 if (rc > risc->dma + risc->size)
3991 return 0;
3992 return 1;
3993}
3994
3995static void
3996bttv_irq_switch_video(struct bttv *btv)
3997{
3998 struct bttv_buffer_set new;
3999 struct bttv_buffer_set old;
4000 dma_addr_t rc;
4001
4002 spin_lock(&btv->s_lock);
4003
4004 /* new buffer set */
4005 bttv_irq_next_video(btv, &new);
4006 rc = btread(BT848_RISC_COUNT);
4007 if ((btv->curr.top && is_active(&btv->curr.top->top, rc)) ||
4008 (btv->curr.bottom && is_active(&btv->curr.bottom->bottom, rc))) {
4009 btv->framedrop++;
4010 if (debug_latency)
4011 bttv_irq_debug_low_latency(btv, rc);
4012 spin_unlock(&btv->s_lock);
4013 return;
4014 }
4015
4016 /* switch over */
4017 old = btv->curr;
4018 btv->curr = new;
4019 btv->loop_irq &= ~1;
4020 bttv_buffer_activate_video(btv, &new);
4021 bttv_set_dma(btv, 0);
4022
4023 /* switch input */
4024 if (UNSET != btv->new_input) {
4025 video_mux(btv,btv->new_input);
4026 btv->new_input = UNSET;
4027 }
4028
4029 /* wake up finished buffers */
Brandon Philips0fc06862007-11-06 20:02:36 -03004030 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 spin_unlock(&btv->s_lock);
4032}
4033
4034static void
4035bttv_irq_switch_vbi(struct bttv *btv)
4036{
4037 struct bttv_buffer *new = NULL;
4038 struct bttv_buffer *old;
4039 u32 rc;
4040
4041 spin_lock(&btv->s_lock);
4042
4043 if (!list_empty(&btv->vcapture))
4044 new = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
4045 old = btv->cvbi;
4046
4047 rc = btread(BT848_RISC_COUNT);
4048 if (NULL != old && (is_active(&old->top, rc) ||
4049 is_active(&old->bottom, rc))) {
4050 btv->framedrop++;
4051 if (debug_latency)
4052 bttv_irq_debug_low_latency(btv, rc);
4053 spin_unlock(&btv->s_lock);
4054 return;
4055 }
4056
4057 /* switch */
4058 btv->cvbi = new;
4059 btv->loop_irq &= ~4;
4060 bttv_buffer_activate_vbi(btv, new);
4061 bttv_set_dma(btv, 0);
4062
Brandon Philips0fc06862007-11-06 20:02:36 -03004063 bttv_irq_wakeup_vbi(btv, old, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 spin_unlock(&btv->s_lock);
4065}
4066
David Howells7d12e782006-10-05 14:55:46 +01004067static irqreturn_t bttv_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068{
4069 u32 stat,astat;
4070 u32 dstat;
4071 int count;
4072 struct bttv *btv;
4073 int handled = 0;
4074
4075 btv=(struct bttv *)dev_id;
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004076
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004077 if (btv->custom_irq)
4078 handled = btv->custom_irq(btv);
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004079
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 count=0;
4081 while (1) {
4082 /* get/clear interrupt status bits */
4083 stat=btread(BT848_INT_STAT);
4084 astat=stat&btread(BT848_INT_MASK);
4085 if (!astat)
4086 break;
4087 handled = 1;
4088 btwrite(stat,BT848_INT_STAT);
4089
4090 /* get device status bits */
4091 dstat=btread(BT848_DSTATUS);
4092
4093 if (irq_debug) {
4094 printk(KERN_DEBUG "bttv%d: irq loop=%d fc=%d "
4095 "riscs=%x, riscc=%08x, ",
4096 btv->c.nr, count, btv->field_count,
4097 stat>>28, btread(BT848_RISC_COUNT));
4098 bttv_print_irqbits(stat,astat);
4099 if (stat & BT848_INT_HLOCK)
4100 printk(" HLOC => %s", (dstat & BT848_DSTATUS_HLOC)
4101 ? "yes" : "no");
4102 if (stat & BT848_INT_VPRES)
4103 printk(" PRES => %s", (dstat & BT848_DSTATUS_PRES)
4104 ? "yes" : "no");
4105 if (stat & BT848_INT_FMTCHG)
4106 printk(" NUML => %s", (dstat & BT848_DSTATUS_NUML)
4107 ? "625" : "525");
4108 printk("\n");
4109 }
4110
4111 if (astat&BT848_INT_VSYNC)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004112 btv->field_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004114 if ((astat & BT848_INT_GPINT) && btv->remote) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004116 bttv_input_irq(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 }
4118
4119 if (astat & BT848_INT_I2CDONE) {
4120 btv->i2c_done = stat;
4121 wake_up(&btv->i2c_queue);
4122 }
4123
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004124 if ((astat & BT848_INT_RISCI) && (stat & (4<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 bttv_irq_switch_vbi(btv);
4126
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004127 if ((astat & BT848_INT_RISCI) && (stat & (2<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 bttv_irq_wakeup_top(btv);
4129
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004130 if ((astat & BT848_INT_RISCI) && (stat & (1<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 bttv_irq_switch_video(btv);
4132
4133 if ((astat & BT848_INT_HLOCK) && btv->opt_automute)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004134 audio_mute(btv, btv->mute); /* trigger automute */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136 if (astat & (BT848_INT_SCERR|BT848_INT_OCERR)) {
4137 printk(KERN_INFO "bttv%d: %s%s @ %08x,",btv->c.nr,
4138 (astat & BT848_INT_SCERR) ? "SCERR" : "",
4139 (astat & BT848_INT_OCERR) ? "OCERR" : "",
4140 btread(BT848_RISC_COUNT));
4141 bttv_print_irqbits(stat,astat);
4142 printk("\n");
4143 if (bttv_debug)
4144 bttv_print_riscaddr(btv);
4145 }
4146 if (fdsr && astat & BT848_INT_FDSR) {
4147 printk(KERN_INFO "bttv%d: FDSR @ %08x\n",
4148 btv->c.nr,btread(BT848_RISC_COUNT));
4149 if (bttv_debug)
4150 bttv_print_riscaddr(btv);
4151 }
4152
4153 count++;
4154 if (count > 4) {
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004155
4156 if (count > 8 || !(astat & BT848_INT_GPINT)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004157 btwrite(0, BT848_INT_MASK);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004158
4159 printk(KERN_ERR
4160 "bttv%d: IRQ lockup, cleared int mask [", btv->c.nr);
4161 } else {
4162 printk(KERN_ERR
4163 "bttv%d: IRQ lockup, clearing GPINT from int mask [", btv->c.nr);
4164
4165 btwrite(btread(BT848_INT_MASK) & (-1 ^ BT848_INT_GPINT),
4166 BT848_INT_MASK);
4167 };
4168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 bttv_print_irqbits(stat,astat);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004170
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 printk("]\n");
4172 }
4173 }
4174 btv->irq_total++;
4175 if (handled)
4176 btv->irq_me++;
4177 return IRQ_RETVAL(handled);
4178}
4179
4180
4181/* ----------------------------------------------------------------------- */
4182/* initialitation */
4183
4184static struct video_device *vdev_init(struct bttv *btv,
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004185 const struct video_device *template,
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004186 const char *type_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187{
4188 struct video_device *vfd;
4189
4190 vfd = video_device_alloc();
4191 if (NULL == vfd)
4192 return NULL;
4193 *vfd = *template;
4194 vfd->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03004195 vfd->parent = &btv->c.pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 vfd->release = video_device_release;
Mauro Carvalho Chehab1d0a4362008-06-23 12:31:29 -03004197 vfd->debug = bttv_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)",
4199 btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "",
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004200 type_name, bttv_tvcards[btv->c.type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 return vfd;
4202}
4203
4204static void bttv_unregister_video(struct bttv *btv)
4205{
4206 if (btv->video_dev) {
4207 if (-1 != btv->video_dev->minor)
4208 video_unregister_device(btv->video_dev);
4209 else
4210 video_device_release(btv->video_dev);
4211 btv->video_dev = NULL;
4212 }
4213 if (btv->vbi_dev) {
4214 if (-1 != btv->vbi_dev->minor)
4215 video_unregister_device(btv->vbi_dev);
4216 else
4217 video_device_release(btv->vbi_dev);
4218 btv->vbi_dev = NULL;
4219 }
4220 if (btv->radio_dev) {
4221 if (-1 != btv->radio_dev->minor)
4222 video_unregister_device(btv->radio_dev);
4223 else
4224 video_device_release(btv->radio_dev);
4225 btv->radio_dev = NULL;
4226 }
4227}
4228
4229/* register video4linux devices */
4230static int __devinit bttv_register_video(struct bttv *btv)
4231{
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004232 if (no_overlay > 0)
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004233 printk("bttv: Overlay support disabled.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004234
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 /* video */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004236 btv->video_dev = vdev_init(btv, &bttv_video_template, "video");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004237
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004238 if (NULL == btv->video_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004240 if (video_register_device(btv->video_dev, VFL_TYPE_GRABBER,
4241 video_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 goto err;
4243 printk(KERN_INFO "bttv%d: registered device video%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004244 btv->c.nr, btv->video_dev->num);
Hans Verkuil22a04f12008-07-20 06:35:02 -03004245 if (device_create_file(&btv->video_dev->dev,
Kay Sievers54bd5b62007-10-08 16:26:13 -03004246 &dev_attr_card)<0) {
4247 printk(KERN_ERR "bttv%d: device_create_file 'card' "
Trent Piephod94fc9a2006-07-29 17:18:06 -03004248 "failed\n", btv->c.nr);
4249 goto err;
4250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
4252 /* vbi */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004253 btv->vbi_dev = vdev_init(btv, &bttv_video_template, "vbi");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004254
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004255 if (NULL == btv->vbi_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004257 if (video_register_device(btv->vbi_dev, VFL_TYPE_VBI,
4258 vbi_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 goto err;
4260 printk(KERN_INFO "bttv%d: registered device vbi%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004261 btv->c.nr, btv->vbi_dev->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004263 if (!btv->has_radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 return 0;
4265 /* radio */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004266 btv->radio_dev = vdev_init(btv, &radio_template, "radio");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004267 if (NULL == btv->radio_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004269 if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,
4270 radio_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 goto err;
4272 printk(KERN_INFO "bttv%d: registered device radio%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004273 btv->c.nr, btv->radio_dev->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
4275 /* all done */
4276 return 0;
4277
4278 err:
4279 bttv_unregister_video(btv);
4280 return -1;
4281}
4282
4283
4284/* on OpenFirmware machines (PowerMac at least), PCI memory cycle */
4285/* response on cards with no firmware is not enabled by OF */
4286static void pci_set_command(struct pci_dev *dev)
4287{
4288#if defined(__powerpc__)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004289 unsigned int cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004291 pci_read_config_dword(dev, PCI_COMMAND, &cmd);
4292 cmd = (cmd | PCI_COMMAND_MEMORY );
4293 pci_write_config_dword(dev, PCI_COMMAND, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294#endif
4295}
4296
4297static int __devinit bttv_probe(struct pci_dev *dev,
4298 const struct pci_device_id *pci_id)
4299{
4300 int result;
4301 unsigned char lat;
4302 struct bttv *btv;
4303
4304 if (bttv_num == BTTV_MAX)
4305 return -ENOMEM;
4306 printk(KERN_INFO "bttv: Bt8xx card found (%d).\n", bttv_num);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004307 btv=&bttvs[bttv_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 memset(btv,0,sizeof(*btv));
4309 btv->c.nr = bttv_num;
4310 sprintf(btv->c.name,"bttv%d",btv->c.nr);
4311
4312 /* initialize structs / fill in defaults */
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02004313 mutex_init(&btv->lock);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004314 spin_lock_init(&btv->s_lock);
4315 spin_lock_init(&btv->gpio_lock);
4316 init_waitqueue_head(&btv->gpioq);
4317 init_waitqueue_head(&btv->i2c_queue);
4318 INIT_LIST_HEAD(&btv->c.subs);
4319 INIT_LIST_HEAD(&btv->capture);
4320 INIT_LIST_HEAD(&btv->vcapture);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 v4l2_prio_init(&btv->prio);
4322
4323 init_timer(&btv->timeout);
4324 btv->timeout.function = bttv_irq_timeout;
4325 btv->timeout.data = (unsigned long)btv;
4326
Michael Krufky7c08fb02005-11-08 21:36:21 -08004327 btv->i2c_rc = -1;
4328 btv->tuner_type = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 btv->new_input = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 btv->has_radio=radio[btv->c.nr];
4331
4332 /* pci stuff (init, get irq/mmio, ... */
4333 btv->c.pci = dev;
Michael Krufky7c08fb02005-11-08 21:36:21 -08004334 btv->id = dev->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 if (pci_enable_device(dev)) {
Michael Krufky7c08fb02005-11-08 21:36:21 -08004336 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 btv->c.nr);
4338 return -EIO;
4339 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004340 if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) {
4341 printk(KERN_WARNING "bttv%d: No suitable DMA available.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 btv->c.nr);
4343 return -EIO;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 if (!request_mem_region(pci_resource_start(dev,0),
4346 pci_resource_len(dev,0),
4347 btv->c.name)) {
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004348 printk(KERN_WARNING "bttv%d: can't request iomem (0x%llx).\n",
4349 btv->c.nr,
4350 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 return -EBUSY;
4352 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004353 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 pci_set_command(dev);
4355 pci_set_drvdata(dev,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004357 pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision);
4358 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
4359 printk(KERN_INFO "bttv%d: Bt%d (rev %d) at %s, ",
4360 bttv_num,btv->id, btv->revision, pci_name(dev));
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004361 printk("irq: %d, latency: %d, mmio: 0x%llx\n",
4362 btv->c.pci->irq, lat,
4363 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 schedule();
4365
Akinobu Mita5f1693f2006-12-20 10:08:56 -03004366 btv->bt848_mmio = ioremap(pci_resource_start(dev, 0), 0x1000);
4367 if (NULL == btv->bt848_mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 printk("bttv%d: ioremap() failed\n", btv->c.nr);
4369 result = -EIO;
4370 goto fail1;
4371 }
4372
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004373 /* identify card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 bttv_idcard(btv);
4375
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004376 /* disable irqs, register irq handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 btwrite(0, BT848_INT_MASK);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004378 result = request_irq(btv->c.pci->irq, bttv_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07004379 IRQF_SHARED | IRQF_DISABLED,btv->c.name,(void *)btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004380 if (result < 0) {
4381 printk(KERN_ERR "bttv%d: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 bttv_num,btv->c.pci->irq);
4383 goto fail1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386 if (0 != bttv_handle_chipset(btv)) {
4387 result = -EIO;
4388 goto fail2;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
4391 /* init options from insmod args */
4392 btv->opt_combfilter = combfilter;
4393 btv->opt_lumafilter = lumafilter;
4394 btv->opt_automute = automute;
4395 btv->opt_chroma_agc = chroma_agc;
4396 btv->opt_adc_crush = adc_crush;
4397 btv->opt_vcr_hack = vcr_hack;
4398 btv->opt_whitecrush_upper = whitecrush_upper;
4399 btv->opt_whitecrush_lower = whitecrush_lower;
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -07004400 btv->opt_uv_ratio = uv_ratio;
4401 btv->opt_full_luma_range = full_luma_range;
4402 btv->opt_coring = coring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
4404 /* fill struct bttv with some useful defaults */
4405 btv->init.btv = btv;
4406 btv->init.ov.w.width = 320;
4407 btv->init.ov.w.height = 240;
Mauro Carvalho Chehabc96dd072007-10-26 16:51:47 -03004408 btv->init.fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 btv->init.width = 320;
4410 btv->init.height = 240;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 btv->input = 0;
4412
4413 /* initialize hardware */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004414 if (bttv_gpio)
4415 bttv_gpio_tracking(btv,"pre-init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
4417 bttv_risc_init_main(btv);
4418 init_bt848(btv);
4419
4420 /* gpio */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004421 btwrite(0x00, BT848_GPIO_REG_INP);
4422 btwrite(0x00, BT848_GPIO_OUT_EN);
4423 if (bttv_verbose)
4424 bttv_gpio_tracking(btv,"init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004426 /* needs to be done before i2c is registered */
4427 bttv_init_card1(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004429 /* register i2c + gpio */
4430 init_bttv_i2c(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004432 /* some card-specific stuff (needs working i2c) */
4433 bttv_init_card2(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 init_irqreg(btv);
4435
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004436 /* register video4linux + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 if (!bttv_tvcards[btv->c.type].no_video) {
4438 bttv_register_video(btv);
4439 bt848_bright(btv,32768);
4440 bt848_contrast(btv,32768);
4441 bt848_hue(btv,32768);
4442 bt848_sat(btv,32768);
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004443 audio_mute(btv, 1);
Trent Piepho333408f2007-07-03 15:08:10 -03004444 set_input(btv, 0, btv->tvnorm);
Michael Schimeke5bd0262007-01-18 16:17:39 -03004445 bttv_crop_reset(&btv->crop[0], btv->tvnorm);
4446 btv->crop[1] = btv->crop[0]; /* current = default */
4447 disclaim_vbi_lines(btv);
4448 disclaim_video_lines(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 }
4450
Jarod Wilsonf992a492007-03-24 15:23:50 -03004451 /* add subdevices and autoload dvb-bt8xx if needed */
4452 if (bttv_tvcards[btv->c.type].has_dvb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 bttv_sub_add_device(&btv->c, "dvb");
Jarod Wilsonf992a492007-03-24 15:23:50 -03004454 request_modules(btv);
4455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004457 bttv_input_init(btv);
4458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 /* everything is fine */
4460 bttv_num++;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
4463 fail2:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004464 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
4466 fail1:
4467 if (btv->bt848_mmio)
4468 iounmap(btv->bt848_mmio);
4469 release_mem_region(pci_resource_start(btv->c.pci,0),
4470 pci_resource_len(btv->c.pci,0));
4471 pci_set_drvdata(dev,NULL);
4472 return result;
4473}
4474
4475static void __devexit bttv_remove(struct pci_dev *pci_dev)
4476{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004477 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
4479 if (bttv_verbose)
4480 printk("bttv%d: unloading\n",btv->c.nr);
4481
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004482 /* shutdown everything (DMA+IRQs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 btand(~15, BT848_GPIO_DMA_CTL);
4484 btwrite(0, BT848_INT_MASK);
4485 btwrite(~0x0, BT848_INT_STAT);
4486 btwrite(0x0, BT848_GPIO_OUT_EN);
4487 if (bttv_gpio)
4488 bttv_gpio_tracking(btv,"cleanup");
4489
4490 /* tell gpio modules we are leaving ... */
4491 btv->shutdown=1;
4492 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004493 bttv_input_fini(btv);
Christopher Pascoe889aee82006-01-09 15:25:28 -02004494 bttv_sub_del_devices(&btv->c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004496 /* unregister i2c_bus + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 fini_bttv_i2c(btv);
4498
4499 /* unregister video4linux */
4500 bttv_unregister_video(btv);
4501
4502 /* free allocated memory */
4503 btcx_riscmem_free(btv->c.pci,&btv->main);
4504
4505 /* free ressources */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004506 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 iounmap(btv->bt848_mmio);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004508 release_mem_region(pci_resource_start(btv->c.pci,0),
4509 pci_resource_len(btv->c.pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
4511 pci_set_drvdata(pci_dev, NULL);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513}
4514
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004515#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state)
4517{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004518 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 struct bttv_buffer_set idle;
4520 unsigned long flags;
4521
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07004522 dprintk("bttv%d: suspend %d\n", btv->c.nr, state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
4524 /* stop dma + irqs */
4525 spin_lock_irqsave(&btv->s_lock,flags);
4526 memset(&idle, 0, sizeof(idle));
4527 btv->state.video = btv->curr;
4528 btv->state.vbi = btv->cvbi;
4529 btv->state.loop_irq = btv->loop_irq;
4530 btv->curr = idle;
4531 btv->loop_irq = 0;
4532 bttv_buffer_activate_video(btv, &idle);
4533 bttv_buffer_activate_vbi(btv, NULL);
4534 bttv_set_dma(btv, 0);
4535 btwrite(0, BT848_INT_MASK);
4536 spin_unlock_irqrestore(&btv->s_lock,flags);
4537
4538 /* save bt878 state */
4539 btv->state.gpio_enable = btread(BT848_GPIO_OUT_EN);
4540 btv->state.gpio_data = gpio_read();
4541
4542 /* save pci state */
4543 pci_save_state(pci_dev);
4544 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
4545 pci_disable_device(pci_dev);
4546 btv->state.disabled = 1;
4547 }
4548 return 0;
4549}
4550
4551static int bttv_resume(struct pci_dev *pci_dev)
4552{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004553 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 unsigned long flags;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004555 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557 dprintk("bttv%d: resume\n", btv->c.nr);
4558
4559 /* restore pci state */
4560 if (btv->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004561 err=pci_enable_device(pci_dev);
4562 if (err) {
4563 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4564 btv->c.nr);
4565 return err;
4566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 btv->state.disabled = 0;
4568 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004569 err=pci_set_power_state(pci_dev, PCI_D0);
4570 if (err) {
4571 pci_disable_device(pci_dev);
4572 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4573 btv->c.nr);
4574 btv->state.disabled = 1;
4575 return err;
4576 }
4577
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 pci_restore_state(pci_dev);
4579
4580 /* restore bt878 state */
4581 bttv_reinit_bt848(btv);
4582 gpio_inout(0xffffff, btv->state.gpio_enable);
4583 gpio_write(btv->state.gpio_data);
4584
4585 /* restart dma */
4586 spin_lock_irqsave(&btv->s_lock,flags);
4587 btv->curr = btv->state.video;
4588 btv->cvbi = btv->state.vbi;
4589 btv->loop_irq = btv->state.loop_irq;
4590 bttv_buffer_activate_video(btv, &btv->curr);
4591 bttv_buffer_activate_vbi(btv, btv->cvbi);
4592 bttv_set_dma(btv, 0);
4593 spin_unlock_irqrestore(&btv->s_lock,flags);
4594 return 0;
4595}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004596#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
4598static struct pci_device_id bttv_pci_tbl[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004599 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848,
4600 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT849,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004602 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT878,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004604 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT879,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004606 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4607 {0,}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608};
4609
4610MODULE_DEVICE_TABLE(pci, bttv_pci_tbl);
4611
4612static struct pci_driver bttv_pci_driver = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004613 .name = "bttv",
4614 .id_table = bttv_pci_tbl,
4615 .probe = bttv_probe,
4616 .remove = __devexit_p(bttv_remove),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004617#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 .suspend = bttv_suspend,
4619 .resume = bttv_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621};
4622
Adrian Bunk7d44e892007-12-11 19:23:43 -03004623static int __init bttv_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624{
Randy Dunlapc526e222006-07-15 09:08:26 -03004625 int ret;
4626
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 bttv_num = 0;
4628
4629 printk(KERN_INFO "bttv: driver version %d.%d.%d loaded\n",
4630 (BTTV_VERSION_CODE >> 16) & 0xff,
4631 (BTTV_VERSION_CODE >> 8) & 0xff,
4632 BTTV_VERSION_CODE & 0xff);
4633#ifdef SNAPSHOT
4634 printk(KERN_INFO "bttv: snapshot date %04d-%02d-%02d\n",
4635 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
4636#endif
4637 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
4638 gbuffers = 2;
4639 if (gbufsize < 0 || gbufsize > BTTV_MAX_FBUF)
4640 gbufsize = BTTV_MAX_FBUF;
4641 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
4642 if (bttv_verbose)
4643 printk(KERN_INFO "bttv: using %d buffers with %dk (%d pages) each for capture\n",
4644 gbuffers, gbufsize >> 10, gbufsize >> PAGE_SHIFT);
4645
4646 bttv_check_chipset();
4647
Randy Dunlapc526e222006-07-15 09:08:26 -03004648 ret = bus_register(&bttv_sub_bus_type);
4649 if (ret < 0) {
4650 printk(KERN_WARNING "bttv: bus_register error: %d\n", ret);
4651 return ret;
4652 }
Akinobu Mita9e7e85e2007-12-17 14:26:29 -03004653 ret = pci_register_driver(&bttv_pci_driver);
4654 if (ret < 0)
4655 bus_unregister(&bttv_sub_bus_type);
4656
4657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
4659
Adrian Bunk7d44e892007-12-11 19:23:43 -03004660static void __exit bttv_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661{
4662 pci_unregister_driver(&bttv_pci_driver);
4663 bus_unregister(&bttv_sub_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664}
4665
4666module_init(bttv_init_module);
4667module_exit(bttv_cleanup_module);
4668
4669/*
4670 * Local variables:
4671 * c-basic-offset: 8
4672 * End:
4673 */