blob: 3079d925e4cf544945a8a752827f749c986fd233 [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 */
Trent Piepho4b10d3b2009-01-28 21:32:59 -030061struct bttv *bttvs[BTTV_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
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 Verkuil74fc7bd2009-03-14 12:36:54 -0300170 struct bttv *btv = video_get_drvdata(vfd);
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
Trent Piepho5221e212009-01-28 21:32:59 -03001043 if (btv->input == btv->dig) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 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 }
Trent Piepho6f987002009-01-28 21:32:59 -03001145 mux = bttv_muxsel(btv, input);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 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
Trent Piepho72134a62009-01-28 21:32:59 -03001183 switch (btv->c.type) {
1184 case BTTV_BOARD_VOODOOTV_FM:
1185 case BTTV_BOARD_VOODOOTV_200:
1186 gpio_val = bttv_tda9880_setnorm(btv, gpio_val);
1187 break;
1188
1189 default:
1190 gpio_bits(bttv_tvcards[btv->c.type].gpiomask, gpio_val);
1191 }
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (bttv_gpio)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001194 bttv_gpio_tracking(btv, audio_modes[mute ? 4 : input]);
1195 if (in_interrupt())
1196 return 0;
1197
1198 ctrl.id = V4L2_CID_AUDIO_MUTE;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001199 ctrl.value = btv->mute;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001200 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, &ctrl);
1201 c = btv->i2c_msp34xx_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001202 if (c) {
1203 struct v4l2_routing route;
1204
1205 /* Note: the inputs tuner/radio/extern/intern are translated
1206 to msp routings. This assumes common behavior for all msp3400
1207 based TV cards. When this assumption fails, then the
1208 specific MSP routing must be added to the card table.
1209 For now this is sufficient. */
1210 switch (input) {
1211 case TVAUDIO_INPUT_RADIO:
Hans Verkuil07151722006-04-01 18:03:23 -03001212 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1213 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001214 break;
1215 case TVAUDIO_INPUT_EXTERN:
Hans Verkuil07151722006-04-01 18:03:23 -03001216 route.input = MSP_INPUT(MSP_IN_SCART1, 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_INTERN:
1220 /* Yes, this is the same input as for RADIO. I doubt
1221 if this is ever used. The only board with an INTERN
1222 input is the BTTV_BOARD_AVERMEDIA98. I wonder how
1223 that was tested. My guess is that the whole INTERN
1224 input does not work. */
Hans Verkuil07151722006-04-01 18:03:23 -03001225 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1226 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001227 break;
1228 case TVAUDIO_INPUT_TUNER:
1229 default:
Wade Berrier434b2522007-06-25 13:02:16 -03001230 /* This is the only card that uses TUNER2, and afaik,
1231 is the only difference between the VOODOOTV_FM
1232 and VOODOOTV_200 */
1233 if (btv->c.type == BTTV_BOARD_VOODOOTV_200)
1234 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER2, \
1235 MSP_DSP_IN_TUNER, MSP_DSP_IN_TUNER);
1236 else
1237 route.input = MSP_INPUT_DEFAULT;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001238 break;
1239 }
1240 route.output = MSP_OUTPUT_DEFAULT;
1241 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1242 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001243 c = btv->i2c_tvaudio_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001244 if (c) {
1245 struct v4l2_routing route;
1246
1247 route.input = input;
1248 route.output = 0;
1249 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return 0;
1252}
1253
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001254static inline int
1255audio_mute(struct bttv *btv, int mute)
1256{
1257 return audio_mux(btv, btv->audio, mute);
1258}
1259
1260static inline int
1261audio_input(struct bttv *btv, int input)
1262{
1263 return audio_mux(btv, input, btv->mute);
1264}
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266static void
Michael Schimeke5bd0262007-01-18 16:17:39 -03001267bttv_crop_calc_limits(struct bttv_crop *c)
1268{
1269 /* Scale factor min. 1:1, max. 16:1. Min. image size
1270 48 x 32. Scaled width must be a multiple of 4. */
1271
1272 if (1) {
1273 /* For bug compatibility with VIDIOCGCAP and image
1274 size checks in earlier driver versions. */
1275 c->min_scaled_width = 48;
1276 c->min_scaled_height = 32;
1277 } else {
1278 c->min_scaled_width =
1279 (max(48, c->rect.width >> 4) + 3) & ~3;
1280 c->min_scaled_height =
1281 max(32, c->rect.height >> 4);
1282 }
1283
1284 c->max_scaled_width = c->rect.width & ~3;
1285 c->max_scaled_height = c->rect.height;
1286}
1287
1288static void
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001289bttv_crop_reset(struct bttv_crop *c, unsigned int norm)
Michael Schimeke5bd0262007-01-18 16:17:39 -03001290{
1291 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1292 bttv_crop_calc_limits(c);
1293}
1294
1295/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int
1297set_tvnorm(struct bttv *btv, unsigned int norm)
1298{
1299 const struct bttv_tvnorm *tvnorm;
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001300 v4l2_std_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001302 BUG_ON(norm >= BTTV_TVNORMS);
1303 BUG_ON(btv->tvnorm >= BTTV_TVNORMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 tvnorm = &bttv_tvnorms[norm];
1306
Trent Piepho4ef2ccc2009-01-28 21:32:58 -03001307 if (!memcmp(&bttv_tvnorms[btv->tvnorm].cropcap, &tvnorm->cropcap,
1308 sizeof (tvnorm->cropcap))) {
Michael Schimeke5bd0262007-01-18 16:17:39 -03001309 bttv_crop_reset(&btv->crop[0], norm);
1310 btv->crop[1] = btv->crop[0]; /* current = default */
1311
1312 if (0 == (btv->resources & VIDEO_RESOURCES)) {
1313 btv->crop_start = tvnorm->cropcap.bounds.top
1314 + tvnorm->cropcap.bounds.height;
1315 }
1316 }
1317
1318 btv->tvnorm = norm;
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 btwrite(tvnorm->adelay, BT848_ADELAY);
1321 btwrite(tvnorm->bdelay, BT848_BDELAY);
1322 btaor(tvnorm->iform,~(BT848_IFORM_NORM|BT848_IFORM_XTBOTH),
1323 BT848_IFORM);
1324 btwrite(tvnorm->vbipack, BT848_VBI_PACK_SIZE);
1325 btwrite(1, BT848_VBI_PACK_DEL);
1326 bt848A_set_timing(btv);
1327
1328 switch (btv->c.type) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001329 case BTTV_BOARD_VOODOOTV_FM:
Wade Berrier434b2522007-06-25 13:02:16 -03001330 case BTTV_BOARD_VOODOOTV_200:
Trent Piepho72134a62009-01-28 21:32:59 -03001331 bttv_tda9880_setnorm(btv, gpio_read());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001334 id = tvnorm->v4l2_id;
1335 bttv_call_i2c_clients(btv, VIDIOC_S_STD, &id);
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return 0;
1338}
1339
Michael Schimeke5bd0262007-01-18 16:17:39 -03001340/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341static void
Trent Piepho333408f2007-07-03 15:08:10 -03001342set_input(struct bttv *btv, unsigned int input, unsigned int norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 unsigned long flags;
1345
1346 btv->input = input;
1347 if (irq_iswitch) {
1348 spin_lock_irqsave(&btv->s_lock,flags);
1349 if (btv->curr.frame_irq) {
1350 /* active capture -> delayed input switch */
1351 btv->new_input = input;
1352 } else {
1353 video_mux(btv,input);
1354 }
1355 spin_unlock_irqrestore(&btv->s_lock,flags);
1356 } else {
1357 video_mux(btv,input);
1358 }
Trent Piephoabb03622009-01-28 21:32:59 -03001359 audio_input(btv, (btv->tuner_type != TUNER_ABSENT && input == 0) ?
1360 TVAUDIO_INPUT_TUNER : TVAUDIO_INPUT_EXTERN);
Trent Piepho333408f2007-07-03 15:08:10 -03001361 set_tvnorm(btv, norm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362}
1363
1364static void init_irqreg(struct bttv *btv)
1365{
1366 /* clear status */
1367 btwrite(0xfffffUL, BT848_INT_STAT);
1368
1369 if (bttv_tvcards[btv->c.type].no_video) {
1370 /* i2c only */
1371 btwrite(BT848_INT_I2CDONE,
1372 BT848_INT_MASK);
1373 } else {
1374 /* full video */
1375 btwrite((btv->triton1) |
1376 (btv->gpioirq ? BT848_INT_GPINT : 0) |
1377 BT848_INT_SCERR |
1378 (fdsr ? BT848_INT_FDSR : 0) |
Jean Delvareeb1b27b2008-08-30 10:18:21 -03001379 BT848_INT_RISCI | BT848_INT_OCERR |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 BT848_INT_FMTCHG|BT848_INT_HLOCK|
1381 BT848_INT_I2CDONE,
1382 BT848_INT_MASK);
1383 }
1384}
1385
1386static void init_bt848(struct bttv *btv)
1387{
1388 int val;
1389
1390 if (bttv_tvcards[btv->c.type].no_video) {
1391 /* very basic init only */
1392 init_irqreg(btv);
1393 return;
1394 }
1395
1396 btwrite(0x00, BT848_CAP_CTL);
1397 btwrite(BT848_COLOR_CTL_GAMMA, BT848_COLOR_CTL);
1398 btwrite(BT848_IFORM_XTAUTO | BT848_IFORM_AUTO, BT848_IFORM);
1399
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001400 /* set planar and packed mode trigger points and */
1401 /* set rising edge of inverted GPINTR pin as irq trigger */
1402 btwrite(BT848_GPIO_DMA_CTL_PKTP_32|
1403 BT848_GPIO_DMA_CTL_PLTP1_16|
1404 BT848_GPIO_DMA_CTL_PLTP23_16|
1405 BT848_GPIO_DMA_CTL_GPINTC|
1406 BT848_GPIO_DMA_CTL_GPINTI,
1407 BT848_GPIO_DMA_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001410 btwrite(val, BT848_E_SCLOOP);
1411 btwrite(val, BT848_O_SCLOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001413 btwrite(0x20, BT848_E_VSCALE_HI);
1414 btwrite(0x20, BT848_O_VSCALE_HI);
1415 btwrite(BT848_ADC_RESERVED | (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 BT848_ADC);
1417
1418 btwrite(whitecrush_upper, BT848_WC_UP);
1419 btwrite(whitecrush_lower, BT848_WC_DOWN);
1420
1421 if (btv->opt_lumafilter) {
1422 btwrite(0, BT848_E_CONTROL);
1423 btwrite(0, BT848_O_CONTROL);
1424 } else {
1425 btwrite(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1426 btwrite(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1427 }
1428
1429 bt848_bright(btv, btv->bright);
1430 bt848_hue(btv, btv->hue);
1431 bt848_contrast(btv, btv->contrast);
1432 bt848_sat(btv, btv->saturation);
1433
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001434 /* interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 init_irqreg(btv);
1436}
1437
1438static void bttv_reinit_bt848(struct bttv *btv)
1439{
1440 unsigned long flags;
1441
1442 if (bttv_verbose)
1443 printk(KERN_INFO "bttv%d: reset, reinitialize\n",btv->c.nr);
1444 spin_lock_irqsave(&btv->s_lock,flags);
1445 btv->errors=0;
1446 bttv_set_dma(btv,0);
1447 spin_unlock_irqrestore(&btv->s_lock,flags);
1448
1449 init_bt848(btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001450 btv->pll.pll_current = -1;
Trent Piepho333408f2007-07-03 15:08:10 -03001451 set_input(btv, btv->input, btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
Mauro Carvalho Chehab04a94d32007-12-27 22:23:34 -03001454static int bttv_g_ctrl(struct file *file, void *priv,
1455 struct v4l2_control *c)
1456{
1457 struct bttv_fh *fh = priv;
1458 struct bttv *btv = fh->btv;
1459
1460 switch (c->id) {
1461 case V4L2_CID_BRIGHTNESS:
1462 c->value = btv->bright;
1463 break;
1464 case V4L2_CID_HUE:
1465 c->value = btv->hue;
1466 break;
1467 case V4L2_CID_CONTRAST:
1468 c->value = btv->contrast;
1469 break;
1470 case V4L2_CID_SATURATION:
1471 c->value = btv->saturation;
1472 break;
1473
1474 case V4L2_CID_AUDIO_MUTE:
1475 case V4L2_CID_AUDIO_VOLUME:
1476 case V4L2_CID_AUDIO_BALANCE:
1477 case V4L2_CID_AUDIO_BASS:
1478 case V4L2_CID_AUDIO_TREBLE:
1479 bttv_call_i2c_clients(btv, VIDIOC_G_CTRL, c);
1480 break;
1481
1482 case V4L2_CID_PRIVATE_CHROMA_AGC:
1483 c->value = btv->opt_chroma_agc;
1484 break;
1485 case V4L2_CID_PRIVATE_COMBFILTER:
1486 c->value = btv->opt_combfilter;
1487 break;
1488 case V4L2_CID_PRIVATE_LUMAFILTER:
1489 c->value = btv->opt_lumafilter;
1490 break;
1491 case V4L2_CID_PRIVATE_AUTOMUTE:
1492 c->value = btv->opt_automute;
1493 break;
1494 case V4L2_CID_PRIVATE_AGC_CRUSH:
1495 c->value = btv->opt_adc_crush;
1496 break;
1497 case V4L2_CID_PRIVATE_VCR_HACK:
1498 c->value = btv->opt_vcr_hack;
1499 break;
1500 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1501 c->value = btv->opt_whitecrush_upper;
1502 break;
1503 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1504 c->value = btv->opt_whitecrush_lower;
1505 break;
1506 case V4L2_CID_PRIVATE_UV_RATIO:
1507 c->value = btv->opt_uv_ratio;
1508 break;
1509 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1510 c->value = btv->opt_full_luma_range;
1511 break;
1512 case V4L2_CID_PRIVATE_CORING:
1513 c->value = btv->opt_coring;
1514 break;
1515 default:
1516 return -EINVAL;
1517 }
1518 return 0;
1519}
1520
1521static int bttv_s_ctrl(struct file *file, void *f,
1522 struct v4l2_control *c)
1523{
1524 int err;
1525 int val;
1526 struct bttv_fh *fh = f;
1527 struct bttv *btv = fh->btv;
1528
1529 err = v4l2_prio_check(&btv->prio, &fh->prio);
1530 if (0 != err)
1531 return err;
1532
1533 switch (c->id) {
1534 case V4L2_CID_BRIGHTNESS:
1535 bt848_bright(btv, c->value);
1536 break;
1537 case V4L2_CID_HUE:
1538 bt848_hue(btv, c->value);
1539 break;
1540 case V4L2_CID_CONTRAST:
1541 bt848_contrast(btv, c->value);
1542 break;
1543 case V4L2_CID_SATURATION:
1544 bt848_sat(btv, c->value);
1545 break;
1546 case V4L2_CID_AUDIO_MUTE:
1547 audio_mute(btv, c->value);
1548 /* fall through */
1549 case V4L2_CID_AUDIO_VOLUME:
1550 if (btv->volume_gpio)
1551 btv->volume_gpio(btv, c->value);
1552
1553 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1554 break;
1555 case V4L2_CID_AUDIO_BALANCE:
1556 case V4L2_CID_AUDIO_BASS:
1557 case V4L2_CID_AUDIO_TREBLE:
1558 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1559 break;
1560
1561 case V4L2_CID_PRIVATE_CHROMA_AGC:
1562 btv->opt_chroma_agc = c->value;
1563 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
1564 btwrite(val, BT848_E_SCLOOP);
1565 btwrite(val, BT848_O_SCLOOP);
1566 break;
1567 case V4L2_CID_PRIVATE_COMBFILTER:
1568 btv->opt_combfilter = c->value;
1569 break;
1570 case V4L2_CID_PRIVATE_LUMAFILTER:
1571 btv->opt_lumafilter = c->value;
1572 if (btv->opt_lumafilter) {
1573 btand(~BT848_CONTROL_LDEC, BT848_E_CONTROL);
1574 btand(~BT848_CONTROL_LDEC, BT848_O_CONTROL);
1575 } else {
1576 btor(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1577 btor(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1578 }
1579 break;
1580 case V4L2_CID_PRIVATE_AUTOMUTE:
1581 btv->opt_automute = c->value;
1582 break;
1583 case V4L2_CID_PRIVATE_AGC_CRUSH:
1584 btv->opt_adc_crush = c->value;
1585 btwrite(BT848_ADC_RESERVED |
1586 (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
1587 BT848_ADC);
1588 break;
1589 case V4L2_CID_PRIVATE_VCR_HACK:
1590 btv->opt_vcr_hack = c->value;
1591 break;
1592 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1593 btv->opt_whitecrush_upper = c->value;
1594 btwrite(c->value, BT848_WC_UP);
1595 break;
1596 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1597 btv->opt_whitecrush_lower = c->value;
1598 btwrite(c->value, BT848_WC_DOWN);
1599 break;
1600 case V4L2_CID_PRIVATE_UV_RATIO:
1601 btv->opt_uv_ratio = c->value;
1602 bt848_sat(btv, btv->saturation);
1603 break;
1604 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1605 btv->opt_full_luma_range = c->value;
1606 btaor((c->value<<7), ~BT848_OFORM_RANGE, BT848_OFORM);
1607 break;
1608 case V4L2_CID_PRIVATE_CORING:
1609 btv->opt_coring = c->value;
1610 btaor((c->value<<5), ~BT848_OFORM_CORE32, BT848_OFORM);
1611 break;
1612 default:
1613 return -EINVAL;
1614 }
1615 return 0;
1616}
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618/* ----------------------------------------------------------------------- */
1619
1620void bttv_gpio_tracking(struct bttv *btv, char *comment)
1621{
1622 unsigned int outbits, data;
1623 outbits = btread(BT848_GPIO_OUT_EN);
1624 data = btread(BT848_GPIO_DATA);
1625 printk(KERN_DEBUG "bttv%d: gpio: en=%08x, out=%08x in=%08x [%s]\n",
1626 btv->c.nr,outbits,data & outbits, data & ~outbits, comment);
1627}
1628
1629static void bttv_field_count(struct bttv *btv)
1630{
1631 int need_count = 0;
1632
1633 if (btv->users)
1634 need_count++;
1635
1636 if (need_count) {
1637 /* start field counter */
1638 btor(BT848_INT_VSYNC,BT848_INT_MASK);
1639 } else {
1640 /* stop field counter */
1641 btand(~BT848_INT_VSYNC,BT848_INT_MASK);
1642 btv->field_count = 0;
1643 }
1644}
1645
1646static const struct bttv_format*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647format_by_fourcc(int fourcc)
1648{
1649 unsigned int i;
1650
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001651 for (i = 0; i < FORMATS; i++) {
1652 if (-1 == formats[i].fourcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 continue;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001654 if (formats[i].fourcc == fourcc)
1655 return formats+i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 return NULL;
1658}
1659
1660/* ----------------------------------------------------------------------- */
1661/* misc helpers */
1662
1663static int
1664bttv_switch_overlay(struct bttv *btv, struct bttv_fh *fh,
1665 struct bttv_buffer *new)
1666{
1667 struct bttv_buffer *old;
1668 unsigned long flags;
1669 int retval = 0;
1670
1671 dprintk("switch_overlay: enter [new=%p]\n",new);
1672 if (new)
Brandon Philips0fc06862007-11-06 20:02:36 -03001673 new->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 spin_lock_irqsave(&btv->s_lock,flags);
1675 old = btv->screen;
1676 btv->screen = new;
1677 btv->loop_irq |= 1;
1678 bttv_set_dma(btv, 0x03);
1679 spin_unlock_irqrestore(&btv->s_lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (NULL != old) {
1681 dprintk("switch_overlay: old=%p state is %d\n",old,old->vb.state);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001682 bttv_dma_free(&fh->cap,btv, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 kfree(old);
1684 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03001685 if (NULL == new)
1686 free_btres(btv,fh,RESOURCE_OVERLAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 dprintk("switch_overlay: done\n");
1688 return retval;
1689}
1690
1691/* ----------------------------------------------------------------------- */
1692/* video4linux (1) interface */
1693
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001694static int bttv_prepare_buffer(struct videobuf_queue *q,struct bttv *btv,
1695 struct bttv_buffer *buf,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001696 const struct bttv_format *fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 unsigned int width, unsigned int height,
1698 enum v4l2_field field)
1699{
Michael Schimeke5bd0262007-01-18 16:17:39 -03001700 struct bttv_fh *fh = q->priv_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 int redo_dma_risc = 0;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001702 struct bttv_crop c;
1703 int norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 int rc;
1705
1706 /* check settings */
1707 if (NULL == fmt)
1708 return -EINVAL;
1709 if (fmt->btformat == BT848_COLOR_FMT_RAW) {
1710 width = RAW_BPL;
1711 height = RAW_LINES*2;
1712 if (width*height > buf->vb.bsize)
1713 return -EINVAL;
1714 buf->vb.size = buf->vb.bsize;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001715
1716 /* Make sure tvnorm and vbi_end remain consistent
1717 until we're done. */
1718 mutex_lock(&btv->lock);
1719
1720 norm = btv->tvnorm;
1721
1722 /* In this mode capturing always starts at defrect.top
1723 (default VDELAY), ignoring cropping parameters. */
1724 if (btv->vbi_end > bttv_tvnorms[norm].cropcap.defrect.top) {
1725 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001727 }
1728
1729 mutex_unlock(&btv->lock);
1730
1731 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1732 } else {
1733 mutex_lock(&btv->lock);
1734
1735 norm = btv->tvnorm;
1736 c = btv->crop[!!fh->do_crop];
1737
1738 mutex_unlock(&btv->lock);
1739
1740 if (width < c.min_scaled_width ||
1741 width > c.max_scaled_width ||
1742 height < c.min_scaled_height)
1743 return -EINVAL;
1744
1745 switch (field) {
1746 case V4L2_FIELD_TOP:
1747 case V4L2_FIELD_BOTTOM:
1748 case V4L2_FIELD_ALTERNATE:
1749 /* btv->crop counts frame lines. Max. scale
1750 factor is 16:1 for frames, 8:1 for fields. */
1751 if (height * 2 > c.max_scaled_height)
1752 return -EINVAL;
1753 break;
1754
1755 default:
1756 if (height > c.max_scaled_height)
1757 return -EINVAL;
1758 break;
1759 }
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 buf->vb.size = (width * height * fmt->depth) >> 3;
1762 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
1763 return -EINVAL;
1764 }
1765
1766 /* alloc + fill struct bttv_buffer (if changed) */
1767 if (buf->vb.width != width || buf->vb.height != height ||
1768 buf->vb.field != field ||
Michael Schimeke5bd0262007-01-18 16:17:39 -03001769 buf->tvnorm != norm || buf->fmt != fmt ||
1770 buf->crop.top != c.rect.top ||
1771 buf->crop.left != c.rect.left ||
1772 buf->crop.width != c.rect.width ||
1773 buf->crop.height != c.rect.height) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 buf->vb.width = width;
1775 buf->vb.height = height;
1776 buf->vb.field = field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001777 buf->tvnorm = norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 buf->fmt = fmt;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001779 buf->crop = c.rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 redo_dma_risc = 1;
1781 }
1782
1783 /* alloc risc memory */
Brandon Philips0fc06862007-11-06 20:02:36 -03001784 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 redo_dma_risc = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001786 if (0 != (rc = videobuf_iolock(q,&buf->vb,&btv->fbuf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 goto fail;
1788 }
1789
1790 if (redo_dma_risc)
1791 if (0 != (rc = bttv_buffer_risc(btv,buf)))
1792 goto fail;
1793
Brandon Philips0fc06862007-11-06 20:02:36 -03001794 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return 0;
1796
1797 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001798 bttv_dma_free(q,btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return rc;
1800}
1801
1802static int
1803buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1804{
1805 struct bttv_fh *fh = q->priv_data;
1806
1807 *size = fh->fmt->depth*fh->width*fh->height >> 3;
1808 if (0 == *count)
1809 *count = gbuffers;
1810 while (*size * *count > gbuffers * gbufsize)
1811 (*count)--;
1812 return 0;
1813}
1814
1815static int
1816buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
1817 enum v4l2_field field)
1818{
1819 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1820 struct bttv_fh *fh = q->priv_data;
1821
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001822 return bttv_prepare_buffer(q,fh->btv, buf, fh->fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 fh->width, fh->height, field);
1824}
1825
1826static void
1827buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1828{
1829 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1830 struct bttv_fh *fh = q->priv_data;
1831 struct bttv *btv = fh->btv;
1832
Brandon Philips0fc06862007-11-06 20:02:36 -03001833 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 list_add_tail(&buf->vb.queue,&btv->capture);
1835 if (!btv->curr.frame_irq) {
1836 btv->loop_irq |= 1;
1837 bttv_set_dma(btv, 0x03);
1838 }
1839}
1840
1841static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1842{
1843 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1844 struct bttv_fh *fh = q->priv_data;
1845
Michael Schimekfeaba7a2007-01-26 08:30:05 -03001846 bttv_dma_free(q,fh->btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
1849static struct videobuf_queue_ops bttv_video_qops = {
1850 .buf_setup = buffer_setup,
1851 .buf_prepare = buffer_prepare,
1852 .buf_queue = buffer_queue,
1853 .buf_release = buffer_release,
1854};
1855
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001856static int bttv_s_std(struct file *file, void *priv, v4l2_std_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001858 struct bttv_fh *fh = priv;
1859 struct bttv *btv = fh->btv;
1860 unsigned int i;
1861 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001863 err = v4l2_prio_check(&btv->prio, &fh->prio);
1864 if (0 != err)
1865 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001867 for (i = 0; i < BTTV_TVNORMS; i++)
1868 if (*id & bttv_tvnorms[i].v4l2_id)
1869 break;
1870 if (i == BTTV_TVNORMS)
1871 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001873 mutex_lock(&btv->lock);
1874 set_tvnorm(btv, i);
1875 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001877 return 0;
1878}
1879
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001880static int bttv_querystd(struct file *file, void *f, v4l2_std_id *id)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001881{
1882 struct bttv_fh *fh = f;
1883 struct bttv *btv = fh->btv;
1884
1885 if (btread(BT848_DSTATUS) & BT848_DSTATUS_NUML)
1886 *id = V4L2_STD_625_50;
1887 else
1888 *id = V4L2_STD_525_60;
1889 return 0;
1890}
1891
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001892static int bttv_enum_input(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001893 struct v4l2_input *i)
1894{
1895 struct bttv_fh *fh = priv;
1896 struct bttv *btv = fh->btv;
Trent Piepho522a5f12009-03-04 01:21:03 -03001897 int n;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001898
Trent Piepho522a5f12009-03-04 01:21:03 -03001899 if (i->index >= bttv_tvcards[btv->c.type].video_inputs)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001900 return -EINVAL;
1901
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001902 i->type = V4L2_INPUT_TYPE_CAMERA;
1903 i->audioset = 1;
1904
Trent Piephoabb03622009-01-28 21:32:59 -03001905 if (btv->tuner_type != TUNER_ABSENT && i->index == 0) {
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001906 sprintf(i->name, "Television");
1907 i->type = V4L2_INPUT_TYPE_TUNER;
1908 i->tuner = 0;
1909 } else if (i->index == btv->svhs) {
1910 sprintf(i->name, "S-Video");
1911 } else {
1912 sprintf(i->name, "Composite%d", i->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001915 if (i->index == btv->input) {
1916 __u32 dstatus = btread(BT848_DSTATUS);
1917 if (0 == (dstatus & BT848_DSTATUS_PRES))
1918 i->status |= V4L2_IN_ST_NO_SIGNAL;
1919 if (0 == (dstatus & BT848_DSTATUS_HLOC))
1920 i->status |= V4L2_IN_ST_NO_H_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001923 for (n = 0; n < BTTV_TVNORMS; n++)
1924 i->std |= bttv_tvnorms[n].v4l2_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001926 return 0;
1927}
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001928
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001929static int bttv_g_input(struct file *file, void *priv, unsigned int *i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001930{
1931 struct bttv_fh *fh = priv;
1932 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001934 *i = btv->input;
1935 return 0;
1936}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001938static int bttv_s_input(struct file *file, void *priv, unsigned int i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001939{
1940 struct bttv_fh *fh = priv;
1941 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001943 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001945 err = v4l2_prio_check(&btv->prio, &fh->prio);
1946 if (0 != err)
1947 return err;
1948
1949 if (i > bttv_tvcards[btv->c.type].video_inputs)
1950 return -EINVAL;
1951
1952 mutex_lock(&btv->lock);
1953 set_input(btv, i, btv->tvnorm);
1954 mutex_unlock(&btv->lock);
1955 return 0;
1956}
1957
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001958static int bttv_s_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001959 struct v4l2_tuner *t)
1960{
1961 struct bttv_fh *fh = priv;
1962 struct bttv *btv = fh->btv;
1963 int err;
1964
1965 err = v4l2_prio_check(&btv->prio, &fh->prio);
1966 if (0 != err)
1967 return err;
1968
Trent Piephoabb03622009-01-28 21:32:59 -03001969 if (btv->tuner_type == TUNER_ABSENT)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001970 return -EINVAL;
1971
1972 if (0 != t->index)
1973 return -EINVAL;
1974
1975 mutex_lock(&btv->lock);
1976 bttv_call_i2c_clients(btv, VIDIOC_S_TUNER, t);
1977
1978 if (btv->audio_mode_gpio)
1979 btv->audio_mode_gpio(btv, t, 1);
1980
1981 mutex_unlock(&btv->lock);
1982
1983 return 0;
1984}
1985
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001986static int bttv_g_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001987 struct v4l2_frequency *f)
1988{
1989 struct bttv_fh *fh = priv;
1990 struct bttv *btv = fh->btv;
1991 int err;
1992
1993 err = v4l2_prio_check(&btv->prio, &fh->prio);
1994 if (0 != err)
1995 return err;
1996
Robert Fitzsimons1b069012008-04-01 11:41:54 -03001997 f->type = btv->radio_user ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001998 f->frequency = btv->freq;
1999
2000 return 0;
2001}
2002
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002003static int bttv_s_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002004 struct v4l2_frequency *f)
2005{
2006 struct bttv_fh *fh = priv;
2007 struct bttv *btv = fh->btv;
2008 int err;
2009
2010 err = v4l2_prio_check(&btv->prio, &fh->prio);
2011 if (0 != err)
2012 return err;
2013
2014 if (unlikely(f->tuner != 0))
2015 return -EINVAL;
Robert Fitzsimons1b069012008-04-01 11:41:54 -03002016 if (unlikely(f->type != (btv->radio_user
2017 ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV)))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002018 return -EINVAL;
2019 mutex_lock(&btv->lock);
2020 btv->freq = f->frequency;
2021 bttv_call_i2c_clients(btv, VIDIOC_S_FREQUENCY, f);
2022 if (btv->has_matchbox && btv->radio_user)
2023 tea5757_set_freq(btv, btv->freq);
2024 mutex_unlock(&btv->lock);
2025 return 0;
2026}
2027
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002028static int bttv_log_status(struct file *file, void *f)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002029{
2030 struct bttv_fh *fh = f;
2031 struct bttv *btv = fh->btv;
2032
2033 printk(KERN_INFO "bttv%d: ======== START STATUS CARD #%d ========\n",
2034 btv->c.nr, btv->c.nr);
2035 bttv_call_i2c_clients(btv, VIDIOC_LOG_STATUS, NULL);
2036 printk(KERN_INFO "bttv%d: ======== END STATUS CARD #%d ========\n",
2037 btv->c.nr, btv->c.nr);
2038 return 0;
2039}
2040
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002041#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002042static int bttv_g_register(struct file *file, void *f,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002043 struct v4l2_dbg_register *reg)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002044{
2045 struct bttv_fh *fh = f;
2046 struct bttv *btv = fh->btv;
2047
2048 if (!capable(CAP_SYS_ADMIN))
2049 return -EPERM;
2050
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002051 if (!v4l2_chip_match_host(&reg->match))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002052 return -EINVAL;
2053
2054 /* bt848 has a 12-bit register space */
2055 reg->reg &= 0xfff;
2056 reg->val = btread(reg->reg);
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002057 reg->size = 1;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002058
2059 return 0;
2060}
2061
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002062static int bttv_s_register(struct file *file, void *f,
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002063 struct v4l2_dbg_register *reg)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002064{
2065 struct bttv_fh *fh = f;
2066 struct bttv *btv = fh->btv;
2067
2068 if (!capable(CAP_SYS_ADMIN))
2069 return -EPERM;
2070
Hans Verkuilaecde8b2008-12-30 07:14:19 -03002071 if (!v4l2_chip_match_host(&reg->match))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002072 return -EINVAL;
2073
2074 /* bt848 has a 12-bit register space */
2075 reg->reg &= 0xfff;
2076 btwrite(reg->val, reg->reg);
2077
2078 return 0;
2079}
2080#endif
2081
Michael Schimeke5bd0262007-01-18 16:17:39 -03002082/* Given cropping boundaries b and the scaled width and height of a
2083 single field or frame, which must not exceed hardware limits, this
2084 function adjusts the cropping parameters c. */
2085static void
2086bttv_crop_adjust (struct bttv_crop * c,
2087 const struct v4l2_rect * b,
2088 __s32 width,
2089 __s32 height,
2090 enum v4l2_field field)
2091{
2092 __s32 frame_height = height << !V4L2_FIELD_HAS_BOTH(field);
2093 __s32 max_left;
2094 __s32 max_top;
2095
2096 if (width < c->min_scaled_width) {
2097 /* Max. hor. scale factor 16:1. */
2098 c->rect.width = width * 16;
2099 } else if (width > c->max_scaled_width) {
2100 /* Min. hor. scale factor 1:1. */
2101 c->rect.width = width;
2102
2103 max_left = b->left + b->width - width;
2104 max_left = min(max_left, (__s32) MAX_HDELAY);
2105 if (c->rect.left > max_left)
2106 c->rect.left = max_left;
2107 }
2108
2109 if (height < c->min_scaled_height) {
2110 /* Max. vert. scale factor 16:1, single fields 8:1. */
2111 c->rect.height = height * 16;
2112 } else if (frame_height > c->max_scaled_height) {
2113 /* Min. vert. scale factor 1:1.
2114 Top and height count field lines times two. */
2115 c->rect.height = (frame_height + 1) & ~1;
2116
2117 max_top = b->top + b->height - c->rect.height;
2118 if (c->rect.top > max_top)
2119 c->rect.top = max_top;
2120 }
2121
2122 bttv_crop_calc_limits(c);
2123}
2124
2125/* Returns an error if scaling to a frame or single field with the given
2126 width and height is not possible with the current cropping parameters
2127 and width aligned according to width_mask. If adjust_size is TRUE the
2128 function may adjust the width and/or height instead, rounding width
2129 to (width + width_bias) & width_mask. If adjust_crop is TRUE it may
2130 also adjust the current cropping parameters to get closer to the
2131 desired image size. */
2132static int
2133limit_scaled_size (struct bttv_fh * fh,
2134 __s32 * width,
2135 __s32 * height,
2136 enum v4l2_field field,
2137 unsigned int width_mask,
2138 unsigned int width_bias,
2139 int adjust_size,
2140 int adjust_crop)
2141{
2142 struct bttv *btv = fh->btv;
2143 const struct v4l2_rect *b;
2144 struct bttv_crop *c;
2145 __s32 min_width;
2146 __s32 min_height;
2147 __s32 max_width;
2148 __s32 max_height;
2149 int rc;
2150
2151 BUG_ON((int) width_mask >= 0 ||
2152 width_bias >= (unsigned int) -width_mask);
2153
2154 /* Make sure tvnorm, vbi_end and the current cropping parameters
2155 remain consistent until we're done. */
2156 mutex_lock(&btv->lock);
2157
2158 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
2159
2160 /* Do crop - use current, don't - use default parameters. */
2161 c = &btv->crop[!!fh->do_crop];
2162
2163 if (fh->do_crop
2164 && adjust_size
2165 && adjust_crop
2166 && !locked_btres(btv, VIDEO_RESOURCES)) {
2167 min_width = 48;
2168 min_height = 32;
2169
2170 /* We cannot scale up. When the scaled image is larger
2171 than crop.rect we adjust the crop.rect as required
2172 by the V4L2 spec, hence cropcap.bounds are our limit. */
2173 max_width = min(b->width, (__s32) MAX_HACTIVE);
2174 max_height = b->height;
2175
2176 /* We cannot capture the same line as video and VBI data.
2177 Note btv->vbi_end is really a minimum, see
2178 bttv_vbi_try_fmt(). */
2179 if (btv->vbi_end > b->top) {
2180 max_height -= btv->vbi_end - b->top;
2181 rc = -EBUSY;
2182 if (min_height > max_height)
2183 goto fail;
2184 }
2185 } else {
2186 rc = -EBUSY;
2187 if (btv->vbi_end > c->rect.top)
2188 goto fail;
2189
2190 min_width = c->min_scaled_width;
2191 min_height = c->min_scaled_height;
2192 max_width = c->max_scaled_width;
2193 max_height = c->max_scaled_height;
2194
2195 adjust_crop = 0;
2196 }
2197
2198 min_width = (min_width - width_mask - 1) & width_mask;
2199 max_width = max_width & width_mask;
2200
2201 /* Max. scale factor is 16:1 for frames, 8:1 for fields. */
2202 min_height = min_height;
2203 /* Min. scale factor is 1:1. */
2204 max_height >>= !V4L2_FIELD_HAS_BOTH(field);
2205
2206 if (adjust_size) {
2207 *width = clamp(*width, min_width, max_width);
2208 *height = clamp(*height, min_height, max_height);
2209
2210 /* Round after clamping to avoid overflow. */
2211 *width = (*width + width_bias) & width_mask;
2212
2213 if (adjust_crop) {
2214 bttv_crop_adjust(c, b, *width, *height, field);
2215
2216 if (btv->vbi_end > c->rect.top) {
2217 /* Move the crop window out of the way. */
2218 c->rect.top = btv->vbi_end;
2219 }
2220 }
2221 } else {
2222 rc = -EINVAL;
2223 if (*width < min_width ||
2224 *height < min_height ||
2225 *width > max_width ||
2226 *height > max_height ||
2227 0 != (*width & ~width_mask))
2228 goto fail;
2229 }
2230
2231 rc = 0; /* success */
2232
2233 fail:
2234 mutex_unlock(&btv->lock);
2235
2236 return rc;
2237}
2238
2239/* Returns an error if the given overlay window dimensions are not
2240 possible with the current cropping parameters. If adjust_size is
2241 TRUE the function may adjust the window width and/or height
2242 instead, however it always rounds the horizontal position and
2243 width as btcx_align() does. If adjust_crop is TRUE the function
2244 may also adjust the current cropping parameters to get closer
2245 to the desired window size. */
2246static int
2247verify_window (struct bttv_fh * fh,
2248 struct v4l2_window * win,
2249 int adjust_size,
2250 int adjust_crop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 enum v4l2_field field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002253 unsigned int width_mask;
2254 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 if (win->w.width < 48 || win->w.height < 32)
2257 return -EINVAL;
2258 if (win->clipcount > 2048)
2259 return -EINVAL;
2260
2261 field = win->field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (V4L2_FIELD_ANY == field) {
Michael Schimeke5bd0262007-01-18 16:17:39 -03002264 __s32 height2;
2265
2266 height2 = fh->btv->crop[!!fh->do_crop].rect.height >> 1;
2267 field = (win->w.height > height2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 ? V4L2_FIELD_INTERLACED
2269 : V4L2_FIELD_TOP;
2270 }
2271 switch (field) {
2272 case V4L2_FIELD_TOP:
2273 case V4L2_FIELD_BOTTOM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 case V4L2_FIELD_INTERLACED:
2275 break;
2276 default:
2277 return -EINVAL;
2278 }
2279
Michael Schimeke5bd0262007-01-18 16:17:39 -03002280 /* 4-byte alignment. */
2281 if (NULL == fh->ovfmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002283 width_mask = ~0;
2284 switch (fh->ovfmt->depth) {
2285 case 8:
2286 case 24:
2287 width_mask = ~3;
2288 break;
2289 case 16:
2290 width_mask = ~1;
2291 break;
2292 case 32:
2293 break;
2294 default:
2295 BUG();
2296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Michael Schimeke5bd0262007-01-18 16:17:39 -03002298 win->w.width -= win->w.left & ~width_mask;
2299 win->w.left = (win->w.left - width_mask - 1) & width_mask;
2300
2301 rc = limit_scaled_size(fh, &win->w.width, &win->w.height,
2302 field, width_mask,
2303 /* width_bias: round down */ 0,
2304 adjust_size, adjust_crop);
2305 if (0 != rc)
2306 return rc;
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 win->field = field;
2309 return 0;
2310}
2311
2312static int setup_window(struct bttv_fh *fh, struct bttv *btv,
2313 struct v4l2_window *win, int fixup)
2314{
2315 struct v4l2_clip *clips = NULL;
2316 int n,size,retval = 0;
2317
2318 if (NULL == fh->ovfmt)
2319 return -EINVAL;
2320 if (!(fh->ovfmt->flags & FORMAT_FLAGS_PACKED))
2321 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002322 retval = verify_window(fh, win,
2323 /* adjust_size */ fixup,
2324 /* adjust_crop */ fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (0 != retval)
2326 return retval;
2327
2328 /* copy clips -- luckily v4l1 + v4l2 are binary
2329 compatible here ...*/
2330 n = win->clipcount;
2331 size = sizeof(*clips)*(n+4);
2332 clips = kmalloc(size,GFP_KERNEL);
2333 if (NULL == clips)
2334 return -ENOMEM;
2335 if (n > 0) {
2336 if (copy_from_user(clips,win->clips,sizeof(struct v4l2_clip)*n)) {
2337 kfree(clips);
2338 return -EFAULT;
2339 }
2340 }
2341 /* clip against screen */
2342 if (NULL != btv->fbuf.base)
2343 n = btcx_screen_clips(btv->fbuf.fmt.width, btv->fbuf.fmt.height,
2344 &win->w, clips, n);
2345 btcx_sort_clips(clips,n);
2346
2347 /* 4-byte alignments */
2348 switch (fh->ovfmt->depth) {
2349 case 8:
2350 case 24:
2351 btcx_align(&win->w, clips, n, 3);
2352 break;
2353 case 16:
2354 btcx_align(&win->w, clips, n, 1);
2355 break;
2356 case 32:
2357 /* no alignment fixups needed */
2358 break;
2359 default:
2360 BUG();
2361 }
2362
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002363 mutex_lock(&fh->cap.vb_lock);
2364 kfree(fh->ov.clips);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 fh->ov.clips = clips;
2366 fh->ov.nclips = n;
2367
2368 fh->ov.w = win->w;
2369 fh->ov.field = win->field;
2370 fh->ov.setup_ok = 1;
2371 btv->init.ov.w.width = win->w.width;
2372 btv->init.ov.w.height = win->w.height;
2373 btv->init.ov.field = win->field;
2374
2375 /* update overlay if needed */
2376 retval = 0;
2377 if (check_btres(fh, RESOURCE_OVERLAY)) {
2378 struct bttv_buffer *new;
2379
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002380 new = videobuf_sg_alloc(sizeof(*new));
Michael Schimeke5bd0262007-01-18 16:17:39 -03002381 new->crop = btv->crop[!!fh->do_crop].rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2383 retval = bttv_switch_overlay(btv,fh,new);
2384 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002385 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 return retval;
2387}
2388
2389/* ----------------------------------------------------------------------- */
2390
2391static struct videobuf_queue* bttv_queue(struct bttv_fh *fh)
2392{
2393 struct videobuf_queue* q = NULL;
2394
2395 switch (fh->type) {
2396 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2397 q = &fh->cap;
2398 break;
2399 case V4L2_BUF_TYPE_VBI_CAPTURE:
2400 q = &fh->vbi;
2401 break;
2402 default:
2403 BUG();
2404 }
2405 return q;
2406}
2407
2408static int bttv_resource(struct bttv_fh *fh)
2409{
2410 int res = 0;
2411
2412 switch (fh->type) {
2413 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Michael Schimeke5bd0262007-01-18 16:17:39 -03002414 res = RESOURCE_VIDEO_STREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 break;
2416 case V4L2_BUF_TYPE_VBI_CAPTURE:
2417 res = RESOURCE_VBI;
2418 break;
2419 default:
2420 BUG();
2421 }
2422 return res;
2423}
2424
2425static int bttv_switch_type(struct bttv_fh *fh, enum v4l2_buf_type type)
2426{
2427 struct videobuf_queue *q = bttv_queue(fh);
2428 int res = bttv_resource(fh);
2429
2430 if (check_btres(fh,res))
2431 return -EBUSY;
2432 if (videobuf_queue_is_busy(q))
2433 return -EBUSY;
2434 fh->type = type;
2435 return 0;
2436}
2437
Michael H. Schimekc87c9482005-12-01 00:51:33 -08002438static void
2439pix_format_set_size (struct v4l2_pix_format * f,
2440 const struct bttv_format * fmt,
2441 unsigned int width,
2442 unsigned int height)
2443{
2444 f->width = width;
2445 f->height = height;
2446
2447 if (fmt->flags & FORMAT_FLAGS_PLANAR) {
2448 f->bytesperline = width; /* Y plane */
2449 f->sizeimage = (width * height * fmt->depth) >> 3;
2450 } else {
2451 f->bytesperline = (width * fmt->depth) >> 3;
2452 f->sizeimage = height * f->bytesperline;
2453 }
2454}
2455
Hans Verkuil78b526a2008-05-28 12:16:41 -03002456static int bttv_g_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002457 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002459 struct bttv_fh *fh = priv;
2460
2461 pix_format_set_size(&f->fmt.pix, fh->fmt,
2462 fh->width, fh->height);
2463 f->fmt.pix.field = fh->cap.field;
2464 f->fmt.pix.pixelformat = fh->fmt->fourcc;
2465
2466 return 0;
2467}
2468
Hans Verkuil78b526a2008-05-28 12:16:41 -03002469static int bttv_g_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002470 struct v4l2_format *f)
2471{
2472 struct bttv_fh *fh = priv;
2473
2474 f->fmt.win.w = fh->ov.w;
2475 f->fmt.win.field = fh->ov.field;
2476
2477 return 0;
2478}
2479
Hans Verkuil78b526a2008-05-28 12:16:41 -03002480static int bttv_try_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002481 struct v4l2_format *f)
2482{
2483 const struct bttv_format *fmt;
2484 struct bttv_fh *fh = priv;
2485 struct bttv *btv = fh->btv;
2486 enum v4l2_field field;
2487 __s32 width, height;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002488 int rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002489
2490 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
2491 if (NULL == fmt)
2492 return -EINVAL;
2493
2494 field = f->fmt.pix.field;
2495
2496 if (V4L2_FIELD_ANY == field) {
2497 __s32 height2;
2498
2499 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
2500 field = (f->fmt.pix.height > height2)
2501 ? V4L2_FIELD_INTERLACED
2502 : V4L2_FIELD_BOTTOM;
2503 }
2504
2505 if (V4L2_FIELD_SEQ_BT == field)
2506 field = V4L2_FIELD_SEQ_TB;
2507
2508 switch (field) {
2509 case V4L2_FIELD_TOP:
2510 case V4L2_FIELD_BOTTOM:
2511 case V4L2_FIELD_ALTERNATE:
2512 case V4L2_FIELD_INTERLACED:
2513 break;
2514 case V4L2_FIELD_SEQ_TB:
2515 if (fmt->flags & FORMAT_FLAGS_PLANAR)
2516 return -EINVAL;
2517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 default:
2519 return -EINVAL;
2520 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002521
2522 width = f->fmt.pix.width;
2523 height = f->fmt.pix.height;
2524
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002525 rc = limit_scaled_size(fh, &width, &height, field,
2526 /* width_mask: 4 pixels */ ~3,
2527 /* width_bias: nearest */ 2,
2528 /* adjust_size */ 1,
2529 /* adjust_crop */ 0);
2530 if (0 != rc)
2531 return rc;
2532
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002533 /* update data for the application */
2534 f->fmt.pix.field = field;
2535 pix_format_set_size(&f->fmt.pix, fmt, width, height);
2536
2537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538}
2539
Hans Verkuil78b526a2008-05-28 12:16:41 -03002540static int bttv_try_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002541 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002543 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002545 return verify_window(fh, &f->fmt.win,
2546 /* adjust_size */ 1,
2547 /* adjust_crop */ 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
Hans Verkuil78b526a2008-05-28 12:16:41 -03002550static int bttv_s_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002551 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
2553 int retval;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002554 const struct bttv_format *fmt;
2555 struct bttv_fh *fh = priv;
2556 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002557 __s32 width, height;
2558 enum v4l2_field field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002560 retval = bttv_switch_type(fh, f->type);
2561 if (0 != retval)
2562 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Hans Verkuil78b526a2008-05-28 12:16:41 -03002564 retval = bttv_try_fmt_vid_cap(file, priv, f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002565 if (0 != retval)
2566 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002568 width = f->fmt.pix.width;
2569 height = f->fmt.pix.height;
2570 field = f->fmt.pix.field;
2571
2572 retval = limit_scaled_size(fh, &width, &height, f->fmt.pix.field,
2573 /* width_mask: 4 pixels */ ~3,
2574 /* width_bias: nearest */ 2,
2575 /* adjust_size */ 1,
2576 /* adjust_crop */ 1);
2577 if (0 != retval)
2578 return retval;
2579
2580 f->fmt.pix.field = field;
2581
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002582 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002584 /* update our state informations */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002585 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002586 fh->fmt = fmt;
2587 fh->cap.field = f->fmt.pix.field;
2588 fh->cap.last = V4L2_FIELD_NONE;
2589 fh->width = f->fmt.pix.width;
2590 fh->height = f->fmt.pix.height;
2591 btv->init.fmt = fmt;
2592 btv->init.width = f->fmt.pix.width;
2593 btv->init.height = f->fmt.pix.height;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002594 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002595
2596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
Hans Verkuil78b526a2008-05-28 12:16:41 -03002599static int bttv_s_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002600 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002602 struct bttv_fh *fh = priv;
2603 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002605 if (no_overlay > 0) {
2606 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002607 return -EINVAL;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002608 }
Michael Krufky5e453dc2006-01-09 15:32:31 -02002609
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002610 return setup_window(fh, btv, &f->fmt.win, 1);
2611}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002613#ifdef CONFIG_VIDEO_V4L1_COMPAT
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002614static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
2615{
2616 int retval;
2617 unsigned int i;
2618 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002620 mutex_lock(&fh->cap.vb_lock);
Arjan van de Ven81b2dbc2008-05-20 09:53:52 -07002621 retval = __videobuf_mmap_setup(&fh->cap, gbuffers, gbufsize,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002622 V4L2_MEMORY_MMAP);
2623 if (retval < 0) {
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002624 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002625 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002627
2628 gbuffers = retval;
2629 memset(mbuf, 0, sizeof(*mbuf));
2630 mbuf->frames = gbuffers;
2631 mbuf->size = gbuffers * gbufsize;
2632
2633 for (i = 0; i < gbuffers; i++)
2634 mbuf->offsets[i] = i * gbufsize;
2635
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002636 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002637 return 0;
2638}
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002641static int bttv_querycap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002642 struct v4l2_capability *cap)
2643{
2644 struct bttv_fh *fh = priv;
2645 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002647 if (0 == v4l2)
2648 return -EINVAL;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07002649
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002650 strlcpy(cap->driver, "bttv", sizeof(cap->driver));
2651 strlcpy(cap->card, btv->video_dev->name, sizeof(cap->card));
2652 snprintf(cap->bus_info, sizeof(cap->bus_info),
2653 "PCI:%s", pci_name(btv->c.pci));
2654 cap->version = BTTV_VERSION_CODE;
2655 cap->capabilities =
2656 V4L2_CAP_VIDEO_CAPTURE |
2657 V4L2_CAP_VBI_CAPTURE |
2658 V4L2_CAP_READWRITE |
2659 V4L2_CAP_STREAMING;
2660 if (no_overlay <= 0)
2661 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Trent Piephoabb03622009-01-28 21:32:59 -03002663 if (btv->tuner_type != TUNER_ABSENT)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002664 cap->capabilities |= V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 return 0;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002666}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002668static int bttv_enum_fmt_cap_ovr(struct v4l2_fmtdesc *f)
2669{
2670 int index = -1, i;
2671
2672 for (i = 0; i < FORMATS; i++) {
2673 if (formats[i].fourcc != -1)
2674 index++;
2675 if ((unsigned int)index == f->index)
2676 break;
2677 }
2678 if (FORMATS == i)
2679 return -EINVAL;
2680
2681 f->pixelformat = formats[i].fourcc;
2682 strlcpy(f->description, formats[i].name, sizeof(f->description));
2683
2684 return i;
2685}
2686
Hans Verkuil78b526a2008-05-28 12:16:41 -03002687static int bttv_enum_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002688 struct v4l2_fmtdesc *f)
2689{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002690 int rc = bttv_enum_fmt_cap_ovr(f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002691
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002692 if (rc < 0)
2693 return rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002694
2695 return 0;
2696}
2697
Hans Verkuil78b526a2008-05-28 12:16:41 -03002698static int bttv_enum_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002699 struct v4l2_fmtdesc *f)
2700{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002701 int rc;
2702
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002703 if (no_overlay > 0) {
2704 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2705 return -EINVAL;
2706 }
2707
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002708 rc = bttv_enum_fmt_cap_ovr(f);
2709
2710 if (rc < 0)
2711 return rc;
2712
2713 if (!(formats[rc].flags & FORMAT_FLAGS_PACKED))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002714 return -EINVAL;
2715
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002716 return 0;
2717}
2718
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002719static int bttv_g_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002720 struct v4l2_framebuffer *fb)
2721{
2722 struct bttv_fh *fh = f;
2723 struct bttv *btv = fh->btv;
2724
2725 *fb = btv->fbuf;
2726 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2727 if (fh->ovfmt)
2728 fb->fmt.pixelformat = fh->ovfmt->fourcc;
2729 return 0;
2730}
2731
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002732static int bttv_overlay(struct file *file, void *f, unsigned int on)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002733{
2734 struct bttv_fh *fh = f;
2735 struct bttv *btv = fh->btv;
2736 struct bttv_buffer *new;
2737 int retval;
2738
2739 if (on) {
2740 /* verify args */
2741 if (NULL == btv->fbuf.base)
2742 return -EINVAL;
2743 if (!fh->ov.setup_ok) {
2744 dprintk("bttv%d: overlay: !setup_ok\n", btv->c.nr);
2745 return -EINVAL;
2746 }
2747 }
2748
2749 if (!check_alloc_btres(btv, fh, RESOURCE_OVERLAY))
2750 return -EBUSY;
2751
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002752 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002753 if (on) {
2754 fh->ov.tvnorm = btv->tvnorm;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002755 new = videobuf_sg_alloc(sizeof(*new));
Robert Fitzsimons7c018802008-02-13 16:38:11 -03002756 new->crop = btv->crop[!!fh->do_crop].rect;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002757 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2758 } else {
2759 new = NULL;
2760 }
2761
2762 /* switch over */
2763 retval = bttv_switch_overlay(btv, fh, new);
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002764 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 return retval;
2766}
2767
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002768static int bttv_s_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002769 struct v4l2_framebuffer *fb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002771 struct bttv_fh *fh = f;
2772 struct bttv *btv = fh->btv;
2773 const struct bttv_format *fmt;
2774 int retval;
2775
2776 if (!capable(CAP_SYS_ADMIN) &&
2777 !capable(CAP_SYS_RAWIO))
2778 return -EPERM;
2779
2780 /* check args */
2781 fmt = format_by_fourcc(fb->fmt.pixelformat);
2782 if (NULL == fmt)
2783 return -EINVAL;
2784 if (0 == (fmt->flags & FORMAT_FLAGS_PACKED))
2785 return -EINVAL;
2786
2787 retval = -EINVAL;
2788 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2789 __s32 width = fb->fmt.width;
2790 __s32 height = fb->fmt.height;
2791
2792 retval = limit_scaled_size(fh, &width, &height,
2793 V4L2_FIELD_INTERLACED,
2794 /* width_mask */ ~3,
2795 /* width_bias */ 2,
2796 /* adjust_size */ 0,
2797 /* adjust_crop */ 0);
2798 if (0 != retval)
2799 return retval;
2800 }
2801
2802 /* ok, accept it */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002803 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002804 btv->fbuf.base = fb->base;
2805 btv->fbuf.fmt.width = fb->fmt.width;
2806 btv->fbuf.fmt.height = fb->fmt.height;
2807 if (0 != fb->fmt.bytesperline)
2808 btv->fbuf.fmt.bytesperline = fb->fmt.bytesperline;
2809 else
2810 btv->fbuf.fmt.bytesperline = btv->fbuf.fmt.width*fmt->depth/8;
2811
2812 retval = 0;
2813 fh->ovfmt = fmt;
2814 btv->init.ovfmt = fmt;
2815 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2816 fh->ov.w.left = 0;
2817 fh->ov.w.top = 0;
2818 fh->ov.w.width = fb->fmt.width;
2819 fh->ov.w.height = fb->fmt.height;
2820 btv->init.ov.w.width = fb->fmt.width;
2821 btv->init.ov.w.height = fb->fmt.height;
2822 kfree(fh->ov.clips);
2823 fh->ov.clips = NULL;
2824 fh->ov.nclips = 0;
2825
2826 if (check_btres(fh, RESOURCE_OVERLAY)) {
2827 struct bttv_buffer *new;
2828
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002829 new = videobuf_sg_alloc(sizeof(*new));
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002830 new->crop = btv->crop[!!fh->do_crop].rect;
2831 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2832 retval = bttv_switch_overlay(btv, fh, new);
2833 }
2834 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002835 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002836 return retval;
2837}
2838
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002839static int bttv_reqbufs(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002840 struct v4l2_requestbuffers *p)
2841{
2842 struct bttv_fh *fh = priv;
2843 return videobuf_reqbufs(bttv_queue(fh), p);
2844}
2845
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002846static int bttv_querybuf(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002847 struct v4l2_buffer *b)
2848{
2849 struct bttv_fh *fh = priv;
2850 return videobuf_querybuf(bttv_queue(fh), b);
2851}
2852
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002853static int bttv_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002854{
2855 struct bttv_fh *fh = priv;
2856 struct bttv *btv = fh->btv;
2857 int res = bttv_resource(fh);
2858
2859 if (!check_alloc_btres(btv, fh, res))
2860 return -EBUSY;
2861
2862 return videobuf_qbuf(bttv_queue(fh), b);
2863}
2864
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002865static int bttv_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002866{
2867 struct bttv_fh *fh = priv;
2868 return videobuf_dqbuf(bttv_queue(fh), b,
2869 file->f_flags & O_NONBLOCK);
2870}
2871
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002872static int bttv_streamon(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002873 enum v4l2_buf_type type)
2874{
2875 struct bttv_fh *fh = priv;
2876 struct bttv *btv = fh->btv;
2877 int res = bttv_resource(fh);
2878
2879 if (!check_alloc_btres(btv, fh, res))
2880 return -EBUSY;
2881 return videobuf_streamon(bttv_queue(fh));
2882}
2883
2884
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002885static int bttv_streamoff(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002886 enum v4l2_buf_type type)
2887{
2888 struct bttv_fh *fh = priv;
2889 struct bttv *btv = fh->btv;
2890 int retval;
2891 int res = bttv_resource(fh);
2892
2893
2894 retval = videobuf_streamoff(bttv_queue(fh));
2895 if (retval < 0)
2896 return retval;
2897 free_btres(btv, fh, res);
2898 return 0;
2899}
2900
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002901static int bttv_queryctrl(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002902 struct v4l2_queryctrl *c)
2903{
2904 struct bttv_fh *fh = priv;
2905 struct bttv *btv = fh->btv;
2906 const struct v4l2_queryctrl *ctrl;
2907
2908 if ((c->id < V4L2_CID_BASE ||
2909 c->id >= V4L2_CID_LASTP1) &&
2910 (c->id < V4L2_CID_PRIVATE_BASE ||
2911 c->id >= V4L2_CID_PRIVATE_LASTP1))
2912 return -EINVAL;
2913
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002914 if (!btv->volume_gpio && (c->id == V4L2_CID_AUDIO_VOLUME))
2915 *c = no_ctl;
2916 else {
2917 ctrl = ctrl_by_id(c->id);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002918
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002919 *c = (NULL != ctrl) ? *ctrl : no_ctl;
2920 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002921
2922 return 0;
2923}
2924
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002925static int bttv_g_parm(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002926 struct v4l2_streamparm *parm)
2927{
2928 struct bttv_fh *fh = f;
2929 struct bttv *btv = fh->btv;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002930
2931 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2932 return -EINVAL;
Trent Piepho51f0b8d2009-03-04 01:21:02 -03002933 v4l2_video_std_frame_period(bttv_tvnorms[btv->tvnorm].v4l2_id,
2934 &parm->parm.capture.timeperframe);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002935 return 0;
2936}
2937
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002938static int bttv_g_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002939 struct v4l2_tuner *t)
2940{
2941 struct bttv_fh *fh = priv;
2942 struct bttv *btv = fh->btv;
2943
Trent Piephoabb03622009-01-28 21:32:59 -03002944 if (btv->tuner_type == TUNER_ABSENT)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002945 return -EINVAL;
2946 if (0 != t->index)
2947 return -EINVAL;
2948
2949 mutex_lock(&btv->lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002950 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;
Trent Piepho4b10d3b2009-01-28 21:32:59 -03003212 struct bttv *btv = video_drvdata(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 struct bttv_fh *fh;
3214 enum v4l2_buf_type type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
3216 dprintk(KERN_DEBUG "bttv: open minor=%d\n",minor);
3217
Hans Verkuild56dc612008-07-30 08:43:36 -03003218 lock_kernel();
Trent Piepho4b10d3b2009-01-28 21:32:59 -03003219 if (btv->video_dev->minor == minor) {
3220 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3221 } else if (btv->vbi_dev->minor == minor) {
3222 type = V4L2_BUF_TYPE_VBI_CAPTURE;
3223 } else {
3224 WARN_ON(1);
Hans Verkuild56dc612008-07-30 08:43:36 -03003225 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 dprintk(KERN_DEBUG "bttv%d: open called (type=%s)\n",
3230 btv->c.nr,v4l2_type_names[type]);
3231
3232 /* allocate per filehandle data */
3233 fh = kmalloc(sizeof(*fh),GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003234 if (NULL == fh) {
3235 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 file->private_data = fh;
3239 *fh = btv->init;
3240 fh->type = type;
3241 fh->ov.setup_ok = 0;
3242 v4l2_prio_open(&btv->prio,&fh->prio);
3243
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003244 videobuf_queue_sg_init(&fh->cap, &bttv_video_qops,
3245 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 V4L2_BUF_TYPE_VIDEO_CAPTURE,
3247 V4L2_FIELD_INTERLACED,
3248 sizeof(struct bttv_buffer),
3249 fh);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003250 videobuf_queue_sg_init(&fh->vbi, &bttv_vbi_qops,
3251 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 V4L2_BUF_TYPE_VBI_CAPTURE,
3253 V4L2_FIELD_SEQ_TB,
3254 sizeof(struct bttv_buffer),
3255 fh);
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03003256 set_tvnorm(btv,btv->tvnorm);
Mauro Carvalho Chehabb46a9c82008-08-05 10:12:35 -03003257 set_input(btv, btv->input, btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259 btv->users++;
Michael Schimeke5bd0262007-01-18 16:17:39 -03003260
3261 /* The V4L2 spec requires one global set of cropping parameters
3262 which only change on request. These are stored in btv->crop[1].
3263 However for compatibility with V4L apps and cropping unaware
3264 V4L2 apps we now reset the cropping parameters as seen through
3265 this fh, which is to say VIDIOC_G_CROP and scaling limit checks
3266 will use btv->crop[0], the default cropping parameters for the
3267 current video standard, and VIDIOC_S_FMT will not implicitely
3268 change the cropping parameters until VIDIOC_S_CROP has been
3269 called. */
3270 fh->do_crop = !reset_crop; /* module parameter */
3271
3272 /* Likewise there should be one global set of VBI capture
3273 parameters, but for compatibility with V4L apps and earlier
3274 driver versions each fh has its own parameters. */
3275 bttv_vbi_fmt_reset(&fh->vbi_fmt, btv->tvnorm);
3276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 bttv_field_count(btv);
Hans Verkuild56dc612008-07-30 08:43:36 -03003278 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 return 0;
3280}
3281
Hans Verkuilbec43662008-12-30 06:58:20 -03003282static int bttv_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284 struct bttv_fh *fh = file->private_data;
3285 struct bttv *btv = fh->btv;
3286
3287 /* turn off overlay */
3288 if (check_btres(fh, RESOURCE_OVERLAY))
3289 bttv_switch_overlay(btv,fh,NULL);
3290
3291 /* stop video capture */
Michael Schimeke5bd0262007-01-18 16:17:39 -03003292 if (check_btres(fh, RESOURCE_VIDEO_STREAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 videobuf_streamoff(&fh->cap);
Michael Schimeke5bd0262007-01-18 16:17:39 -03003294 free_btres(btv,fh,RESOURCE_VIDEO_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 }
3296 if (fh->cap.read_buf) {
3297 buffer_release(&fh->cap,fh->cap.read_buf);
3298 kfree(fh->cap.read_buf);
3299 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03003300 if (check_btres(fh, RESOURCE_VIDEO_READ)) {
3301 free_btres(btv, fh, RESOURCE_VIDEO_READ);
3302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
3304 /* stop vbi capture */
3305 if (check_btres(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -03003306 videobuf_stop(&fh->vbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 free_btres(btv,fh,RESOURCE_VBI);
3308 }
3309
3310 /* free stuff */
3311 videobuf_mmap_free(&fh->cap);
3312 videobuf_mmap_free(&fh->vbi);
3313 v4l2_prio_close(&btv->prio,&fh->prio);
3314 file->private_data = NULL;
3315 kfree(fh);
3316
3317 btv->users--;
3318 bttv_field_count(btv);
Mauro Carvalho Chehabb46a9c82008-08-05 10:12:35 -03003319
3320 if (!btv->users)
3321 audio_mute(btv, 1);
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 return 0;
3324}
3325
3326static int
3327bttv_mmap(struct file *file, struct vm_area_struct *vma)
3328{
3329 struct bttv_fh *fh = file->private_data;
3330
3331 dprintk("bttv%d: mmap type=%s 0x%lx+%ld\n",
3332 fh->btv->c.nr, v4l2_type_names[fh->type],
3333 vma->vm_start, vma->vm_end - vma->vm_start);
3334 return videobuf_mmap_mapper(bttv_queue(fh),vma);
3335}
3336
Hans Verkuilbec43662008-12-30 06:58:20 -03003337static const struct v4l2_file_operations bttv_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
3339 .owner = THIS_MODULE,
3340 .open = bttv_open,
3341 .release = bttv_release,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003342 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 .read = bttv_read,
3344 .mmap = bttv_mmap,
3345 .poll = bttv_poll,
3346};
3347
Hans Verkuila3998102008-07-21 02:57:38 -03003348static const struct v4l2_ioctl_ops bttv_ioctl_ops = {
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003349 .vidioc_querycap = bttv_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03003350 .vidioc_enum_fmt_vid_cap = bttv_enum_fmt_vid_cap,
3351 .vidioc_g_fmt_vid_cap = bttv_g_fmt_vid_cap,
3352 .vidioc_try_fmt_vid_cap = bttv_try_fmt_vid_cap,
3353 .vidioc_s_fmt_vid_cap = bttv_s_fmt_vid_cap,
3354 .vidioc_enum_fmt_vid_overlay = bttv_enum_fmt_vid_overlay,
3355 .vidioc_g_fmt_vid_overlay = bttv_g_fmt_vid_overlay,
3356 .vidioc_try_fmt_vid_overlay = bttv_try_fmt_vid_overlay,
3357 .vidioc_s_fmt_vid_overlay = bttv_s_fmt_vid_overlay,
Hans Verkuil78b526a2008-05-28 12:16:41 -03003358 .vidioc_g_fmt_vbi_cap = bttv_g_fmt_vbi_cap,
3359 .vidioc_try_fmt_vbi_cap = bttv_try_fmt_vbi_cap,
3360 .vidioc_s_fmt_vbi_cap = bttv_s_fmt_vbi_cap,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003361 .vidioc_g_audio = bttv_g_audio,
3362 .vidioc_s_audio = bttv_s_audio,
3363 .vidioc_cropcap = bttv_cropcap,
3364 .vidioc_reqbufs = bttv_reqbufs,
3365 .vidioc_querybuf = bttv_querybuf,
3366 .vidioc_qbuf = bttv_qbuf,
3367 .vidioc_dqbuf = bttv_dqbuf,
3368 .vidioc_s_std = bttv_s_std,
3369 .vidioc_enum_input = bttv_enum_input,
3370 .vidioc_g_input = bttv_g_input,
3371 .vidioc_s_input = bttv_s_input,
3372 .vidioc_queryctrl = bttv_queryctrl,
3373 .vidioc_g_ctrl = bttv_g_ctrl,
3374 .vidioc_s_ctrl = bttv_s_ctrl,
3375 .vidioc_streamon = bttv_streamon,
3376 .vidioc_streamoff = bttv_streamoff,
3377 .vidioc_g_tuner = bttv_g_tuner,
3378 .vidioc_s_tuner = bttv_s_tuner,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003379#ifdef CONFIG_VIDEO_V4L1_COMPAT
3380 .vidiocgmbuf = vidiocgmbuf,
3381#endif
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003382 .vidioc_g_crop = bttv_g_crop,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003383 .vidioc_s_crop = bttv_s_crop,
3384 .vidioc_g_fbuf = bttv_g_fbuf,
3385 .vidioc_s_fbuf = bttv_s_fbuf,
3386 .vidioc_overlay = bttv_overlay,
3387 .vidioc_g_priority = bttv_g_priority,
3388 .vidioc_s_priority = bttv_s_priority,
3389 .vidioc_g_parm = bttv_g_parm,
3390 .vidioc_g_frequency = bttv_g_frequency,
3391 .vidioc_s_frequency = bttv_s_frequency,
3392 .vidioc_log_status = bttv_log_status,
3393 .vidioc_querystd = bttv_querystd,
Zoltan Devai43846832008-01-14 13:24:38 -03003394#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003395 .vidioc_g_register = bttv_g_register,
3396 .vidioc_s_register = bttv_s_register,
Zoltan Devai43846832008-01-14 13:24:38 -03003397#endif
Hans Verkuila3998102008-07-21 02:57:38 -03003398};
3399
3400static struct video_device bttv_video_template = {
3401 .fops = &bttv_fops,
3402 .minor = -1,
3403 .ioctl_ops = &bttv_ioctl_ops,
3404 .tvnorms = BTTV_NORMS,
3405 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406};
3407
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408/* ----------------------------------------------------------------------- */
3409/* radio interface */
3410
Hans Verkuilbec43662008-12-30 06:58:20 -03003411static int radio_open(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412{
Hans Verkuilbec43662008-12-30 06:58:20 -03003413 int minor = video_devdata(file)->minor;
Trent Piepho4b10d3b2009-01-28 21:32:59 -03003414 struct bttv *btv = video_drvdata(file);
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003415 struct bttv_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417 dprintk("bttv: open minor=%d\n",minor);
3418
Hans Verkuild56dc612008-07-30 08:43:36 -03003419 lock_kernel();
Trent Piepho4b10d3b2009-01-28 21:32:59 -03003420 WARN_ON(btv->radio_dev && btv->radio_dev->minor != minor);
3421 if (!btv->radio_dev || btv->radio_dev->minor != minor) {
Hans Verkuild56dc612008-07-30 08:43:36 -03003422 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
3426 dprintk("bttv%d: open called (radio)\n",btv->c.nr);
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003427
3428 /* allocate per filehandle data */
3429 fh = kmalloc(sizeof(*fh), GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003430 if (NULL == fh) {
3431 unlock_kernel();
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003432 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003433 }
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003434 file->private_data = fh;
3435 *fh = btv->init;
3436 v4l2_prio_open(&btv->prio, &fh->prio);
3437
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003438 mutex_lock(&btv->lock);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 btv->radio_user++;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003441
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003442 bttv_call_i2c_clients(btv,AUDC_SET_RADIO,NULL);
3443 audio_input(btv,TVAUDIO_INPUT_RADIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003445 mutex_unlock(&btv->lock);
Hans Verkuild56dc612008-07-30 08:43:36 -03003446 unlock_kernel();
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448}
3449
Hans Verkuilbec43662008-12-30 06:58:20 -03003450static int radio_release(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003452 struct bttv_fh *fh = file->private_data;
3453 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003454 struct rds_command cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Udo Steinbergb15dd792009-01-02 17:34:28 -03003456 v4l2_prio_close(&btv->prio,&fh->prio);
Robert Fitzsimonsb9bc07a2008-04-10 09:40:31 -03003457 file->private_data = NULL;
3458 kfree(fh);
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 btv->radio_user--;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003461
3462 bttv_call_i2c_clients(btv, RDS_CMD_CLOSE, &cmd);
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 return 0;
3465}
3466
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003467static int radio_querycap(struct file *file, void *priv,
3468 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003470 struct bttv_fh *fh = priv;
3471 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003473 strcpy(cap->driver, "bttv");
3474 strlcpy(cap->card, btv->radio_dev->name, sizeof(cap->card));
3475 sprintf(cap->bus_info, "PCI:%s", pci_name(btv->c.pci));
3476 cap->version = BTTV_VERSION_CODE;
3477 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 return 0;
3480}
3481
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003482static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003484 struct bttv_fh *fh = priv;
3485 struct bttv *btv = fh->btv;
3486
Trent Piephoabb03622009-01-28 21:32:59 -03003487 if (btv->tuner_type == TUNER_ABSENT)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003488 return -EINVAL;
3489 if (0 != t->index)
3490 return -EINVAL;
3491 mutex_lock(&btv->lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003492 strcpy(t->name, "Radio");
3493 t->type = V4L2_TUNER_RADIO;
3494
3495 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3496
3497 if (btv->audio_mode_gpio)
3498 btv->audio_mode_gpio(btv, t, 0);
3499
3500 mutex_unlock(&btv->lock);
3501
3502 return 0;
3503}
3504
3505static int radio_enum_input(struct file *file, void *priv,
3506 struct v4l2_input *i)
3507{
3508 if (i->index != 0)
3509 return -EINVAL;
3510
3511 strcpy(i->name, "Radio");
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003512 i->type = V4L2_INPUT_TYPE_TUNER;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003513
3514 return 0;
3515}
3516
3517static int radio_g_audio(struct file *file, void *priv,
3518 struct v4l2_audio *a)
3519{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003520 if (unlikely(a->index))
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003521 return -EINVAL;
3522
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003523 strcpy(a->name, "Radio");
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003524
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003525 return 0;
3526}
3527
3528static int radio_s_tuner(struct file *file, void *priv,
3529 struct v4l2_tuner *t)
3530{
3531 struct bttv_fh *fh = priv;
3532 struct bttv *btv = fh->btv;
3533
3534 if (0 != t->index)
3535 return -EINVAL;
3536
3537 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3538 return 0;
3539}
3540
3541static int radio_s_audio(struct file *file, void *priv,
3542 struct v4l2_audio *a)
3543{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003544 if (unlikely(a->index))
3545 return -EINVAL;
3546
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003547 return 0;
3548}
3549
3550static int radio_s_input(struct file *filp, void *priv, unsigned int i)
3551{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003552 if (unlikely(i))
3553 return -EINVAL;
3554
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003555 return 0;
3556}
3557
3558static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
3559{
3560 return 0;
3561}
3562
3563static int radio_queryctrl(struct file *file, void *priv,
3564 struct v4l2_queryctrl *c)
3565{
3566 const struct v4l2_queryctrl *ctrl;
3567
3568 if (c->id < V4L2_CID_BASE ||
3569 c->id >= V4L2_CID_LASTP1)
3570 return -EINVAL;
3571
3572 if (c->id == V4L2_CID_AUDIO_MUTE) {
3573 ctrl = ctrl_by_id(c->id);
3574 *c = *ctrl;
3575 } else
3576 *c = no_ctl;
3577
3578 return 0;
3579}
3580
3581static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
3582{
3583 *i = 0;
3584 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585}
3586
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003587static ssize_t radio_read(struct file *file, char __user *data,
3588 size_t count, loff_t *ppos)
3589{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003590 struct bttv_fh *fh = file->private_data;
3591 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003592 struct rds_command cmd;
3593 cmd.block_count = count/3;
3594 cmd.buffer = data;
3595 cmd.instance = file;
3596 cmd.result = -ENODEV;
3597
3598 bttv_call_i2c_clients(btv, RDS_CMD_READ, &cmd);
3599
3600 return cmd.result;
3601}
3602
3603static unsigned int radio_poll(struct file *file, poll_table *wait)
3604{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003605 struct bttv_fh *fh = file->private_data;
3606 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003607 struct rds_command cmd;
3608 cmd.instance = file;
3609 cmd.event_list = wait;
3610 cmd.result = -ENODEV;
3611 bttv_call_i2c_clients(btv, RDS_CMD_POLL, &cmd);
3612
3613 return cmd.result;
3614}
3615
Hans Verkuilbec43662008-12-30 06:58:20 -03003616static const struct v4l2_file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617{
3618 .owner = THIS_MODULE,
3619 .open = radio_open,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003620 .read = radio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 .release = radio_release,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003622 .ioctl = video_ioctl2,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003623 .poll = radio_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624};
3625
Hans Verkuila3998102008-07-21 02:57:38 -03003626static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003627 .vidioc_querycap = radio_querycap,
3628 .vidioc_g_tuner = radio_g_tuner,
3629 .vidioc_enum_input = radio_enum_input,
3630 .vidioc_g_audio = radio_g_audio,
3631 .vidioc_s_tuner = radio_s_tuner,
3632 .vidioc_s_audio = radio_s_audio,
3633 .vidioc_s_input = radio_s_input,
3634 .vidioc_s_std = radio_s_std,
3635 .vidioc_queryctrl = radio_queryctrl,
3636 .vidioc_g_input = radio_g_input,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003637 .vidioc_g_ctrl = bttv_g_ctrl,
3638 .vidioc_s_ctrl = bttv_s_ctrl,
3639 .vidioc_g_frequency = bttv_g_frequency,
3640 .vidioc_s_frequency = bttv_s_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641};
3642
Hans Verkuila3998102008-07-21 02:57:38 -03003643static struct video_device radio_template = {
3644 .fops = &radio_fops,
3645 .minor = -1,
3646 .ioctl_ops = &radio_ioctl_ops,
3647};
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649/* ----------------------------------------------------------------------- */
3650/* some debug code */
3651
Adrian Bunk408b6642005-05-01 08:59:29 -07003652static int bttv_risc_decode(u32 risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653{
3654 static char *instr[16] = {
3655 [ BT848_RISC_WRITE >> 28 ] = "write",
3656 [ BT848_RISC_SKIP >> 28 ] = "skip",
3657 [ BT848_RISC_WRITEC >> 28 ] = "writec",
3658 [ BT848_RISC_JUMP >> 28 ] = "jump",
3659 [ BT848_RISC_SYNC >> 28 ] = "sync",
3660 [ BT848_RISC_WRITE123 >> 28 ] = "write123",
3661 [ BT848_RISC_SKIP123 >> 28 ] = "skip123",
3662 [ BT848_RISC_WRITE1S23 >> 28 ] = "write1s23",
3663 };
3664 static int incr[16] = {
3665 [ BT848_RISC_WRITE >> 28 ] = 2,
3666 [ BT848_RISC_JUMP >> 28 ] = 2,
3667 [ BT848_RISC_SYNC >> 28 ] = 2,
3668 [ BT848_RISC_WRITE123 >> 28 ] = 5,
3669 [ BT848_RISC_SKIP123 >> 28 ] = 2,
3670 [ BT848_RISC_WRITE1S23 >> 28 ] = 3,
3671 };
3672 static char *bits[] = {
3673 "be0", "be1", "be2", "be3/resync",
3674 "set0", "set1", "set2", "set3",
3675 "clr0", "clr1", "clr2", "clr3",
3676 "irq", "res", "eol", "sol",
3677 };
3678 int i;
3679
3680 printk("0x%08x [ %s", risc,
3681 instr[risc >> 28] ? instr[risc >> 28] : "INVALID");
3682 for (i = ARRAY_SIZE(bits)-1; i >= 0; i--)
3683 if (risc & (1 << (i + 12)))
3684 printk(" %s",bits[i]);
3685 printk(" count=%d ]\n", risc & 0xfff);
3686 return incr[risc >> 28] ? incr[risc >> 28] : 1;
3687}
3688
Adrian Bunk408b6642005-05-01 08:59:29 -07003689static void bttv_risc_disasm(struct bttv *btv,
3690 struct btcx_riscmem *risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691{
3692 unsigned int i,j,n;
3693
3694 printk("%s: risc disasm: %p [dma=0x%08lx]\n",
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03003695 btv->c.v4l2_dev.name, risc->cpu, (unsigned long)risc->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 for (i = 0; i < (risc->size >> 2); i += n) {
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03003697 printk("%s: 0x%lx: ", btv->c.v4l2_dev.name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 (unsigned long)(risc->dma + (i<<2)));
Al Viro3aa71102008-06-22 14:20:09 -03003699 n = bttv_risc_decode(le32_to_cpu(risc->cpu[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 for (j = 1; j < n; j++)
3701 printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n",
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03003702 btv->c.v4l2_dev.name, (unsigned long)(risc->dma + ((i+j)<<2)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 risc->cpu[i+j], j);
3704 if (0 == risc->cpu[i])
3705 break;
3706 }
3707}
3708
3709static void bttv_print_riscaddr(struct bttv *btv)
3710{
3711 printk(" main: %08Lx\n",
3712 (unsigned long long)btv->main.dma);
3713 printk(" vbi : o=%08Lx e=%08Lx\n",
3714 btv->cvbi ? (unsigned long long)btv->cvbi->top.dma : 0,
3715 btv->cvbi ? (unsigned long long)btv->cvbi->bottom.dma : 0);
3716 printk(" cap : o=%08Lx e=%08Lx\n",
3717 btv->curr.top ? (unsigned long long)btv->curr.top->top.dma : 0,
3718 btv->curr.bottom ? (unsigned long long)btv->curr.bottom->bottom.dma : 0);
3719 printk(" scr : o=%08Lx e=%08Lx\n",
3720 btv->screen ? (unsigned long long)btv->screen->top.dma : 0,
3721 btv->screen ? (unsigned long long)btv->screen->bottom.dma : 0);
3722 bttv_risc_disasm(btv, &btv->main);
3723}
3724
3725/* ----------------------------------------------------------------------- */
3726/* irq handler */
3727
3728static char *irq_name[] = {
3729 "FMTCHG", // format change detected (525 vs. 625)
3730 "VSYNC", // vertical sync (new field)
3731 "HSYNC", // horizontal sync
3732 "OFLOW", // chroma/luma AGC overflow
3733 "HLOCK", // horizontal lock changed
3734 "VPRES", // video presence changed
3735 "6", "7",
3736 "I2CDONE", // hw irc operation finished
3737 "GPINT", // gpio port triggered irq
3738 "10",
3739 "RISCI", // risc instruction triggered irq
3740 "FBUS", // pixel data fifo dropped data (high pci bus latencies)
3741 "FTRGT", // pixel data fifo overrun
3742 "FDSR", // fifo data stream resyncronisation
3743 "PPERR", // parity error (data transfer)
3744 "RIPERR", // parity error (read risc instructions)
3745 "PABORT", // pci abort
3746 "OCERR", // risc instruction error
3747 "SCERR", // syncronisation error
3748};
3749
3750static void bttv_print_irqbits(u32 print, u32 mark)
3751{
3752 unsigned int i;
3753
3754 printk("bits:");
3755 for (i = 0; i < ARRAY_SIZE(irq_name); i++) {
3756 if (print & (1 << i))
3757 printk(" %s",irq_name[i]);
3758 if (mark & (1 << i))
3759 printk("*");
3760 }
3761}
3762
3763static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc)
3764{
3765 printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n",
3766 btv->c.nr,
3767 (unsigned long)btv->main.dma,
Al Viro3aa71102008-06-22 14:20:09 -03003768 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_VBI+1]),
3769 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_FIELD+1]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 (unsigned long)rc);
3771
3772 if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) {
3773 printk("bttv%d: Oh, there (temporarely?) is no input signal. "
3774 "Ok, then this is harmless, don't worry ;)\n",
3775 btv->c.nr);
3776 return;
3777 }
3778 printk("bttv%d: Uhm. Looks like we have unusual high IRQ latencies.\n",
3779 btv->c.nr);
3780 printk("bttv%d: Lets try to catch the culpit red-handed ...\n",
3781 btv->c.nr);
3782 dump_stack();
3783}
3784
3785static int
3786bttv_irq_next_video(struct bttv *btv, struct bttv_buffer_set *set)
3787{
3788 struct bttv_buffer *item;
3789
3790 memset(set,0,sizeof(*set));
3791
3792 /* capture request ? */
3793 if (!list_empty(&btv->capture)) {
3794 set->frame_irq = 1;
3795 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3796 if (V4L2_FIELD_HAS_TOP(item->vb.field))
3797 set->top = item;
3798 if (V4L2_FIELD_HAS_BOTTOM(item->vb.field))
3799 set->bottom = item;
3800
3801 /* capture request for other field ? */
3802 if (!V4L2_FIELD_HAS_BOTH(item->vb.field) &&
3803 (item->vb.queue.next != &btv->capture)) {
3804 item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue);
3805 if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) {
3806 if (NULL == set->top &&
3807 V4L2_FIELD_TOP == item->vb.field) {
3808 set->top = item;
3809 }
3810 if (NULL == set->bottom &&
3811 V4L2_FIELD_BOTTOM == item->vb.field) {
3812 set->bottom = item;
3813 }
3814 if (NULL != set->top && NULL != set->bottom)
3815 set->top_irq = 2;
3816 }
3817 }
3818 }
3819
3820 /* screen overlay ? */
3821 if (NULL != btv->screen) {
3822 if (V4L2_FIELD_HAS_BOTH(btv->screen->vb.field)) {
3823 if (NULL == set->top && NULL == set->bottom) {
3824 set->top = btv->screen;
3825 set->bottom = btv->screen;
3826 }
3827 } else {
3828 if (V4L2_FIELD_TOP == btv->screen->vb.field &&
3829 NULL == set->top) {
3830 set->top = btv->screen;
3831 }
3832 if (V4L2_FIELD_BOTTOM == btv->screen->vb.field &&
3833 NULL == set->bottom) {
3834 set->bottom = btv->screen;
3835 }
3836 }
3837 }
3838
3839 dprintk("bttv%d: next set: top=%p bottom=%p [screen=%p,irq=%d,%d]\n",
3840 btv->c.nr,set->top, set->bottom,
3841 btv->screen,set->frame_irq,set->top_irq);
3842 return 0;
3843}
3844
3845static void
3846bttv_irq_wakeup_video(struct bttv *btv, struct bttv_buffer_set *wakeup,
3847 struct bttv_buffer_set *curr, unsigned int state)
3848{
3849 struct timeval ts;
3850
3851 do_gettimeofday(&ts);
3852
3853 if (wakeup->top == wakeup->bottom) {
3854 if (NULL != wakeup->top && curr->top != wakeup->top) {
3855 if (irq_debug > 1)
3856 printk("bttv%d: wakeup: both=%p\n",btv->c.nr,wakeup->top);
3857 wakeup->top->vb.ts = ts;
3858 wakeup->top->vb.field_count = btv->field_count;
3859 wakeup->top->vb.state = state;
3860 wake_up(&wakeup->top->vb.done);
3861 }
3862 } else {
3863 if (NULL != wakeup->top && curr->top != wakeup->top) {
3864 if (irq_debug > 1)
3865 printk("bttv%d: wakeup: top=%p\n",btv->c.nr,wakeup->top);
3866 wakeup->top->vb.ts = ts;
3867 wakeup->top->vb.field_count = btv->field_count;
3868 wakeup->top->vb.state = state;
3869 wake_up(&wakeup->top->vb.done);
3870 }
3871 if (NULL != wakeup->bottom && curr->bottom != wakeup->bottom) {
3872 if (irq_debug > 1)
3873 printk("bttv%d: wakeup: bottom=%p\n",btv->c.nr,wakeup->bottom);
3874 wakeup->bottom->vb.ts = ts;
3875 wakeup->bottom->vb.field_count = btv->field_count;
3876 wakeup->bottom->vb.state = state;
3877 wake_up(&wakeup->bottom->vb.done);
3878 }
3879 }
3880}
3881
3882static void
3883bttv_irq_wakeup_vbi(struct bttv *btv, struct bttv_buffer *wakeup,
3884 unsigned int state)
3885{
3886 struct timeval ts;
3887
3888 if (NULL == wakeup)
3889 return;
3890
3891 do_gettimeofday(&ts);
3892 wakeup->vb.ts = ts;
3893 wakeup->vb.field_count = btv->field_count;
3894 wakeup->vb.state = state;
3895 wake_up(&wakeup->vb.done);
3896}
3897
3898static void bttv_irq_timeout(unsigned long data)
3899{
3900 struct bttv *btv = (struct bttv *)data;
3901 struct bttv_buffer_set old,new;
3902 struct bttv_buffer *ovbi;
3903 struct bttv_buffer *item;
3904 unsigned long flags;
3905
3906 if (bttv_verbose) {
3907 printk(KERN_INFO "bttv%d: timeout: drop=%d irq=%d/%d, risc=%08x, ",
3908 btv->c.nr, btv->framedrop, btv->irq_me, btv->irq_total,
3909 btread(BT848_RISC_COUNT));
3910 bttv_print_irqbits(btread(BT848_INT_STAT),0);
3911 printk("\n");
3912 }
3913
3914 spin_lock_irqsave(&btv->s_lock,flags);
3915
3916 /* deactivate stuff */
3917 memset(&new,0,sizeof(new));
3918 old = btv->curr;
3919 ovbi = btv->cvbi;
3920 btv->curr = new;
3921 btv->cvbi = NULL;
3922 btv->loop_irq = 0;
3923 bttv_buffer_activate_video(btv, &new);
3924 bttv_buffer_activate_vbi(btv, NULL);
3925 bttv_set_dma(btv, 0);
3926
3927 /* wake up */
Brandon Philips0fc06862007-11-06 20:02:36 -03003928 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_ERROR);
3929 bttv_irq_wakeup_vbi(btv, ovbi, VIDEOBUF_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931 /* cancel all outstanding capture / vbi requests */
3932 while (!list_empty(&btv->capture)) {
3933 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3934 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003935 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 wake_up(&item->vb.done);
3937 }
3938 while (!list_empty(&btv->vcapture)) {
3939 item = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
3940 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003941 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 wake_up(&item->vb.done);
3943 }
3944
3945 btv->errors++;
3946 spin_unlock_irqrestore(&btv->s_lock,flags);
3947}
3948
3949static void
3950bttv_irq_wakeup_top(struct bttv *btv)
3951{
3952 struct bttv_buffer *wakeup = btv->curr.top;
3953
3954 if (NULL == wakeup)
3955 return;
3956
3957 spin_lock(&btv->s_lock);
3958 btv->curr.top_irq = 0;
3959 btv->curr.top = NULL;
3960 bttv_risc_hook(btv, RISC_SLOT_O_FIELD, NULL, 0);
3961
3962 do_gettimeofday(&wakeup->vb.ts);
3963 wakeup->vb.field_count = btv->field_count;
Brandon Philips0fc06862007-11-06 20:02:36 -03003964 wakeup->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 wake_up(&wakeup->vb.done);
3966 spin_unlock(&btv->s_lock);
3967}
3968
3969static inline int is_active(struct btcx_riscmem *risc, u32 rc)
3970{
3971 if (rc < risc->dma)
3972 return 0;
3973 if (rc > risc->dma + risc->size)
3974 return 0;
3975 return 1;
3976}
3977
3978static void
3979bttv_irq_switch_video(struct bttv *btv)
3980{
3981 struct bttv_buffer_set new;
3982 struct bttv_buffer_set old;
3983 dma_addr_t rc;
3984
3985 spin_lock(&btv->s_lock);
3986
3987 /* new buffer set */
3988 bttv_irq_next_video(btv, &new);
3989 rc = btread(BT848_RISC_COUNT);
3990 if ((btv->curr.top && is_active(&btv->curr.top->top, rc)) ||
3991 (btv->curr.bottom && is_active(&btv->curr.bottom->bottom, rc))) {
3992 btv->framedrop++;
3993 if (debug_latency)
3994 bttv_irq_debug_low_latency(btv, rc);
3995 spin_unlock(&btv->s_lock);
3996 return;
3997 }
3998
3999 /* switch over */
4000 old = btv->curr;
4001 btv->curr = new;
4002 btv->loop_irq &= ~1;
4003 bttv_buffer_activate_video(btv, &new);
4004 bttv_set_dma(btv, 0);
4005
4006 /* switch input */
4007 if (UNSET != btv->new_input) {
4008 video_mux(btv,btv->new_input);
4009 btv->new_input = UNSET;
4010 }
4011
4012 /* wake up finished buffers */
Brandon Philips0fc06862007-11-06 20:02:36 -03004013 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 spin_unlock(&btv->s_lock);
4015}
4016
4017static void
4018bttv_irq_switch_vbi(struct bttv *btv)
4019{
4020 struct bttv_buffer *new = NULL;
4021 struct bttv_buffer *old;
4022 u32 rc;
4023
4024 spin_lock(&btv->s_lock);
4025
4026 if (!list_empty(&btv->vcapture))
4027 new = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
4028 old = btv->cvbi;
4029
4030 rc = btread(BT848_RISC_COUNT);
4031 if (NULL != old && (is_active(&old->top, rc) ||
4032 is_active(&old->bottom, rc))) {
4033 btv->framedrop++;
4034 if (debug_latency)
4035 bttv_irq_debug_low_latency(btv, rc);
4036 spin_unlock(&btv->s_lock);
4037 return;
4038 }
4039
4040 /* switch */
4041 btv->cvbi = new;
4042 btv->loop_irq &= ~4;
4043 bttv_buffer_activate_vbi(btv, new);
4044 bttv_set_dma(btv, 0);
4045
Brandon Philips0fc06862007-11-06 20:02:36 -03004046 bttv_irq_wakeup_vbi(btv, old, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 spin_unlock(&btv->s_lock);
4048}
4049
David Howells7d12e782006-10-05 14:55:46 +01004050static irqreturn_t bttv_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051{
4052 u32 stat,astat;
4053 u32 dstat;
4054 int count;
4055 struct bttv *btv;
4056 int handled = 0;
4057
4058 btv=(struct bttv *)dev_id;
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004059
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004060 if (btv->custom_irq)
4061 handled = btv->custom_irq(btv);
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004062
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 count=0;
4064 while (1) {
4065 /* get/clear interrupt status bits */
4066 stat=btread(BT848_INT_STAT);
4067 astat=stat&btread(BT848_INT_MASK);
4068 if (!astat)
4069 break;
4070 handled = 1;
4071 btwrite(stat,BT848_INT_STAT);
4072
4073 /* get device status bits */
4074 dstat=btread(BT848_DSTATUS);
4075
4076 if (irq_debug) {
4077 printk(KERN_DEBUG "bttv%d: irq loop=%d fc=%d "
4078 "riscs=%x, riscc=%08x, ",
4079 btv->c.nr, count, btv->field_count,
4080 stat>>28, btread(BT848_RISC_COUNT));
4081 bttv_print_irqbits(stat,astat);
4082 if (stat & BT848_INT_HLOCK)
4083 printk(" HLOC => %s", (dstat & BT848_DSTATUS_HLOC)
4084 ? "yes" : "no");
4085 if (stat & BT848_INT_VPRES)
4086 printk(" PRES => %s", (dstat & BT848_DSTATUS_PRES)
4087 ? "yes" : "no");
4088 if (stat & BT848_INT_FMTCHG)
4089 printk(" NUML => %s", (dstat & BT848_DSTATUS_NUML)
4090 ? "625" : "525");
4091 printk("\n");
4092 }
4093
4094 if (astat&BT848_INT_VSYNC)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004095 btv->field_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004097 if ((astat & BT848_INT_GPINT) && btv->remote) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004099 bttv_input_irq(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 }
4101
4102 if (astat & BT848_INT_I2CDONE) {
4103 btv->i2c_done = stat;
4104 wake_up(&btv->i2c_queue);
4105 }
4106
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004107 if ((astat & BT848_INT_RISCI) && (stat & (4<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 bttv_irq_switch_vbi(btv);
4109
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004110 if ((astat & BT848_INT_RISCI) && (stat & (2<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 bttv_irq_wakeup_top(btv);
4112
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004113 if ((astat & BT848_INT_RISCI) && (stat & (1<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 bttv_irq_switch_video(btv);
4115
4116 if ((astat & BT848_INT_HLOCK) && btv->opt_automute)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004117 audio_mute(btv, btv->mute); /* trigger automute */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
4119 if (astat & (BT848_INT_SCERR|BT848_INT_OCERR)) {
4120 printk(KERN_INFO "bttv%d: %s%s @ %08x,",btv->c.nr,
4121 (astat & BT848_INT_SCERR) ? "SCERR" : "",
4122 (astat & BT848_INT_OCERR) ? "OCERR" : "",
4123 btread(BT848_RISC_COUNT));
4124 bttv_print_irqbits(stat,astat);
4125 printk("\n");
4126 if (bttv_debug)
4127 bttv_print_riscaddr(btv);
4128 }
4129 if (fdsr && astat & BT848_INT_FDSR) {
4130 printk(KERN_INFO "bttv%d: FDSR @ %08x\n",
4131 btv->c.nr,btread(BT848_RISC_COUNT));
4132 if (bttv_debug)
4133 bttv_print_riscaddr(btv);
4134 }
4135
4136 count++;
4137 if (count > 4) {
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004138
4139 if (count > 8 || !(astat & BT848_INT_GPINT)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004140 btwrite(0, BT848_INT_MASK);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004141
4142 printk(KERN_ERR
4143 "bttv%d: IRQ lockup, cleared int mask [", btv->c.nr);
4144 } else {
4145 printk(KERN_ERR
4146 "bttv%d: IRQ lockup, clearing GPINT from int mask [", btv->c.nr);
4147
4148 btwrite(btread(BT848_INT_MASK) & (-1 ^ BT848_INT_GPINT),
4149 BT848_INT_MASK);
4150 };
4151
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 bttv_print_irqbits(stat,astat);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 printk("]\n");
4155 }
4156 }
4157 btv->irq_total++;
4158 if (handled)
4159 btv->irq_me++;
4160 return IRQ_RETVAL(handled);
4161}
4162
4163
4164/* ----------------------------------------------------------------------- */
4165/* initialitation */
4166
4167static struct video_device *vdev_init(struct bttv *btv,
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004168 const struct video_device *template,
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004169 const char *type_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
4171 struct video_device *vfd;
4172
4173 vfd = video_device_alloc();
4174 if (NULL == vfd)
4175 return NULL;
4176 *vfd = *template;
4177 vfd->minor = -1;
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004178 vfd->v4l2_dev = &btv->c.v4l2_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 vfd->release = video_device_release;
Mauro Carvalho Chehab1d0a4362008-06-23 12:31:29 -03004180 vfd->debug = bttv_debug;
Trent Piepho4b10d3b2009-01-28 21:32:59 -03004181 video_set_drvdata(vfd, btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)",
4183 btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "",
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004184 type_name, bttv_tvcards[btv->c.type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 return vfd;
4186}
4187
4188static void bttv_unregister_video(struct bttv *btv)
4189{
4190 if (btv->video_dev) {
4191 if (-1 != btv->video_dev->minor)
4192 video_unregister_device(btv->video_dev);
4193 else
4194 video_device_release(btv->video_dev);
4195 btv->video_dev = NULL;
4196 }
4197 if (btv->vbi_dev) {
4198 if (-1 != btv->vbi_dev->minor)
4199 video_unregister_device(btv->vbi_dev);
4200 else
4201 video_device_release(btv->vbi_dev);
4202 btv->vbi_dev = NULL;
4203 }
4204 if (btv->radio_dev) {
4205 if (-1 != btv->radio_dev->minor)
4206 video_unregister_device(btv->radio_dev);
4207 else
4208 video_device_release(btv->radio_dev);
4209 btv->radio_dev = NULL;
4210 }
4211}
4212
4213/* register video4linux devices */
4214static int __devinit bttv_register_video(struct bttv *btv)
4215{
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004216 if (no_overlay > 0)
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004217 printk("bttv: Overlay support disabled.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004218
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 /* video */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004220 btv->video_dev = vdev_init(btv, &bttv_video_template, "video");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004221
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004222 if (NULL == btv->video_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004224 if (video_register_device(btv->video_dev, VFL_TYPE_GRABBER,
4225 video_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 goto err;
4227 printk(KERN_INFO "bttv%d: registered device video%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004228 btv->c.nr, btv->video_dev->num);
Hans Verkuil22a04f12008-07-20 06:35:02 -03004229 if (device_create_file(&btv->video_dev->dev,
Kay Sievers54bd5b62007-10-08 16:26:13 -03004230 &dev_attr_card)<0) {
4231 printk(KERN_ERR "bttv%d: device_create_file 'card' "
Trent Piephod94fc9a2006-07-29 17:18:06 -03004232 "failed\n", btv->c.nr);
4233 goto err;
4234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
4236 /* vbi */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004237 btv->vbi_dev = vdev_init(btv, &bttv_video_template, "vbi");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004238
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004239 if (NULL == btv->vbi_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004241 if (video_register_device(btv->vbi_dev, VFL_TYPE_VBI,
4242 vbi_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 goto err;
4244 printk(KERN_INFO "bttv%d: registered device vbi%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004245 btv->c.nr, btv->vbi_dev->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004247 if (!btv->has_radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 return 0;
4249 /* radio */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004250 btv->radio_dev = vdev_init(btv, &radio_template, "radio");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004251 if (NULL == btv->radio_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 goto err;
Jean Delvare176c2f32008-09-07 12:49:59 -03004253 if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,
4254 radio_nr[btv->c.nr]) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 goto err;
4256 printk(KERN_INFO "bttv%d: registered device radio%d\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03004257 btv->c.nr, btv->radio_dev->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
4259 /* all done */
4260 return 0;
4261
4262 err:
4263 bttv_unregister_video(btv);
4264 return -1;
4265}
4266
4267
4268/* on OpenFirmware machines (PowerMac at least), PCI memory cycle */
4269/* response on cards with no firmware is not enabled by OF */
4270static void pci_set_command(struct pci_dev *dev)
4271{
4272#if defined(__powerpc__)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004273 unsigned int cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004275 pci_read_config_dword(dev, PCI_COMMAND, &cmd);
4276 cmd = (cmd | PCI_COMMAND_MEMORY );
4277 pci_write_config_dword(dev, PCI_COMMAND, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278#endif
4279}
4280
4281static int __devinit bttv_probe(struct pci_dev *dev,
4282 const struct pci_device_id *pci_id)
4283{
4284 int result;
4285 unsigned char lat;
4286 struct bttv *btv;
4287
4288 if (bttv_num == BTTV_MAX)
4289 return -ENOMEM;
4290 printk(KERN_INFO "bttv: Bt8xx card found (%d).\n", bttv_num);
Trent Piepho4b10d3b2009-01-28 21:32:59 -03004291 bttvs[bttv_num] = btv = kzalloc(sizeof(*btv), GFP_KERNEL);
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004292 if (btv == NULL) {
4293 printk(KERN_ERR "bttv: out of memory.\n");
4294 return -ENOMEM;
4295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 btv->c.nr = bttv_num;
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004297 snprintf(btv->c.v4l2_dev.name, sizeof(btv->c.v4l2_dev.name),
4298 "bttv%d", btv->c.nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299
4300 /* initialize structs / fill in defaults */
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02004301 mutex_init(&btv->lock);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004302 spin_lock_init(&btv->s_lock);
4303 spin_lock_init(&btv->gpio_lock);
4304 init_waitqueue_head(&btv->gpioq);
4305 init_waitqueue_head(&btv->i2c_queue);
4306 INIT_LIST_HEAD(&btv->c.subs);
4307 INIT_LIST_HEAD(&btv->capture);
4308 INIT_LIST_HEAD(&btv->vcapture);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 v4l2_prio_init(&btv->prio);
4310
4311 init_timer(&btv->timeout);
4312 btv->timeout.function = bttv_irq_timeout;
4313 btv->timeout.data = (unsigned long)btv;
4314
Michael Krufky7c08fb02005-11-08 21:36:21 -08004315 btv->i2c_rc = -1;
4316 btv->tuner_type = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 btv->new_input = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 btv->has_radio=radio[btv->c.nr];
4319
4320 /* pci stuff (init, get irq/mmio, ... */
4321 btv->c.pci = dev;
Michael Krufky7c08fb02005-11-08 21:36:21 -08004322 btv->id = dev->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 if (pci_enable_device(dev)) {
Michael Krufky7c08fb02005-11-08 21:36:21 -08004324 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 btv->c.nr);
4326 return -EIO;
4327 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004328 if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) {
4329 printk(KERN_WARNING "bttv%d: No suitable DMA available.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 btv->c.nr);
4331 return -EIO;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 if (!request_mem_region(pci_resource_start(dev,0),
4334 pci_resource_len(dev,0),
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004335 btv->c.v4l2_dev.name)) {
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004336 printk(KERN_WARNING "bttv%d: can't request iomem (0x%llx).\n",
4337 btv->c.nr,
4338 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 return -EBUSY;
4340 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004341 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 pci_set_command(dev);
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004343
4344 result = v4l2_device_register(&dev->dev, &btv->c.v4l2_dev);
4345 if (result < 0) {
4346 printk(KERN_WARNING "bttv%d: v4l2_device_register() failed\n", btv->c.nr);
4347 goto fail0;
4348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004350 pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision);
4351 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
4352 printk(KERN_INFO "bttv%d: Bt%d (rev %d) at %s, ",
4353 bttv_num,btv->id, btv->revision, pci_name(dev));
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004354 printk("irq: %d, latency: %d, mmio: 0x%llx\n",
4355 btv->c.pci->irq, lat,
4356 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 schedule();
4358
Akinobu Mita5f1693f2006-12-20 10:08:56 -03004359 btv->bt848_mmio = ioremap(pci_resource_start(dev, 0), 0x1000);
4360 if (NULL == btv->bt848_mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 printk("bttv%d: ioremap() failed\n", btv->c.nr);
4362 result = -EIO;
4363 goto fail1;
4364 }
4365
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004366 /* identify card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 bttv_idcard(btv);
4368
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004369 /* disable irqs, register irq handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 btwrite(0, BT848_INT_MASK);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004371 result = request_irq(btv->c.pci->irq, bttv_irq,
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004372 IRQF_SHARED | IRQF_DISABLED, btv->c.v4l2_dev.name, (void *)btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004373 if (result < 0) {
4374 printk(KERN_ERR "bttv%d: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 bttv_num,btv->c.pci->irq);
4376 goto fail1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379 if (0 != bttv_handle_chipset(btv)) {
4380 result = -EIO;
4381 goto fail2;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
4384 /* init options from insmod args */
4385 btv->opt_combfilter = combfilter;
4386 btv->opt_lumafilter = lumafilter;
4387 btv->opt_automute = automute;
4388 btv->opt_chroma_agc = chroma_agc;
4389 btv->opt_adc_crush = adc_crush;
4390 btv->opt_vcr_hack = vcr_hack;
4391 btv->opt_whitecrush_upper = whitecrush_upper;
4392 btv->opt_whitecrush_lower = whitecrush_lower;
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -07004393 btv->opt_uv_ratio = uv_ratio;
4394 btv->opt_full_luma_range = full_luma_range;
4395 btv->opt_coring = coring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 /* fill struct bttv with some useful defaults */
4398 btv->init.btv = btv;
4399 btv->init.ov.w.width = 320;
4400 btv->init.ov.w.height = 240;
Mauro Carvalho Chehabc96dd072007-10-26 16:51:47 -03004401 btv->init.fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 btv->init.width = 320;
4403 btv->init.height = 240;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 btv->input = 0;
4405
4406 /* initialize hardware */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004407 if (bttv_gpio)
4408 bttv_gpio_tracking(btv,"pre-init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
4410 bttv_risc_init_main(btv);
4411 init_bt848(btv);
4412
4413 /* gpio */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004414 btwrite(0x00, BT848_GPIO_REG_INP);
4415 btwrite(0x00, BT848_GPIO_OUT_EN);
4416 if (bttv_verbose)
4417 bttv_gpio_tracking(btv,"init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004419 /* needs to be done before i2c is registered */
4420 bttv_init_card1(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004422 /* register i2c + gpio */
4423 init_bttv_i2c(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004425 /* some card-specific stuff (needs working i2c) */
4426 bttv_init_card2(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 init_irqreg(btv);
4428
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004429 /* register video4linux + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 if (!bttv_tvcards[btv->c.type].no_video) {
4431 bttv_register_video(btv);
4432 bt848_bright(btv,32768);
4433 bt848_contrast(btv,32768);
4434 bt848_hue(btv,32768);
4435 bt848_sat(btv,32768);
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004436 audio_mute(btv, 1);
Trent Piepho333408f2007-07-03 15:08:10 -03004437 set_input(btv, 0, btv->tvnorm);
Michael Schimeke5bd0262007-01-18 16:17:39 -03004438 bttv_crop_reset(&btv->crop[0], btv->tvnorm);
4439 btv->crop[1] = btv->crop[0]; /* current = default */
4440 disclaim_vbi_lines(btv);
4441 disclaim_video_lines(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 }
4443
Jarod Wilsonf992a492007-03-24 15:23:50 -03004444 /* add subdevices and autoload dvb-bt8xx if needed */
4445 if (bttv_tvcards[btv->c.type].has_dvb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 bttv_sub_add_device(&btv->c, "dvb");
Jarod Wilsonf992a492007-03-24 15:23:50 -03004447 request_modules(btv);
4448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004450 bttv_input_init(btv);
4451
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 /* everything is fine */
4453 bttv_num++;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004454 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004456fail2:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004457 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004459fail1:
4460 v4l2_device_unregister(&btv->c.v4l2_dev);
4461
4462fail0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 if (btv->bt848_mmio)
4464 iounmap(btv->bt848_mmio);
4465 release_mem_region(pci_resource_start(btv->c.pci,0),
4466 pci_resource_len(btv->c.pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 return result;
4468}
4469
4470static void __devexit bttv_remove(struct pci_dev *pci_dev)
4471{
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004472 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
4473 struct bttv *btv = to_bttv(v4l2_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474
4475 if (bttv_verbose)
4476 printk("bttv%d: unloading\n",btv->c.nr);
4477
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004478 /* shutdown everything (DMA+IRQs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 btand(~15, BT848_GPIO_DMA_CTL);
4480 btwrite(0, BT848_INT_MASK);
4481 btwrite(~0x0, BT848_INT_STAT);
4482 btwrite(0x0, BT848_GPIO_OUT_EN);
4483 if (bttv_gpio)
4484 bttv_gpio_tracking(btv,"cleanup");
4485
4486 /* tell gpio modules we are leaving ... */
4487 btv->shutdown=1;
4488 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004489 bttv_input_fini(btv);
Christopher Pascoe889aee82006-01-09 15:25:28 -02004490 bttv_sub_del_devices(&btv->c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004492 /* unregister i2c_bus + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 fini_bttv_i2c(btv);
4494
4495 /* unregister video4linux */
4496 bttv_unregister_video(btv);
4497
4498 /* free allocated memory */
4499 btcx_riscmem_free(btv->c.pci,&btv->main);
4500
4501 /* free ressources */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004502 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 iounmap(btv->bt848_mmio);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004504 release_mem_region(pci_resource_start(btv->c.pci,0),
4505 pci_resource_len(btv->c.pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004507 v4l2_device_unregister(&btv->c.v4l2_dev);
Trent Piepho4b10d3b2009-01-28 21:32:59 -03004508 bttvs[btv->c.nr] = NULL;
4509 kfree(btv);
4510
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004511 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512}
4513
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004514#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state)
4516{
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004517 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
4518 struct bttv *btv = to_bttv(v4l2_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{
Hans Verkuil74fc7bd2009-03-14 12:36:54 -03004553 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
4554 struct bttv *btv = to_bttv(v4l2_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 unsigned long flags;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004556 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
4558 dprintk("bttv%d: resume\n", btv->c.nr);
4559
4560 /* restore pci state */
4561 if (btv->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004562 err=pci_enable_device(pci_dev);
4563 if (err) {
4564 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4565 btv->c.nr);
4566 return err;
4567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 btv->state.disabled = 0;
4569 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004570 err=pci_set_power_state(pci_dev, PCI_D0);
4571 if (err) {
4572 pci_disable_device(pci_dev);
4573 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4574 btv->c.nr);
4575 btv->state.disabled = 1;
4576 return err;
4577 }
4578
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 pci_restore_state(pci_dev);
4580
4581 /* restore bt878 state */
4582 bttv_reinit_bt848(btv);
4583 gpio_inout(0xffffff, btv->state.gpio_enable);
4584 gpio_write(btv->state.gpio_data);
4585
4586 /* restart dma */
4587 spin_lock_irqsave(&btv->s_lock,flags);
4588 btv->curr = btv->state.video;
4589 btv->cvbi = btv->state.vbi;
4590 btv->loop_irq = btv->state.loop_irq;
4591 bttv_buffer_activate_video(btv, &btv->curr);
4592 bttv_buffer_activate_vbi(btv, btv->cvbi);
4593 bttv_set_dma(btv, 0);
4594 spin_unlock_irqrestore(&btv->s_lock,flags);
4595 return 0;
4596}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598
4599static struct pci_device_id bttv_pci_tbl[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004600 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848,
4601 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT849,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004603 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT878,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004605 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT879,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004607 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4608 {0,}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609};
4610
4611MODULE_DEVICE_TABLE(pci, bttv_pci_tbl);
4612
4613static struct pci_driver bttv_pci_driver = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004614 .name = "bttv",
4615 .id_table = bttv_pci_tbl,
4616 .probe = bttv_probe,
4617 .remove = __devexit_p(bttv_remove),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004618#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 .suspend = bttv_suspend,
4620 .resume = bttv_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004621#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622};
4623
Adrian Bunk7d44e892007-12-11 19:23:43 -03004624static int __init bttv_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625{
Randy Dunlapc526e222006-07-15 09:08:26 -03004626 int ret;
4627
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 bttv_num = 0;
4629
4630 printk(KERN_INFO "bttv: driver version %d.%d.%d loaded\n",
4631 (BTTV_VERSION_CODE >> 16) & 0xff,
4632 (BTTV_VERSION_CODE >> 8) & 0xff,
4633 BTTV_VERSION_CODE & 0xff);
4634#ifdef SNAPSHOT
4635 printk(KERN_INFO "bttv: snapshot date %04d-%02d-%02d\n",
4636 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
4637#endif
4638 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
4639 gbuffers = 2;
4640 if (gbufsize < 0 || gbufsize > BTTV_MAX_FBUF)
4641 gbufsize = BTTV_MAX_FBUF;
4642 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
4643 if (bttv_verbose)
4644 printk(KERN_INFO "bttv: using %d buffers with %dk (%d pages) each for capture\n",
4645 gbuffers, gbufsize >> 10, gbufsize >> PAGE_SHIFT);
4646
4647 bttv_check_chipset();
4648
Randy Dunlapc526e222006-07-15 09:08:26 -03004649 ret = bus_register(&bttv_sub_bus_type);
4650 if (ret < 0) {
4651 printk(KERN_WARNING "bttv: bus_register error: %d\n", ret);
4652 return ret;
4653 }
Akinobu Mita9e7e85e2007-12-17 14:26:29 -03004654 ret = pci_register_driver(&bttv_pci_driver);
4655 if (ret < 0)
4656 bus_unregister(&bttv_sub_bus_type);
4657
4658 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659}
4660
Adrian Bunk7d44e892007-12-11 19:23:43 -03004661static void __exit bttv_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662{
4663 pci_unregister_driver(&bttv_pci_driver);
4664 bus_unregister(&bttv_sub_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
4666
4667module_init(bttv_init_module);
4668module_exit(bttv_cleanup_module);
4669
4670/*
4671 * Local variables:
4672 * c-basic-offset: 8
4673 * End:
4674 */