blob: c3526d0258f8d2e60bf83bcb3de7ea3fc7f49d91 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
3 bttv - Bt848 frame grabber driver
4
5 Copyright (C) 1996,97,98 Ralph Metzler <rjkm@thp.uni-koeln.de>
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08006 & Marcus Metzler <mocm@thp.uni-koeln.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 (c) 1999-2002 Gerd Knorr <kraxel@bytesex.org>
8
9 some v4l2 code lines are taken from Justin's bttv2 driver which is
10 (c) 2000 Justin Schoeman <justin@suntiger.ee.up.ac.za>
11
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -030012 V4L1 removal from:
13 (c) 2005-2006 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
14
Mauro Carvalho Chehabc96dd072007-10-26 16:51:47 -030015 Fixes to be fully V4L2 compliant by
16 (c) 2006 Mauro Carvalho Chehab <mchehab@infradead.org>
17
Michael Schimeke5bd0262007-01-18 16:17:39 -030018 Cropping and overscan support
19 Copyright (C) 2005, 2006 Michael H. Schimek <mschimek@gmx.at>
20 Sponsored by OPQ Systems AB
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 This program is free software; you can redistribute it and/or modify
23 it under the terms of the GNU General Public License as published by
24 the Free Software Foundation; either version 2 of the License, or
25 (at your option) any later version.
26
27 This program is distributed in the hope that it will be useful,
28 but WITHOUT ANY WARRANTY; without even the implied warranty of
29 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 GNU General Public License for more details.
31
32 You should have received a copy of the GNU General Public License
33 along with this program; if not, write to the Free Software
34 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
35*/
36
37#include <linux/init.h>
38#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/delay.h>
40#include <linux/errno.h>
41#include <linux/fs.h>
42#include <linux/kernel.h>
43#include <linux/sched.h>
44#include <linux/interrupt.h>
45#include <linux/kdev_t.h>
Mauro Carvalho Chehabb5b8ab82006-01-09 15:25:20 -020046#include "bttvp.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020047#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030048#include <media/v4l2-ioctl.h>
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -030049#include <media/tvaudio.h>
Hans Verkuil2474ed42006-03-19 12:35:57 -030050#include <media/msp3400.h>
Mauro Carvalho Chehabb5b8ab82006-01-09 15:25:20 -020051
Mauro Carvalho Chehabfa9846a2005-07-12 13:58:42 -070052#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <asm/io.h>
55#include <asm/byteorder.h>
56
Mauro Carvalho Chehabfa3fcce2006-03-23 21:45:24 -030057#include <media/rds.h>
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -070058
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060unsigned int bttv_num; /* number of Bt848s in use */
61struct bttv bttvs[BTTV_MAX];
62
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020063unsigned int bttv_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064unsigned int bttv_verbose = 1;
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020065unsigned int bttv_gpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* config variables */
68#ifdef __BIG_ENDIAN
69static unsigned int bigendian=1;
70#else
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020071static unsigned int bigendian;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#endif
73static unsigned int radio[BTTV_MAX];
Mauro Carvalho Chehaba5ed4252006-01-13 14:10:19 -020074static unsigned int irq_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static unsigned int gbuffers = 8;
76static unsigned int gbufsize = 0x208000;
Michael Schimeke5bd0262007-01-18 16:17:39 -030077static unsigned int reset_crop = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static int video_nr = -1;
80static int radio_nr = -1;
81static int vbi_nr = -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);
111module_param(video_nr, int, 0444);
112module_param(radio_nr, int, 0444);
113module_param(vbi_nr, int, 0444);
114module_param(gbuffers, int, 0444);
115module_param(gbufsize, int, 0444);
Michael Schimeke5bd0262007-01-18 16:17:39 -0300116module_param(reset_crop, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118module_param(v4l2, int, 0644);
119module_param(bigendian, int, 0644);
120module_param(irq_iswitch, int, 0644);
121module_param(combfilter, int, 0444);
122module_param(lumafilter, int, 0444);
123module_param(automute, int, 0444);
124module_param(chroma_agc, int, 0444);
125module_param(adc_crush, int, 0444);
126module_param(whitecrush_upper, int, 0444);
127module_param(whitecrush_lower, int, 0444);
128module_param(vcr_hack, int, 0444);
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700129module_param(uv_ratio, int, 0444);
130module_param(full_luma_range, int, 0444);
131module_param(coring, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133module_param_array(radio, int, NULL, 0444);
134
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)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156MODULE_DESCRIPTION("bttv - v4l/v4l2 driver module for bt848/878 based cards");
157MODULE_AUTHOR("Ralph Metzler & Marcus Metzler & Gerd Knorr");
158MODULE_LICENSE("GPL");
159
160/* ----------------------------------------------------------------------- */
161/* sysfs */
162
Kay Sievers54bd5b62007-10-08 16:26:13 -0300163static ssize_t show_card(struct device *cd,
164 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Hans Verkuil22a04f12008-07-20 06:35:02 -0300166 struct video_device *vfd = container_of(cd, struct video_device, dev);
Hans Verkuil5e85e732008-07-20 06:31:39 -0300167 struct bttv *btv = dev_get_drvdata(vfd->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return sprintf(buf, "%d\n", btv ? btv->c.type : UNSET);
169}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300170static DEVICE_ATTR(card, S_IRUGO, show_card, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* ----------------------------------------------------------------------- */
Jarod Wilsonf992a492007-03-24 15:23:50 -0300173/* dvb auto-load setup */
174#if defined(CONFIG_MODULES) && defined(MODULE)
175static void request_module_async(struct work_struct *work)
176{
177 request_module("dvb-bt8xx");
178}
179
180static void request_modules(struct bttv *dev)
181{
182 INIT_WORK(&dev->request_module_wk, request_module_async);
183 schedule_work(&dev->request_module_wk);
184}
185#else
186#define request_modules(dev)
187#endif /* CONFIG_MODULES */
188
189
190/* ----------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* static data */
192
193/* special timing tables from conexant... */
194static u8 SRAM_Table[][60] =
195{
196 /* PAL digital input over GPIO[7:0] */
197 {
198 45, // 45 bytes following
199 0x36,0x11,0x01,0x00,0x90,0x02,0x05,0x10,0x04,0x16,
200 0x12,0x05,0x11,0x00,0x04,0x12,0xC0,0x00,0x31,0x00,
201 0x06,0x51,0x08,0x03,0x89,0x08,0x07,0xC0,0x44,0x00,
202 0x81,0x01,0x01,0xA9,0x0D,0x02,0x02,0x50,0x03,0x37,
203 0x37,0x00,0xAF,0x21,0x00
204 },
205 /* NTSC digital input over GPIO[7:0] */
206 {
207 51, // 51 bytes following
208 0x0C,0xC0,0x00,0x00,0x90,0x02,0x03,0x10,0x03,0x06,
209 0x10,0x04,0x12,0x12,0x05,0x02,0x13,0x04,0x19,0x00,
210 0x04,0x39,0x00,0x06,0x59,0x08,0x03,0x83,0x08,0x07,
211 0x03,0x50,0x00,0xC0,0x40,0x00,0x86,0x01,0x01,0xA6,
212 0x0D,0x02,0x03,0x11,0x01,0x05,0x37,0x00,0xAC,0x21,
213 0x00,
214 },
215 // TGB_NTSC392 // quartzsight
216 // This table has been modified to be used for Fusion Rev D
217 {
218 0x2A, // size of table = 42
219 0x06, 0x08, 0x04, 0x0a, 0xc0, 0x00, 0x18, 0x08, 0x03, 0x24,
220 0x08, 0x07, 0x02, 0x90, 0x02, 0x08, 0x10, 0x04, 0x0c, 0x10,
221 0x05, 0x2c, 0x11, 0x04, 0x55, 0x48, 0x00, 0x05, 0x50, 0x00,
222 0xbf, 0x0c, 0x02, 0x2f, 0x3d, 0x00, 0x2f, 0x3f, 0x00, 0xc3,
223 0x20, 0x00
224 }
225};
226
Michael Schimeke5bd0262007-01-18 16:17:39 -0300227/* minhdelayx1 first video pixel we can capture on a line and
228 hdelayx1 start of active video, both relative to rising edge of
229 /HRESET pulse (0H) in 1 / fCLKx1.
230 swidth width of active video and
231 totalwidth total line width, both in 1 / fCLKx1.
232 sqwidth total line width in square pixels.
233 vdelay start of active video in 2 * field lines relative to
234 trailing edge of /VRESET pulse (VDELAY register).
235 sheight height of active video in 2 * field lines.
236 videostart0 ITU-R frame line number of the line corresponding
237 to vdelay in the first field. */
238#define CROPCAP(minhdelayx1, hdelayx1, swidth, totalwidth, sqwidth, \
239 vdelay, sheight, videostart0) \
240 .cropcap.bounds.left = minhdelayx1, \
241 /* * 2 because vertically we count field lines times two, */ \
242 /* e.g. 23 * 2 to 23 * 2 + 576 in PAL-BGHI defrect. */ \
243 .cropcap.bounds.top = (videostart0) * 2 - (vdelay) + MIN_VDELAY, \
244 /* 4 is a safety margin at the end of the line. */ \
245 .cropcap.bounds.width = (totalwidth) - (minhdelayx1) - 4, \
246 .cropcap.bounds.height = (sheight) + (vdelay) - MIN_VDELAY, \
247 .cropcap.defrect.left = hdelayx1, \
248 .cropcap.defrect.top = (videostart0) * 2, \
249 .cropcap.defrect.width = swidth, \
250 .cropcap.defrect.height = sheight, \
251 .cropcap.pixelaspect.numerator = totalwidth, \
252 .cropcap.pixelaspect.denominator = sqwidth,
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254const struct bttv_tvnorm bttv_tvnorms[] = {
255 /* PAL-BDGHI */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800256 /* max. active video is actually 922, but 924 is divisible by 4 and 3! */
257 /* actually, max active PAL with HSCALE=0 is 948, NTSC is 768 - nil */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 {
259 .v4l2_id = V4L2_STD_PAL,
260 .name = "PAL",
261 .Fsc = 35468950,
262 .swidth = 924,
263 .sheight = 576,
264 .totalwidth = 1135,
265 .adelay = 0x7f,
266 .bdelay = 0x72,
267 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
268 .scaledtwidth = 1135,
269 .hdelayx1 = 186,
270 .hactivex1 = 924,
271 .vdelay = 0x20,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300272 .vbipack = 255, /* min (2048 / 4, 0x1ff) & 0xff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 .sram = 0,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200274 /* ITU-R frame line number of the first VBI line
Michael Schimeke5bd0262007-01-18 16:17:39 -0300275 we can capture, of the first and second field.
276 The last line is determined by cropcap.bounds. */
277 .vbistart = { 7, 320 },
278 CROPCAP(/* minhdelayx1 */ 68,
279 /* hdelayx1 */ 186,
280 /* Should be (768 * 1135 + 944 / 2) / 944.
281 cropcap.defrect is used for image width
282 checks, so we keep the old value 924. */
283 /* swidth */ 924,
284 /* totalwidth */ 1135,
285 /* sqwidth */ 944,
286 /* vdelay */ 0x20,
287 /* sheight */ 576,
288 /* videostart0 */ 23)
289 /* bt878 (and bt848?) can capture another
290 line below active video. */
291 .cropcap.bounds.height = (576 + 2) + 0x20 - 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 },{
Hans Verkuild97a11e2006-02-07 06:48:40 -0200293 .v4l2_id = V4L2_STD_NTSC_M | V4L2_STD_NTSC_M_KR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .name = "NTSC",
295 .Fsc = 28636363,
296 .swidth = 768,
297 .sheight = 480,
298 .totalwidth = 910,
299 .adelay = 0x68,
300 .bdelay = 0x5d,
301 .iform = (BT848_IFORM_NTSC|BT848_IFORM_XT0),
302 .scaledtwidth = 910,
303 .hdelayx1 = 128,
304 .hactivex1 = 910,
305 .vdelay = 0x1a,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300306 .vbipack = 144, /* min (1600 / 4, 0x1ff) & 0xff */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .sram = 1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200308 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300309 CROPCAP(/* minhdelayx1 */ 68,
310 /* hdelayx1 */ 128,
311 /* Should be (640 * 910 + 780 / 2) / 780? */
312 /* swidth */ 768,
313 /* totalwidth */ 910,
314 /* sqwidth */ 780,
315 /* vdelay */ 0x1a,
316 /* sheight */ 480,
317 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 },{
319 .v4l2_id = V4L2_STD_SECAM,
320 .name = "SECAM",
321 .Fsc = 35468950,
322 .swidth = 924,
323 .sheight = 576,
324 .totalwidth = 1135,
325 .adelay = 0x7f,
326 .bdelay = 0xb0,
327 .iform = (BT848_IFORM_SECAM|BT848_IFORM_XT1),
328 .scaledtwidth = 1135,
329 .hdelayx1 = 186,
330 .hactivex1 = 922,
331 .vdelay = 0x20,
332 .vbipack = 255,
333 .sram = 0, /* like PAL, correct? */
Michael H. Schimek67f15702006-01-09 15:25:27 -0200334 .vbistart = { 7, 320 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300335 CROPCAP(/* minhdelayx1 */ 68,
336 /* hdelayx1 */ 186,
337 /* swidth */ 924,
338 /* totalwidth */ 1135,
339 /* sqwidth */ 944,
340 /* vdelay */ 0x20,
341 /* sheight */ 576,
342 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 },{
344 .v4l2_id = V4L2_STD_PAL_Nc,
345 .name = "PAL-Nc",
346 .Fsc = 28636363,
347 .swidth = 640,
348 .sheight = 576,
349 .totalwidth = 910,
350 .adelay = 0x68,
351 .bdelay = 0x5d,
352 .iform = (BT848_IFORM_PAL_NC|BT848_IFORM_XT0),
353 .scaledtwidth = 780,
354 .hdelayx1 = 130,
355 .hactivex1 = 734,
356 .vdelay = 0x1a,
357 .vbipack = 144,
358 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200359 .vbistart = { 7, 320 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300360 CROPCAP(/* minhdelayx1 */ 68,
361 /* hdelayx1 */ 130,
362 /* swidth */ (640 * 910 + 780 / 2) / 780,
363 /* totalwidth */ 910,
364 /* sqwidth */ 780,
365 /* vdelay */ 0x1a,
366 /* sheight */ 576,
367 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 },{
369 .v4l2_id = V4L2_STD_PAL_M,
370 .name = "PAL-M",
371 .Fsc = 28636363,
372 .swidth = 640,
373 .sheight = 480,
374 .totalwidth = 910,
375 .adelay = 0x68,
376 .bdelay = 0x5d,
377 .iform = (BT848_IFORM_PAL_M|BT848_IFORM_XT0),
378 .scaledtwidth = 780,
379 .hdelayx1 = 135,
380 .hactivex1 = 754,
381 .vdelay = 0x1a,
382 .vbipack = 144,
383 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200384 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300385 CROPCAP(/* minhdelayx1 */ 68,
386 /* hdelayx1 */ 135,
387 /* swidth */ (640 * 910 + 780 / 2) / 780,
388 /* totalwidth */ 910,
389 /* sqwidth */ 780,
390 /* vdelay */ 0x1a,
391 /* sheight */ 480,
392 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 },{
394 .v4l2_id = V4L2_STD_PAL_N,
395 .name = "PAL-N",
396 .Fsc = 35468950,
397 .swidth = 768,
398 .sheight = 576,
399 .totalwidth = 1135,
400 .adelay = 0x7f,
401 .bdelay = 0x72,
402 .iform = (BT848_IFORM_PAL_N|BT848_IFORM_XT1),
403 .scaledtwidth = 944,
404 .hdelayx1 = 186,
405 .hactivex1 = 922,
406 .vdelay = 0x20,
407 .vbipack = 144,
408 .sram = -1,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300409 .vbistart = { 7, 320 },
410 CROPCAP(/* minhdelayx1 */ 68,
411 /* hdelayx1 */ 186,
412 /* swidth */ (768 * 1135 + 944 / 2) / 944,
413 /* totalwidth */ 1135,
414 /* sqwidth */ 944,
415 /* vdelay */ 0x20,
416 /* sheight */ 576,
417 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 },{
419 .v4l2_id = V4L2_STD_NTSC_M_JP,
420 .name = "NTSC-JP",
421 .Fsc = 28636363,
422 .swidth = 640,
423 .sheight = 480,
424 .totalwidth = 910,
425 .adelay = 0x68,
426 .bdelay = 0x5d,
427 .iform = (BT848_IFORM_NTSC_J|BT848_IFORM_XT0),
428 .scaledtwidth = 780,
429 .hdelayx1 = 135,
430 .hactivex1 = 754,
431 .vdelay = 0x16,
432 .vbipack = 144,
433 .sram = -1,
Michael Schimeke5bd0262007-01-18 16:17:39 -0300434 .vbistart = { 10, 273 },
435 CROPCAP(/* minhdelayx1 */ 68,
436 /* hdelayx1 */ 135,
437 /* swidth */ (640 * 910 + 780 / 2) / 780,
438 /* totalwidth */ 910,
439 /* sqwidth */ 780,
440 /* vdelay */ 0x16,
441 /* sheight */ 480,
442 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 },{
444 /* that one hopefully works with the strange timing
445 * which video recorders produce when playing a NTSC
446 * tape on a PAL TV ... */
447 .v4l2_id = V4L2_STD_PAL_60,
448 .name = "PAL-60",
449 .Fsc = 35468950,
450 .swidth = 924,
451 .sheight = 480,
452 .totalwidth = 1135,
453 .adelay = 0x7f,
454 .bdelay = 0x72,
455 .iform = (BT848_IFORM_PAL_BDGHI|BT848_IFORM_XT1),
456 .scaledtwidth = 1135,
457 .hdelayx1 = 186,
458 .hactivex1 = 924,
459 .vdelay = 0x1a,
460 .vbipack = 255,
461 .vtotal = 524,
462 .sram = -1,
Michael H. Schimek67f15702006-01-09 15:25:27 -0200463 .vbistart = { 10, 273 },
Michael Schimeke5bd0262007-01-18 16:17:39 -0300464 CROPCAP(/* minhdelayx1 */ 68,
465 /* hdelayx1 */ 186,
466 /* swidth */ 924,
467 /* totalwidth */ 1135,
468 /* sqwidth */ 944,
469 /* vdelay */ 0x1a,
470 /* sheight */ 480,
471 /* videostart0 */ 23)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473};
474static const unsigned int BTTV_TVNORMS = ARRAY_SIZE(bttv_tvnorms);
475
476/* ----------------------------------------------------------------------- */
477/* bttv format list
478 packed pixel formats must come first */
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300479static const struct bttv_format formats[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 {
481 .name = "8 bpp, gray",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 .fourcc = V4L2_PIX_FMT_GREY,
483 .btformat = BT848_COLOR_FMT_Y8,
484 .depth = 8,
485 .flags = FORMAT_FLAGS_PACKED,
486 },{
487 .name = "8 bpp, dithered color",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 .fourcc = V4L2_PIX_FMT_HI240,
489 .btformat = BT848_COLOR_FMT_RGB8,
490 .depth = 8,
491 .flags = FORMAT_FLAGS_PACKED | FORMAT_FLAGS_DITHER,
492 },{
493 .name = "15 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 .fourcc = V4L2_PIX_FMT_RGB555,
495 .btformat = BT848_COLOR_FMT_RGB15,
496 .depth = 16,
497 .flags = FORMAT_FLAGS_PACKED,
498 },{
499 .name = "15 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 .fourcc = V4L2_PIX_FMT_RGB555X,
501 .btformat = BT848_COLOR_FMT_RGB15,
502 .btswap = 0x03, /* byteswap */
503 .depth = 16,
504 .flags = FORMAT_FLAGS_PACKED,
505 },{
506 .name = "16 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 .fourcc = V4L2_PIX_FMT_RGB565,
508 .btformat = BT848_COLOR_FMT_RGB16,
509 .depth = 16,
510 .flags = FORMAT_FLAGS_PACKED,
511 },{
512 .name = "16 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .fourcc = V4L2_PIX_FMT_RGB565X,
514 .btformat = BT848_COLOR_FMT_RGB16,
515 .btswap = 0x03, /* byteswap */
516 .depth = 16,
517 .flags = FORMAT_FLAGS_PACKED,
518 },{
519 .name = "24 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 .fourcc = V4L2_PIX_FMT_BGR24,
521 .btformat = BT848_COLOR_FMT_RGB24,
522 .depth = 24,
523 .flags = FORMAT_FLAGS_PACKED,
524 },{
525 .name = "32 bpp RGB, le",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 .fourcc = V4L2_PIX_FMT_BGR32,
527 .btformat = BT848_COLOR_FMT_RGB32,
528 .depth = 32,
529 .flags = FORMAT_FLAGS_PACKED,
530 },{
531 .name = "32 bpp RGB, be",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 .fourcc = V4L2_PIX_FMT_RGB32,
533 .btformat = BT848_COLOR_FMT_RGB32,
534 .btswap = 0x0f, /* byte+word swap */
535 .depth = 32,
536 .flags = FORMAT_FLAGS_PACKED,
537 },{
538 .name = "4:2:2, packed, YUYV",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 .fourcc = V4L2_PIX_FMT_YUYV,
540 .btformat = BT848_COLOR_FMT_YUY2,
541 .depth = 16,
542 .flags = FORMAT_FLAGS_PACKED,
543 },{
544 .name = "4:2:2, packed, YUYV",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .fourcc = V4L2_PIX_FMT_YUYV,
546 .btformat = BT848_COLOR_FMT_YUY2,
547 .depth = 16,
548 .flags = FORMAT_FLAGS_PACKED,
549 },{
550 .name = "4:2:2, packed, UYVY",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 .fourcc = V4L2_PIX_FMT_UYVY,
552 .btformat = BT848_COLOR_FMT_YUY2,
553 .btswap = 0x03, /* byteswap */
554 .depth = 16,
555 .flags = FORMAT_FLAGS_PACKED,
556 },{
557 .name = "4:2:2, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 .fourcc = V4L2_PIX_FMT_YUV422P,
559 .btformat = BT848_COLOR_FMT_YCrCb422,
560 .depth = 16,
561 .flags = FORMAT_FLAGS_PLANAR,
562 .hshift = 1,
563 .vshift = 0,
564 },{
565 .name = "4:2:0, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .fourcc = V4L2_PIX_FMT_YUV420,
567 .btformat = BT848_COLOR_FMT_YCrCb422,
568 .depth = 12,
569 .flags = FORMAT_FLAGS_PLANAR,
570 .hshift = 1,
571 .vshift = 1,
572 },{
573 .name = "4:2:0, planar, Y-Cr-Cb",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 .fourcc = V4L2_PIX_FMT_YVU420,
575 .btformat = BT848_COLOR_FMT_YCrCb422,
576 .depth = 12,
577 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
578 .hshift = 1,
579 .vshift = 1,
580 },{
581 .name = "4:1:1, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .fourcc = V4L2_PIX_FMT_YUV411P,
583 .btformat = BT848_COLOR_FMT_YCrCb411,
584 .depth = 12,
585 .flags = FORMAT_FLAGS_PLANAR,
586 .hshift = 2,
587 .vshift = 0,
588 },{
589 .name = "4:1:0, planar, Y-Cb-Cr",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 .fourcc = V4L2_PIX_FMT_YUV410,
591 .btformat = BT848_COLOR_FMT_YCrCb411,
592 .depth = 9,
593 .flags = FORMAT_FLAGS_PLANAR,
594 .hshift = 2,
595 .vshift = 2,
596 },{
597 .name = "4:1:0, planar, Y-Cr-Cb",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 .fourcc = V4L2_PIX_FMT_YVU410,
599 .btformat = BT848_COLOR_FMT_YCrCb411,
600 .depth = 9,
601 .flags = FORMAT_FLAGS_PLANAR | FORMAT_FLAGS_CrCb,
602 .hshift = 2,
603 .vshift = 2,
604 },{
605 .name = "raw scanlines",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 .fourcc = -1,
607 .btformat = BT848_COLOR_FMT_RAW,
608 .depth = 8,
609 .flags = FORMAT_FLAGS_RAW,
610 }
611};
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300612static const unsigned int FORMATS = ARRAY_SIZE(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614/* ----------------------------------------------------------------------- */
615
616#define V4L2_CID_PRIVATE_CHROMA_AGC (V4L2_CID_PRIVATE_BASE + 0)
617#define V4L2_CID_PRIVATE_COMBFILTER (V4L2_CID_PRIVATE_BASE + 1)
618#define V4L2_CID_PRIVATE_AUTOMUTE (V4L2_CID_PRIVATE_BASE + 2)
619#define V4L2_CID_PRIVATE_LUMAFILTER (V4L2_CID_PRIVATE_BASE + 3)
620#define V4L2_CID_PRIVATE_AGC_CRUSH (V4L2_CID_PRIVATE_BASE + 4)
621#define V4L2_CID_PRIVATE_VCR_HACK (V4L2_CID_PRIVATE_BASE + 5)
622#define V4L2_CID_PRIVATE_WHITECRUSH_UPPER (V4L2_CID_PRIVATE_BASE + 6)
623#define V4L2_CID_PRIVATE_WHITECRUSH_LOWER (V4L2_CID_PRIVATE_BASE + 7)
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700624#define V4L2_CID_PRIVATE_UV_RATIO (V4L2_CID_PRIVATE_BASE + 8)
625#define V4L2_CID_PRIVATE_FULL_LUMA_RANGE (V4L2_CID_PRIVATE_BASE + 9)
626#define V4L2_CID_PRIVATE_CORING (V4L2_CID_PRIVATE_BASE + 10)
627#define V4L2_CID_PRIVATE_LASTP1 (V4L2_CID_PRIVATE_BASE + 11)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629static const struct v4l2_queryctrl no_ctl = {
630 .name = "42",
631 .flags = V4L2_CTRL_FLAG_DISABLED,
632};
633static const struct v4l2_queryctrl bttv_ctls[] = {
634 /* --- video --- */
635 {
636 .id = V4L2_CID_BRIGHTNESS,
637 .name = "Brightness",
638 .minimum = 0,
639 .maximum = 65535,
640 .step = 256,
641 .default_value = 32768,
642 .type = V4L2_CTRL_TYPE_INTEGER,
643 },{
644 .id = V4L2_CID_CONTRAST,
645 .name = "Contrast",
646 .minimum = 0,
647 .maximum = 65535,
648 .step = 128,
649 .default_value = 32768,
650 .type = V4L2_CTRL_TYPE_INTEGER,
651 },{
652 .id = V4L2_CID_SATURATION,
653 .name = "Saturation",
654 .minimum = 0,
655 .maximum = 65535,
656 .step = 128,
657 .default_value = 32768,
658 .type = V4L2_CTRL_TYPE_INTEGER,
659 },{
660 .id = V4L2_CID_HUE,
661 .name = "Hue",
662 .minimum = 0,
663 .maximum = 65535,
664 .step = 256,
665 .default_value = 32768,
666 .type = V4L2_CTRL_TYPE_INTEGER,
667 },
668 /* --- audio --- */
669 {
670 .id = V4L2_CID_AUDIO_MUTE,
671 .name = "Mute",
672 .minimum = 0,
673 .maximum = 1,
674 .type = V4L2_CTRL_TYPE_BOOLEAN,
675 },{
676 .id = V4L2_CID_AUDIO_VOLUME,
677 .name = "Volume",
678 .minimum = 0,
679 .maximum = 65535,
680 .step = 65535/100,
681 .default_value = 65535,
682 .type = V4L2_CTRL_TYPE_INTEGER,
683 },{
684 .id = V4L2_CID_AUDIO_BALANCE,
685 .name = "Balance",
686 .minimum = 0,
687 .maximum = 65535,
688 .step = 65535/100,
689 .default_value = 32768,
690 .type = V4L2_CTRL_TYPE_INTEGER,
691 },{
692 .id = V4L2_CID_AUDIO_BASS,
693 .name = "Bass",
694 .minimum = 0,
695 .maximum = 65535,
696 .step = 65535/100,
697 .default_value = 32768,
698 .type = V4L2_CTRL_TYPE_INTEGER,
699 },{
700 .id = V4L2_CID_AUDIO_TREBLE,
701 .name = "Treble",
702 .minimum = 0,
703 .maximum = 65535,
704 .step = 65535/100,
705 .default_value = 32768,
706 .type = V4L2_CTRL_TYPE_INTEGER,
707 },
708 /* --- private --- */
709 {
710 .id = V4L2_CID_PRIVATE_CHROMA_AGC,
711 .name = "chroma agc",
712 .minimum = 0,
713 .maximum = 1,
714 .type = V4L2_CTRL_TYPE_BOOLEAN,
715 },{
716 .id = V4L2_CID_PRIVATE_COMBFILTER,
717 .name = "combfilter",
718 .minimum = 0,
719 .maximum = 1,
720 .type = V4L2_CTRL_TYPE_BOOLEAN,
721 },{
722 .id = V4L2_CID_PRIVATE_AUTOMUTE,
723 .name = "automute",
724 .minimum = 0,
725 .maximum = 1,
726 .type = V4L2_CTRL_TYPE_BOOLEAN,
727 },{
728 .id = V4L2_CID_PRIVATE_LUMAFILTER,
729 .name = "luma decimation filter",
730 .minimum = 0,
731 .maximum = 1,
732 .type = V4L2_CTRL_TYPE_BOOLEAN,
733 },{
734 .id = V4L2_CID_PRIVATE_AGC_CRUSH,
735 .name = "agc crush",
736 .minimum = 0,
737 .maximum = 1,
738 .type = V4L2_CTRL_TYPE_BOOLEAN,
739 },{
740 .id = V4L2_CID_PRIVATE_VCR_HACK,
741 .name = "vcr hack",
742 .minimum = 0,
743 .maximum = 1,
744 .type = V4L2_CTRL_TYPE_BOOLEAN,
745 },{
746 .id = V4L2_CID_PRIVATE_WHITECRUSH_UPPER,
747 .name = "whitecrush upper",
748 .minimum = 0,
749 .maximum = 255,
750 .step = 1,
751 .default_value = 0xCF,
752 .type = V4L2_CTRL_TYPE_INTEGER,
753 },{
754 .id = V4L2_CID_PRIVATE_WHITECRUSH_LOWER,
755 .name = "whitecrush lower",
756 .minimum = 0,
757 .maximum = 255,
758 .step = 1,
759 .default_value = 0x7F,
760 .type = V4L2_CTRL_TYPE_INTEGER,
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700761 },{
762 .id = V4L2_CID_PRIVATE_UV_RATIO,
763 .name = "uv ratio",
764 .minimum = 0,
765 .maximum = 100,
766 .step = 1,
767 .default_value = 50,
768 .type = V4L2_CTRL_TYPE_INTEGER,
769 },{
770 .id = V4L2_CID_PRIVATE_FULL_LUMA_RANGE,
771 .name = "full luma range",
772 .minimum = 0,
773 .maximum = 1,
774 .type = V4L2_CTRL_TYPE_BOOLEAN,
775 },{
776 .id = V4L2_CID_PRIVATE_CORING,
777 .name = "coring",
778 .minimum = 0,
779 .maximum = 3,
780 .step = 1,
781 .default_value = 0,
782 .type = V4L2_CTRL_TYPE_INTEGER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -0700785
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300789static const struct v4l2_queryctrl *ctrl_by_id(int id)
790{
791 int i;
792
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -0300793 for (i = 0; i < ARRAY_SIZE(bttv_ctls); i++)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300794 if (bttv_ctls[i].id == id)
795 return bttv_ctls+i;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -0300796
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -0300797 return NULL;
798}
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/* ----------------------------------------------------------------------- */
801/* resource management */
802
Michael Schimeke5bd0262007-01-18 16:17:39 -0300803/*
804 RESOURCE_ allocated by freed by
805
806 VIDEO_READ bttv_read 1) bttv_read 2)
807
808 VIDEO_STREAM VIDIOC_STREAMON VIDIOC_STREAMOFF
809 VIDIOC_QBUF 1) bttv_release
810 VIDIOCMCAPTURE 1)
811
812 OVERLAY VIDIOCCAPTURE on VIDIOCCAPTURE off
813 VIDIOC_OVERLAY on VIDIOC_OVERLAY off
814 3) bttv_release
815
816 VBI VIDIOC_STREAMON VIDIOC_STREAMOFF
817 VIDIOC_QBUF 1) bttv_release
818 bttv_read, bttv_poll 1) 4)
819
820 1) The resource must be allocated when we enter buffer prepare functions
821 and remain allocated while buffers are in the DMA queue.
822 2) This is a single frame read.
823 3) VIDIOC_S_FBUF and VIDIOC_S_FMT (OVERLAY) still work when
824 RESOURCE_OVERLAY is allocated.
825 4) This is a continuous read, implies VIDIOC_STREAMON.
826
827 Note this driver permits video input and standard changes regardless if
828 resources are allocated.
829*/
830
831#define VBI_RESOURCES (RESOURCE_VBI)
832#define VIDEO_RESOURCES (RESOURCE_VIDEO_READ | \
833 RESOURCE_VIDEO_STREAM | \
834 RESOURCE_OVERLAY)
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836static
837int check_alloc_btres(struct bttv *btv, struct bttv_fh *fh, int bit)
838{
Michael Schimeke5bd0262007-01-18 16:17:39 -0300839 int xbits; /* mutual exclusive resources */
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (fh->resources & bit)
842 /* have it already allocated */
843 return 1;
844
Michael Schimeke5bd0262007-01-18 16:17:39 -0300845 xbits = bit;
846 if (bit & (RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM))
847 xbits |= RESOURCE_VIDEO_READ | RESOURCE_VIDEO_STREAM;
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /* is it free? */
Michael Schimeke5bd0262007-01-18 16:17:39 -0300850 mutex_lock(&btv->lock);
851 if (btv->resources & xbits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* no, someone else uses it */
Michael Schimeke5bd0262007-01-18 16:17:39 -0300853 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Michael Schimeke5bd0262007-01-18 16:17:39 -0300855
856 if ((bit & VIDEO_RESOURCES)
857 && 0 == (btv->resources & VIDEO_RESOURCES)) {
858 /* Do crop - use current, don't - use default parameters. */
859 __s32 top = btv->crop[!!fh->do_crop].rect.top;
860
861 if (btv->vbi_end > top)
862 goto fail;
863
864 /* We cannot capture the same line as video and VBI data.
865 Claim scan lines crop[].rect.top to bottom. */
866 btv->crop_start = top;
867 } else if (bit & VBI_RESOURCES) {
868 __s32 end = fh->vbi_fmt.end;
869
870 if (end > btv->crop_start)
871 goto fail;
872
873 /* Claim scan lines above fh->vbi_fmt.end. */
874 btv->vbi_end = end;
875 }
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* it's free, grab it */
878 fh->resources |= bit;
879 btv->resources |= bit;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300880 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return 1;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300882
883 fail:
884 mutex_unlock(&btv->lock);
885 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888static
889int check_btres(struct bttv_fh *fh, int bit)
890{
891 return (fh->resources & bit);
892}
893
894static
895int locked_btres(struct bttv *btv, int bit)
896{
897 return (btv->resources & bit);
898}
899
Michael Schimeke5bd0262007-01-18 16:17:39 -0300900/* Call with btv->lock down. */
901static void
902disclaim_vbi_lines(struct bttv *btv)
903{
904 btv->vbi_end = 0;
905}
906
907/* Call with btv->lock down. */
908static void
909disclaim_video_lines(struct bttv *btv)
910{
911 const struct bttv_tvnorm *tvnorm;
912 u8 crop;
913
914 tvnorm = &bttv_tvnorms[btv->tvnorm];
915 btv->crop_start = tvnorm->cropcap.bounds.top
916 + tvnorm->cropcap.bounds.height;
917
918 /* VBI capturing ends at VDELAY, start of video capturing, no
919 matter how many lines the VBI RISC program expects. When video
920 capturing is off, it shall no longer "preempt" VBI capturing,
921 so we set VDELAY to maximum. */
922 crop = btread(BT848_E_CROP) | 0xc0;
923 btwrite(crop, BT848_E_CROP);
924 btwrite(0xfe, BT848_E_VDELAY_LO);
925 btwrite(crop, BT848_O_CROP);
926 btwrite(0xfe, BT848_O_VDELAY_LO);
927}
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929static
930void free_btres(struct bttv *btv, struct bttv_fh *fh, int bits)
931{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if ((fh->resources & bits) != bits) {
933 /* trying to free ressources not allocated by us ... */
934 printk("bttv: BUG! (btres)\n");
935 }
Michael Schimeke5bd0262007-01-18 16:17:39 -0300936 mutex_lock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 fh->resources &= ~bits;
938 btv->resources &= ~bits;
Michael Schimeke5bd0262007-01-18 16:17:39 -0300939
940 bits = btv->resources;
941
942 if (0 == (bits & VIDEO_RESOURCES))
943 disclaim_video_lines(btv);
944
945 if (0 == (bits & VBI_RESOURCES))
946 disclaim_vbi_lines(btv);
947
948 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951/* ----------------------------------------------------------------------- */
952/* If Bt848a or Bt849, use PLL for PAL/SECAM and crystal for NTSC */
953
954/* Frequency = (F_input / PLL_X) * PLL_I.PLL_F/PLL_C
955 PLL_X = Reference pre-divider (0=1, 1=2)
956 PLL_C = Post divider (0=6, 1=4)
957 PLL_I = Integer input
958 PLL_F = Fractional input
959
960 F_input = 28.636363 MHz:
961 PAL (CLKx2 = 35.46895 MHz): PLL_X = 1, PLL_I = 0x0E, PLL_F = 0xDCF9, PLL_C = 0
962*/
963
964static void set_pll_freq(struct bttv *btv, unsigned int fin, unsigned int fout)
965{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800966 unsigned char fl, fh, fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800968 /* prevent overflows */
969 fin/=4;
970 fout/=4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800972 fout*=12;
973 fi=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800975 fout=(fout%fin)*256;
976 fh=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800978 fout=(fout%fin)*256;
979 fl=fout/fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800981 btwrite(fl, BT848_PLL_F_LO);
982 btwrite(fh, BT848_PLL_F_HI);
983 btwrite(fi|BT848_PLL_X, BT848_PLL_XCI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986static void set_pll(struct bttv *btv)
987{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800988 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800990 if (!btv->pll.pll_crystal)
991 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 if (btv->pll.pll_ofreq == btv->pll.pll_current) {
994 dprintk("bttv%d: PLL: no change required\n",btv->c.nr);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800995 return;
996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800998 if (btv->pll.pll_ifreq == btv->pll.pll_ofreq) {
999 /* no PLL needed */
1000 if (btv->pll.pll_current == 0)
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001001 return;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001002 bttv_printk(KERN_INFO "bttv%d: PLL can sleep, using XTAL (%d).\n",
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001003 btv->c.nr,btv->pll.pll_ifreq);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001004 btwrite(0x00,BT848_TGCTRL);
1005 btwrite(0x00,BT848_PLL_XCI);
1006 btv->pll.pll_current = 0;
1007 return;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001010 bttv_printk(KERN_INFO "bttv%d: PLL: %d => %d ",btv->c.nr,
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001011 btv->pll.pll_ifreq, btv->pll.pll_ofreq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 set_pll_freq(btv, btv->pll.pll_ifreq, btv->pll.pll_ofreq);
1013
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001014 for (i=0; i<10; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /* Let other people run while the PLL stabilizes */
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001016 bttv_printk(".");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 msleep(10);
1018
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001019 if (btread(BT848_DSTATUS) & BT848_DSTATUS_PLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 btwrite(0,BT848_DSTATUS);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001021 } else {
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001022 btwrite(0x08,BT848_TGCTRL);
1023 btv->pll.pll_current = btv->pll.pll_ofreq;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001024 bttv_printk(" ok\n");
Mauro Carvalho Chehab674434c2005-12-12 00:37:28 -08001025 return;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001026 }
1027 }
1028 btv->pll.pll_current = -1;
Bernd Petrovitsche1e70a22005-09-22 21:43:53 -07001029 bttv_printk("failed\n");
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -08001030 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
1033/* used to switch between the bt848's analog/digital video capture modes */
1034static void bt848A_set_timing(struct bttv *btv)
1035{
1036 int i, len;
1037 int table_idx = bttv_tvnorms[btv->tvnorm].sram;
1038 int fsc = bttv_tvnorms[btv->tvnorm].Fsc;
1039
1040 if (UNSET == bttv_tvcards[btv->c.type].muxsel[btv->input]) {
1041 dprintk("bttv%d: load digital timing table (table_idx=%d)\n",
1042 btv->c.nr,table_idx);
1043
1044 /* timing change...reset timing generator address */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001045 btwrite(0x00, BT848_TGCTRL);
1046 btwrite(0x02, BT848_TGCTRL);
1047 btwrite(0x00, BT848_TGCTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 len=SRAM_Table[table_idx][0];
1050 for(i = 1; i <= len; i++)
1051 btwrite(SRAM_Table[table_idx][i],BT848_TGLB);
1052 btv->pll.pll_ofreq = 27000000;
1053
1054 set_pll(btv);
1055 btwrite(0x11, BT848_TGCTRL);
1056 btwrite(0x41, BT848_DVSIF);
1057 } else {
1058 btv->pll.pll_ofreq = fsc;
1059 set_pll(btv);
1060 btwrite(0x0, BT848_DVSIF);
1061 }
1062}
1063
1064/* ----------------------------------------------------------------------- */
1065
1066static void bt848_bright(struct bttv *btv, int bright)
1067{
1068 int value;
1069
1070 // printk("bttv: set bright: %d\n",bright); // DEBUG
1071 btv->bright = bright;
1072
1073 /* We want -128 to 127 we get 0-65535 */
1074 value = (bright >> 8) - 128;
1075 btwrite(value & 0xff, BT848_BRIGHT);
1076}
1077
1078static void bt848_hue(struct bttv *btv, int hue)
1079{
1080 int value;
1081
1082 btv->hue = hue;
1083
1084 /* -128 to 127 */
1085 value = (hue >> 8) - 128;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001086 btwrite(value & 0xff, BT848_HUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089static void bt848_contrast(struct bttv *btv, int cont)
1090{
1091 int value,hibit;
1092
1093 btv->contrast = cont;
1094
1095 /* 0-511 */
1096 value = (cont >> 7);
1097 hibit = (value >> 6) & 4;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001098 btwrite(value & 0xff, BT848_CONTRAST_LO);
1099 btaor(hibit, ~4, BT848_E_CONTROL);
1100 btaor(hibit, ~4, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103static void bt848_sat(struct bttv *btv, int color)
1104{
1105 int val_u,val_v,hibits;
1106
1107 btv->saturation = color;
1108
1109 /* 0-511 for the color */
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -07001110 val_u = ((color * btv->opt_uv_ratio) / 50) >> 7;
1111 val_v = (((color * (100 - btv->opt_uv_ratio) / 50) >>7)*180L)/254;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001112 hibits = (val_u >> 7) & 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 hibits |= (val_v >> 8) & 1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001114 btwrite(val_u & 0xff, BT848_SAT_U_LO);
1115 btwrite(val_v & 0xff, BT848_SAT_V_LO);
1116 btaor(hibits, ~3, BT848_E_CONTROL);
1117 btaor(hibits, ~3, BT848_O_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118}
1119
1120/* ----------------------------------------------------------------------- */
1121
1122static int
1123video_mux(struct bttv *btv, unsigned int input)
1124{
1125 int mux,mask2;
1126
1127 if (input >= bttv_tvcards[btv->c.type].video_inputs)
1128 return -EINVAL;
1129
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001130 /* needed by RemoteVideo MX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 mask2 = bttv_tvcards[btv->c.type].gpiomask2;
1132 if (mask2)
1133 gpio_inout(mask2,mask2);
1134
1135 if (input == btv->svhs) {
1136 btor(BT848_CONTROL_COMP, BT848_E_CONTROL);
1137 btor(BT848_CONTROL_COMP, BT848_O_CONTROL);
1138 } else {
1139 btand(~BT848_CONTROL_COMP, BT848_E_CONTROL);
1140 btand(~BT848_CONTROL_COMP, BT848_O_CONTROL);
1141 }
1142 mux = bttv_tvcards[btv->c.type].muxsel[input] & 3;
1143 btaor(mux<<5, ~(3<<5), BT848_IFORM);
1144 dprintk(KERN_DEBUG "bttv%d: video mux: input=%d mux=%d\n",
1145 btv->c.nr,input,mux);
1146
1147 /* card specific hook */
1148 if(bttv_tvcards[btv->c.type].muxsel_hook)
1149 bttv_tvcards[btv->c.type].muxsel_hook (btv, input);
1150 return 0;
1151}
1152
1153static char *audio_modes[] = {
1154 "audio: tuner", "audio: radio", "audio: extern",
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001155 "audio: intern", "audio: mute"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156};
1157
1158static int
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001159audio_mux(struct bttv *btv, int input, int mute)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001161 int gpio_val, signal;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001162 struct v4l2_control ctrl;
1163 struct i2c_client *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 gpio_inout(bttv_tvcards[btv->c.type].gpiomask,
1166 bttv_tvcards[btv->c.type].gpiomask);
1167 signal = btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC;
1168
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001169 btv->mute = mute;
1170 btv->audio = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001172 /* automute */
1173 mute = mute || (btv->opt_automute && !signal && !btv->radio_user);
1174
1175 if (mute)
1176 gpio_val = bttv_tvcards[btv->c.type].gpiomute;
1177 else
1178 gpio_val = bttv_tvcards[btv->c.type].gpiomux[input];
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001179
1180 gpio_bits(bttv_tvcards[btv->c.type].gpiomask, gpio_val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (bttv_gpio)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001182 bttv_gpio_tracking(btv, audio_modes[mute ? 4 : input]);
1183 if (in_interrupt())
1184 return 0;
1185
1186 ctrl.id = V4L2_CID_AUDIO_MUTE;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001187 ctrl.value = btv->mute;
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001188 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, &ctrl);
1189 c = btv->i2c_msp34xx_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001190 if (c) {
1191 struct v4l2_routing route;
1192
1193 /* Note: the inputs tuner/radio/extern/intern are translated
1194 to msp routings. This assumes common behavior for all msp3400
1195 based TV cards. When this assumption fails, then the
1196 specific MSP routing must be added to the card table.
1197 For now this is sufficient. */
1198 switch (input) {
1199 case TVAUDIO_INPUT_RADIO:
Hans Verkuil07151722006-04-01 18:03:23 -03001200 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1201 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001202 break;
1203 case TVAUDIO_INPUT_EXTERN:
Hans Verkuil07151722006-04-01 18:03:23 -03001204 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER1,
1205 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001206 break;
1207 case TVAUDIO_INPUT_INTERN:
1208 /* Yes, this is the same input as for RADIO. I doubt
1209 if this is ever used. The only board with an INTERN
1210 input is the BTTV_BOARD_AVERMEDIA98. I wonder how
1211 that was tested. My guess is that the whole INTERN
1212 input does not work. */
Hans Verkuil07151722006-04-01 18:03:23 -03001213 route.input = MSP_INPUT(MSP_IN_SCART2, MSP_IN_TUNER1,
1214 MSP_DSP_IN_SCART, MSP_DSP_IN_SCART);
Hans Verkuil2474ed42006-03-19 12:35:57 -03001215 break;
1216 case TVAUDIO_INPUT_TUNER:
1217 default:
Wade Berrier434b2522007-06-25 13:02:16 -03001218 /* This is the only card that uses TUNER2, and afaik,
1219 is the only difference between the VOODOOTV_FM
1220 and VOODOOTV_200 */
1221 if (btv->c.type == BTTV_BOARD_VOODOOTV_200)
1222 route.input = MSP_INPUT(MSP_IN_SCART1, MSP_IN_TUNER2, \
1223 MSP_DSP_IN_TUNER, MSP_DSP_IN_TUNER);
1224 else
1225 route.input = MSP_INPUT_DEFAULT;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001226 break;
1227 }
1228 route.output = MSP_OUTPUT_DEFAULT;
1229 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1230 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001231 c = btv->i2c_tvaudio_client;
Hans Verkuil2474ed42006-03-19 12:35:57 -03001232 if (c) {
1233 struct v4l2_routing route;
1234
1235 route.input = input;
1236 route.output = 0;
1237 c->driver->command(c, VIDIOC_INT_S_AUDIO_ROUTING, &route);
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return 0;
1240}
1241
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001242static inline int
1243audio_mute(struct bttv *btv, int mute)
1244{
1245 return audio_mux(btv, btv->audio, mute);
1246}
1247
1248static inline int
1249audio_input(struct bttv *btv, int input)
1250{
1251 return audio_mux(btv, input, btv->mute);
1252}
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254static void
Michael Schimeke5bd0262007-01-18 16:17:39 -03001255bttv_crop_calc_limits(struct bttv_crop *c)
1256{
1257 /* Scale factor min. 1:1, max. 16:1. Min. image size
1258 48 x 32. Scaled width must be a multiple of 4. */
1259
1260 if (1) {
1261 /* For bug compatibility with VIDIOCGCAP and image
1262 size checks in earlier driver versions. */
1263 c->min_scaled_width = 48;
1264 c->min_scaled_height = 32;
1265 } else {
1266 c->min_scaled_width =
1267 (max(48, c->rect.width >> 4) + 3) & ~3;
1268 c->min_scaled_height =
1269 max(32, c->rect.height >> 4);
1270 }
1271
1272 c->max_scaled_width = c->rect.width & ~3;
1273 c->max_scaled_height = c->rect.height;
1274}
1275
1276static void
1277bttv_crop_reset(struct bttv_crop *c, int norm)
1278{
1279 c->rect = bttv_tvnorms[norm].cropcap.defrect;
1280 bttv_crop_calc_limits(c);
1281}
1282
1283/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284static int
1285set_tvnorm(struct bttv *btv, unsigned int norm)
1286{
1287 const struct bttv_tvnorm *tvnorm;
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001288 v4l2_std_id id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if (norm < 0 || norm >= BTTV_TVNORMS)
1291 return -EINVAL;
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 tvnorm = &bttv_tvnorms[norm];
1294
Michael Schimeke5bd0262007-01-18 16:17:39 -03001295 if (btv->tvnorm < 0 ||
1296 btv->tvnorm >= BTTV_TVNORMS ||
1297 0 != memcmp(&bttv_tvnorms[btv->tvnorm].cropcap,
1298 &tvnorm->cropcap,
1299 sizeof (tvnorm->cropcap))) {
1300 bttv_crop_reset(&btv->crop[0], norm);
1301 btv->crop[1] = btv->crop[0]; /* current = default */
1302
1303 if (0 == (btv->resources & VIDEO_RESOURCES)) {
1304 btv->crop_start = tvnorm->cropcap.bounds.top
1305 + tvnorm->cropcap.bounds.height;
1306 }
1307 }
1308
1309 btv->tvnorm = norm;
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 btwrite(tvnorm->adelay, BT848_ADELAY);
1312 btwrite(tvnorm->bdelay, BT848_BDELAY);
1313 btaor(tvnorm->iform,~(BT848_IFORM_NORM|BT848_IFORM_XTBOTH),
1314 BT848_IFORM);
1315 btwrite(tvnorm->vbipack, BT848_VBI_PACK_SIZE);
1316 btwrite(1, BT848_VBI_PACK_DEL);
1317 bt848A_set_timing(btv);
1318
1319 switch (btv->c.type) {
Mauro Carvalho Chehab5a25e842005-11-08 21:36:52 -08001320 case BTTV_BOARD_VOODOOTV_FM:
Wade Berrier434b2522007-06-25 13:02:16 -03001321 case BTTV_BOARD_VOODOOTV_200:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 bttv_tda9880_setnorm(btv,norm);
1323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03001325 id = tvnorm->v4l2_id;
1326 bttv_call_i2c_clients(btv, VIDIOC_S_STD, &id);
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return 0;
1329}
1330
Michael Schimeke5bd0262007-01-18 16:17:39 -03001331/* Call with btv->lock down. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static void
Trent Piepho333408f2007-07-03 15:08:10 -03001333set_input(struct bttv *btv, unsigned int input, unsigned int norm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 unsigned long flags;
1336
1337 btv->input = input;
1338 if (irq_iswitch) {
1339 spin_lock_irqsave(&btv->s_lock,flags);
1340 if (btv->curr.frame_irq) {
1341 /* active capture -> delayed input switch */
1342 btv->new_input = input;
1343 } else {
1344 video_mux(btv,input);
1345 }
1346 spin_unlock_irqrestore(&btv->s_lock,flags);
1347 } else {
1348 video_mux(btv,input);
1349 }
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03001350 audio_input(btv,(input == bttv_tvcards[btv->c.type].tuner ?
1351 TVAUDIO_INPUT_TUNER : TVAUDIO_INPUT_EXTERN));
Trent Piepho333408f2007-07-03 15:08:10 -03001352 set_tvnorm(btv, norm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
1355static void init_irqreg(struct bttv *btv)
1356{
1357 /* clear status */
1358 btwrite(0xfffffUL, BT848_INT_STAT);
1359
1360 if (bttv_tvcards[btv->c.type].no_video) {
1361 /* i2c only */
1362 btwrite(BT848_INT_I2CDONE,
1363 BT848_INT_MASK);
1364 } else {
1365 /* full video */
1366 btwrite((btv->triton1) |
1367 (btv->gpioirq ? BT848_INT_GPINT : 0) |
1368 BT848_INT_SCERR |
1369 (fdsr ? BT848_INT_FDSR : 0) |
1370 BT848_INT_RISCI|BT848_INT_OCERR|BT848_INT_VPRES|
1371 BT848_INT_FMTCHG|BT848_INT_HLOCK|
1372 BT848_INT_I2CDONE,
1373 BT848_INT_MASK);
1374 }
1375}
1376
1377static void init_bt848(struct bttv *btv)
1378{
1379 int val;
1380
1381 if (bttv_tvcards[btv->c.type].no_video) {
1382 /* very basic init only */
1383 init_irqreg(btv);
1384 return;
1385 }
1386
1387 btwrite(0x00, BT848_CAP_CTL);
1388 btwrite(BT848_COLOR_CTL_GAMMA, BT848_COLOR_CTL);
1389 btwrite(BT848_IFORM_XTAUTO | BT848_IFORM_AUTO, BT848_IFORM);
1390
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001391 /* set planar and packed mode trigger points and */
1392 /* set rising edge of inverted GPINTR pin as irq trigger */
1393 btwrite(BT848_GPIO_DMA_CTL_PKTP_32|
1394 BT848_GPIO_DMA_CTL_PLTP1_16|
1395 BT848_GPIO_DMA_CTL_PLTP23_16|
1396 BT848_GPIO_DMA_CTL_GPINTC|
1397 BT848_GPIO_DMA_CTL_GPINTI,
1398 BT848_GPIO_DMA_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001401 btwrite(val, BT848_E_SCLOOP);
1402 btwrite(val, BT848_O_SCLOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001404 btwrite(0x20, BT848_E_VSCALE_HI);
1405 btwrite(0x20, BT848_O_VSCALE_HI);
1406 btwrite(BT848_ADC_RESERVED | (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 BT848_ADC);
1408
1409 btwrite(whitecrush_upper, BT848_WC_UP);
1410 btwrite(whitecrush_lower, BT848_WC_DOWN);
1411
1412 if (btv->opt_lumafilter) {
1413 btwrite(0, BT848_E_CONTROL);
1414 btwrite(0, BT848_O_CONTROL);
1415 } else {
1416 btwrite(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1417 btwrite(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1418 }
1419
1420 bt848_bright(btv, btv->bright);
1421 bt848_hue(btv, btv->hue);
1422 bt848_contrast(btv, btv->contrast);
1423 bt848_sat(btv, btv->saturation);
1424
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001425 /* interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 init_irqreg(btv);
1427}
1428
1429static void bttv_reinit_bt848(struct bttv *btv)
1430{
1431 unsigned long flags;
1432
1433 if (bttv_verbose)
1434 printk(KERN_INFO "bttv%d: reset, reinitialize\n",btv->c.nr);
1435 spin_lock_irqsave(&btv->s_lock,flags);
1436 btv->errors=0;
1437 bttv_set_dma(btv,0);
1438 spin_unlock_irqrestore(&btv->s_lock,flags);
1439
1440 init_bt848(btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001441 btv->pll.pll_current = -1;
Trent Piepho333408f2007-07-03 15:08:10 -03001442 set_input(btv, btv->input, btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
Mauro Carvalho Chehab04a94d32007-12-27 22:23:34 -03001445static int bttv_g_ctrl(struct file *file, void *priv,
1446 struct v4l2_control *c)
1447{
1448 struct bttv_fh *fh = priv;
1449 struct bttv *btv = fh->btv;
1450
1451 switch (c->id) {
1452 case V4L2_CID_BRIGHTNESS:
1453 c->value = btv->bright;
1454 break;
1455 case V4L2_CID_HUE:
1456 c->value = btv->hue;
1457 break;
1458 case V4L2_CID_CONTRAST:
1459 c->value = btv->contrast;
1460 break;
1461 case V4L2_CID_SATURATION:
1462 c->value = btv->saturation;
1463 break;
1464
1465 case V4L2_CID_AUDIO_MUTE:
1466 case V4L2_CID_AUDIO_VOLUME:
1467 case V4L2_CID_AUDIO_BALANCE:
1468 case V4L2_CID_AUDIO_BASS:
1469 case V4L2_CID_AUDIO_TREBLE:
1470 bttv_call_i2c_clients(btv, VIDIOC_G_CTRL, c);
1471 break;
1472
1473 case V4L2_CID_PRIVATE_CHROMA_AGC:
1474 c->value = btv->opt_chroma_agc;
1475 break;
1476 case V4L2_CID_PRIVATE_COMBFILTER:
1477 c->value = btv->opt_combfilter;
1478 break;
1479 case V4L2_CID_PRIVATE_LUMAFILTER:
1480 c->value = btv->opt_lumafilter;
1481 break;
1482 case V4L2_CID_PRIVATE_AUTOMUTE:
1483 c->value = btv->opt_automute;
1484 break;
1485 case V4L2_CID_PRIVATE_AGC_CRUSH:
1486 c->value = btv->opt_adc_crush;
1487 break;
1488 case V4L2_CID_PRIVATE_VCR_HACK:
1489 c->value = btv->opt_vcr_hack;
1490 break;
1491 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1492 c->value = btv->opt_whitecrush_upper;
1493 break;
1494 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1495 c->value = btv->opt_whitecrush_lower;
1496 break;
1497 case V4L2_CID_PRIVATE_UV_RATIO:
1498 c->value = btv->opt_uv_ratio;
1499 break;
1500 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1501 c->value = btv->opt_full_luma_range;
1502 break;
1503 case V4L2_CID_PRIVATE_CORING:
1504 c->value = btv->opt_coring;
1505 break;
1506 default:
1507 return -EINVAL;
1508 }
1509 return 0;
1510}
1511
1512static int bttv_s_ctrl(struct file *file, void *f,
1513 struct v4l2_control *c)
1514{
1515 int err;
1516 int val;
1517 struct bttv_fh *fh = f;
1518 struct bttv *btv = fh->btv;
1519
1520 err = v4l2_prio_check(&btv->prio, &fh->prio);
1521 if (0 != err)
1522 return err;
1523
1524 switch (c->id) {
1525 case V4L2_CID_BRIGHTNESS:
1526 bt848_bright(btv, c->value);
1527 break;
1528 case V4L2_CID_HUE:
1529 bt848_hue(btv, c->value);
1530 break;
1531 case V4L2_CID_CONTRAST:
1532 bt848_contrast(btv, c->value);
1533 break;
1534 case V4L2_CID_SATURATION:
1535 bt848_sat(btv, c->value);
1536 break;
1537 case V4L2_CID_AUDIO_MUTE:
1538 audio_mute(btv, c->value);
1539 /* fall through */
1540 case V4L2_CID_AUDIO_VOLUME:
1541 if (btv->volume_gpio)
1542 btv->volume_gpio(btv, c->value);
1543
1544 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1545 break;
1546 case V4L2_CID_AUDIO_BALANCE:
1547 case V4L2_CID_AUDIO_BASS:
1548 case V4L2_CID_AUDIO_TREBLE:
1549 bttv_call_i2c_clients(btv, VIDIOC_S_CTRL, c);
1550 break;
1551
1552 case V4L2_CID_PRIVATE_CHROMA_AGC:
1553 btv->opt_chroma_agc = c->value;
1554 val = btv->opt_chroma_agc ? BT848_SCLOOP_CAGC : 0;
1555 btwrite(val, BT848_E_SCLOOP);
1556 btwrite(val, BT848_O_SCLOOP);
1557 break;
1558 case V4L2_CID_PRIVATE_COMBFILTER:
1559 btv->opt_combfilter = c->value;
1560 break;
1561 case V4L2_CID_PRIVATE_LUMAFILTER:
1562 btv->opt_lumafilter = c->value;
1563 if (btv->opt_lumafilter) {
1564 btand(~BT848_CONTROL_LDEC, BT848_E_CONTROL);
1565 btand(~BT848_CONTROL_LDEC, BT848_O_CONTROL);
1566 } else {
1567 btor(BT848_CONTROL_LDEC, BT848_E_CONTROL);
1568 btor(BT848_CONTROL_LDEC, BT848_O_CONTROL);
1569 }
1570 break;
1571 case V4L2_CID_PRIVATE_AUTOMUTE:
1572 btv->opt_automute = c->value;
1573 break;
1574 case V4L2_CID_PRIVATE_AGC_CRUSH:
1575 btv->opt_adc_crush = c->value;
1576 btwrite(BT848_ADC_RESERVED |
1577 (btv->opt_adc_crush ? BT848_ADC_CRUSH : 0),
1578 BT848_ADC);
1579 break;
1580 case V4L2_CID_PRIVATE_VCR_HACK:
1581 btv->opt_vcr_hack = c->value;
1582 break;
1583 case V4L2_CID_PRIVATE_WHITECRUSH_UPPER:
1584 btv->opt_whitecrush_upper = c->value;
1585 btwrite(c->value, BT848_WC_UP);
1586 break;
1587 case V4L2_CID_PRIVATE_WHITECRUSH_LOWER:
1588 btv->opt_whitecrush_lower = c->value;
1589 btwrite(c->value, BT848_WC_DOWN);
1590 break;
1591 case V4L2_CID_PRIVATE_UV_RATIO:
1592 btv->opt_uv_ratio = c->value;
1593 bt848_sat(btv, btv->saturation);
1594 break;
1595 case V4L2_CID_PRIVATE_FULL_LUMA_RANGE:
1596 btv->opt_full_luma_range = c->value;
1597 btaor((c->value<<7), ~BT848_OFORM_RANGE, BT848_OFORM);
1598 break;
1599 case V4L2_CID_PRIVATE_CORING:
1600 btv->opt_coring = c->value;
1601 btaor((c->value<<5), ~BT848_OFORM_CORE32, BT848_OFORM);
1602 break;
1603 default:
1604 return -EINVAL;
1605 }
1606 return 0;
1607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609/* ----------------------------------------------------------------------- */
1610
1611void bttv_gpio_tracking(struct bttv *btv, char *comment)
1612{
1613 unsigned int outbits, data;
1614 outbits = btread(BT848_GPIO_OUT_EN);
1615 data = btread(BT848_GPIO_DATA);
1616 printk(KERN_DEBUG "bttv%d: gpio: en=%08x, out=%08x in=%08x [%s]\n",
1617 btv->c.nr,outbits,data & outbits, data & ~outbits, comment);
1618}
1619
1620static void bttv_field_count(struct bttv *btv)
1621{
1622 int need_count = 0;
1623
1624 if (btv->users)
1625 need_count++;
1626
1627 if (need_count) {
1628 /* start field counter */
1629 btor(BT848_INT_VSYNC,BT848_INT_MASK);
1630 } else {
1631 /* stop field counter */
1632 btand(~BT848_INT_VSYNC,BT848_INT_MASK);
1633 btv->field_count = 0;
1634 }
1635}
1636
1637static const struct bttv_format*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638format_by_fourcc(int fourcc)
1639{
1640 unsigned int i;
1641
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001642 for (i = 0; i < FORMATS; i++) {
1643 if (-1 == formats[i].fourcc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 continue;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001645 if (formats[i].fourcc == fourcc)
1646 return formats+i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
1648 return NULL;
1649}
1650
1651/* ----------------------------------------------------------------------- */
1652/* misc helpers */
1653
1654static int
1655bttv_switch_overlay(struct bttv *btv, struct bttv_fh *fh,
1656 struct bttv_buffer *new)
1657{
1658 struct bttv_buffer *old;
1659 unsigned long flags;
1660 int retval = 0;
1661
1662 dprintk("switch_overlay: enter [new=%p]\n",new);
1663 if (new)
Brandon Philips0fc06862007-11-06 20:02:36 -03001664 new->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 spin_lock_irqsave(&btv->s_lock,flags);
1666 old = btv->screen;
1667 btv->screen = new;
1668 btv->loop_irq |= 1;
1669 bttv_set_dma(btv, 0x03);
1670 spin_unlock_irqrestore(&btv->s_lock,flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (NULL != old) {
1672 dprintk("switch_overlay: old=%p state is %d\n",old,old->vb.state);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001673 bttv_dma_free(&fh->cap,btv, old);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 kfree(old);
1675 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03001676 if (NULL == new)
1677 free_btres(btv,fh,RESOURCE_OVERLAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 dprintk("switch_overlay: done\n");
1679 return retval;
1680}
1681
1682/* ----------------------------------------------------------------------- */
1683/* video4linux (1) interface */
1684
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001685static int bttv_prepare_buffer(struct videobuf_queue *q,struct bttv *btv,
1686 struct bttv_buffer *buf,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001687 const struct bttv_format *fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 unsigned int width, unsigned int height,
1689 enum v4l2_field field)
1690{
Michael Schimeke5bd0262007-01-18 16:17:39 -03001691 struct bttv_fh *fh = q->priv_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 int redo_dma_risc = 0;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001693 struct bttv_crop c;
1694 int norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 int rc;
1696
1697 /* check settings */
1698 if (NULL == fmt)
1699 return -EINVAL;
1700 if (fmt->btformat == BT848_COLOR_FMT_RAW) {
1701 width = RAW_BPL;
1702 height = RAW_LINES*2;
1703 if (width*height > buf->vb.bsize)
1704 return -EINVAL;
1705 buf->vb.size = buf->vb.bsize;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001706
1707 /* Make sure tvnorm and vbi_end remain consistent
1708 until we're done. */
1709 mutex_lock(&btv->lock);
1710
1711 norm = btv->tvnorm;
1712
1713 /* In this mode capturing always starts at defrect.top
1714 (default VDELAY), ignoring cropping parameters. */
1715 if (btv->vbi_end > bttv_tvnorms[norm].cropcap.defrect.top) {
1716 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001718 }
1719
1720 mutex_unlock(&btv->lock);
1721
1722 c.rect = bttv_tvnorms[norm].cropcap.defrect;
1723 } else {
1724 mutex_lock(&btv->lock);
1725
1726 norm = btv->tvnorm;
1727 c = btv->crop[!!fh->do_crop];
1728
1729 mutex_unlock(&btv->lock);
1730
1731 if (width < c.min_scaled_width ||
1732 width > c.max_scaled_width ||
1733 height < c.min_scaled_height)
1734 return -EINVAL;
1735
1736 switch (field) {
1737 case V4L2_FIELD_TOP:
1738 case V4L2_FIELD_BOTTOM:
1739 case V4L2_FIELD_ALTERNATE:
1740 /* btv->crop counts frame lines. Max. scale
1741 factor is 16:1 for frames, 8:1 for fields. */
1742 if (height * 2 > c.max_scaled_height)
1743 return -EINVAL;
1744 break;
1745
1746 default:
1747 if (height > c.max_scaled_height)
1748 return -EINVAL;
1749 break;
1750 }
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 buf->vb.size = (width * height * fmt->depth) >> 3;
1753 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
1754 return -EINVAL;
1755 }
1756
1757 /* alloc + fill struct bttv_buffer (if changed) */
1758 if (buf->vb.width != width || buf->vb.height != height ||
1759 buf->vb.field != field ||
Michael Schimeke5bd0262007-01-18 16:17:39 -03001760 buf->tvnorm != norm || buf->fmt != fmt ||
1761 buf->crop.top != c.rect.top ||
1762 buf->crop.left != c.rect.left ||
1763 buf->crop.width != c.rect.width ||
1764 buf->crop.height != c.rect.height) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 buf->vb.width = width;
1766 buf->vb.height = height;
1767 buf->vb.field = field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001768 buf->tvnorm = norm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 buf->fmt = fmt;
Michael Schimeke5bd0262007-01-18 16:17:39 -03001770 buf->crop = c.rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 redo_dma_risc = 1;
1772 }
1773
1774 /* alloc risc memory */
Brandon Philips0fc06862007-11-06 20:02:36 -03001775 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 redo_dma_risc = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001777 if (0 != (rc = videobuf_iolock(q,&buf->vb,&btv->fbuf)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto fail;
1779 }
1780
1781 if (redo_dma_risc)
1782 if (0 != (rc = bttv_buffer_risc(btv,buf)))
1783 goto fail;
1784
Brandon Philips0fc06862007-11-06 20:02:36 -03001785 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return 0;
1787
1788 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001789 bttv_dma_free(q,btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return rc;
1791}
1792
1793static int
1794buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
1795{
1796 struct bttv_fh *fh = q->priv_data;
1797
1798 *size = fh->fmt->depth*fh->width*fh->height >> 3;
1799 if (0 == *count)
1800 *count = gbuffers;
1801 while (*size * *count > gbuffers * gbufsize)
1802 (*count)--;
1803 return 0;
1804}
1805
1806static int
1807buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
1808 enum v4l2_field field)
1809{
1810 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1811 struct bttv_fh *fh = q->priv_data;
1812
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001813 return bttv_prepare_buffer(q,fh->btv, buf, fh->fmt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 fh->width, fh->height, field);
1815}
1816
1817static void
1818buffer_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
1819{
1820 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1821 struct bttv_fh *fh = q->priv_data;
1822 struct bttv *btv = fh->btv;
1823
Brandon Philips0fc06862007-11-06 20:02:36 -03001824 buf->vb.state = VIDEOBUF_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 list_add_tail(&buf->vb.queue,&btv->capture);
1826 if (!btv->curr.frame_irq) {
1827 btv->loop_irq |= 1;
1828 bttv_set_dma(btv, 0x03);
1829 }
1830}
1831
1832static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
1833{
1834 struct bttv_buffer *buf = container_of(vb,struct bttv_buffer,vb);
1835 struct bttv_fh *fh = q->priv_data;
1836
Michael Schimekfeaba7a2007-01-26 08:30:05 -03001837 bttv_dma_free(q,fh->btv,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
1840static struct videobuf_queue_ops bttv_video_qops = {
1841 .buf_setup = buffer_setup,
1842 .buf_prepare = buffer_prepare,
1843 .buf_queue = buffer_queue,
1844 .buf_release = buffer_release,
1845};
1846
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001847static int bttv_s_std(struct file *file, void *priv, v4l2_std_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001849 struct bttv_fh *fh = priv;
1850 struct bttv *btv = fh->btv;
1851 unsigned int i;
1852 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001854 err = v4l2_prio_check(&btv->prio, &fh->prio);
1855 if (0 != err)
1856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001858 for (i = 0; i < BTTV_TVNORMS; i++)
1859 if (*id & bttv_tvnorms[i].v4l2_id)
1860 break;
1861 if (i == BTTV_TVNORMS)
1862 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001864 mutex_lock(&btv->lock);
1865 set_tvnorm(btv, i);
1866 mutex_unlock(&btv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001868 return 0;
1869}
1870
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001871static int bttv_querystd(struct file *file, void *f, v4l2_std_id *id)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001872{
1873 struct bttv_fh *fh = f;
1874 struct bttv *btv = fh->btv;
1875
1876 if (btread(BT848_DSTATUS) & BT848_DSTATUS_NUML)
1877 *id = V4L2_STD_625_50;
1878 else
1879 *id = V4L2_STD_525_60;
1880 return 0;
1881}
1882
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001883static int bttv_enum_input(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001884 struct v4l2_input *i)
1885{
1886 struct bttv_fh *fh = priv;
1887 struct bttv *btv = fh->btv;
1888 unsigned int n;
1889
1890 n = i->index;
1891
1892 if (n >= bttv_tvcards[btv->c.type].video_inputs)
1893 return -EINVAL;
1894
1895 memset(i, 0, sizeof(*i));
1896
1897 i->index = n;
1898 i->type = V4L2_INPUT_TYPE_CAMERA;
1899 i->audioset = 1;
1900
1901 if (i->index == bttv_tvcards[btv->c.type].tuner) {
1902 sprintf(i->name, "Television");
1903 i->type = V4L2_INPUT_TYPE_TUNER;
1904 i->tuner = 0;
1905 } else if (i->index == btv->svhs) {
1906 sprintf(i->name, "S-Video");
1907 } else {
1908 sprintf(i->name, "Composite%d", i->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
1910
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001911 if (i->index == btv->input) {
1912 __u32 dstatus = btread(BT848_DSTATUS);
1913 if (0 == (dstatus & BT848_DSTATUS_PRES))
1914 i->status |= V4L2_IN_ST_NO_SIGNAL;
1915 if (0 == (dstatus & BT848_DSTATUS_HLOC))
1916 i->status |= V4L2_IN_ST_NO_H_LOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001919 for (n = 0; n < BTTV_TVNORMS; n++)
1920 i->std |= bttv_tvnorms[n].v4l2_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001922 return 0;
1923}
Nickolay V. Shmyrev4b9b9362006-08-25 16:53:04 -03001924
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001925static int bttv_g_input(struct file *file, void *priv, unsigned int *i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001926{
1927 struct bttv_fh *fh = priv;
1928 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001930 *i = btv->input;
1931 return 0;
1932}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001934static int bttv_s_input(struct file *file, void *priv, unsigned int i)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001935{
1936 struct bttv_fh *fh = priv;
1937 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001939 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001941 err = v4l2_prio_check(&btv->prio, &fh->prio);
1942 if (0 != err)
1943 return err;
1944
1945 if (i > bttv_tvcards[btv->c.type].video_inputs)
1946 return -EINVAL;
1947
1948 mutex_lock(&btv->lock);
1949 set_input(btv, i, btv->tvnorm);
1950 mutex_unlock(&btv->lock);
1951 return 0;
1952}
1953
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001954static int bttv_s_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001955 struct v4l2_tuner *t)
1956{
1957 struct bttv_fh *fh = priv;
1958 struct bttv *btv = fh->btv;
1959 int err;
1960
1961 err = v4l2_prio_check(&btv->prio, &fh->prio);
1962 if (0 != err)
1963 return err;
1964
1965 if (UNSET == bttv_tvcards[btv->c.type].tuner)
1966 return -EINVAL;
1967
1968 if (0 != t->index)
1969 return -EINVAL;
1970
1971 mutex_lock(&btv->lock);
1972 bttv_call_i2c_clients(btv, VIDIOC_S_TUNER, t);
1973
1974 if (btv->audio_mode_gpio)
1975 btv->audio_mode_gpio(btv, t, 1);
1976
1977 mutex_unlock(&btv->lock);
1978
1979 return 0;
1980}
1981
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001982static int bttv_g_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001983 struct v4l2_frequency *f)
1984{
1985 struct bttv_fh *fh = priv;
1986 struct bttv *btv = fh->btv;
1987 int err;
1988
1989 err = v4l2_prio_check(&btv->prio, &fh->prio);
1990 if (0 != err)
1991 return err;
1992
Robert Fitzsimons1b069012008-04-01 11:41:54 -03001993 f->type = btv->radio_user ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03001994 f->frequency = btv->freq;
1995
1996 return 0;
1997}
1998
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03001999static int bttv_s_frequency(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002000 struct v4l2_frequency *f)
2001{
2002 struct bttv_fh *fh = priv;
2003 struct bttv *btv = fh->btv;
2004 int err;
2005
2006 err = v4l2_prio_check(&btv->prio, &fh->prio);
2007 if (0 != err)
2008 return err;
2009
2010 if (unlikely(f->tuner != 0))
2011 return -EINVAL;
Robert Fitzsimons1b069012008-04-01 11:41:54 -03002012 if (unlikely(f->type != (btv->radio_user
2013 ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV)))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002014 return -EINVAL;
2015 mutex_lock(&btv->lock);
2016 btv->freq = f->frequency;
2017 bttv_call_i2c_clients(btv, VIDIOC_S_FREQUENCY, f);
2018 if (btv->has_matchbox && btv->radio_user)
2019 tea5757_set_freq(btv, btv->freq);
2020 mutex_unlock(&btv->lock);
2021 return 0;
2022}
2023
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002024static int bttv_log_status(struct file *file, void *f)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002025{
2026 struct bttv_fh *fh = f;
2027 struct bttv *btv = fh->btv;
2028
2029 printk(KERN_INFO "bttv%d: ======== START STATUS CARD #%d ========\n",
2030 btv->c.nr, btv->c.nr);
2031 bttv_call_i2c_clients(btv, VIDIOC_LOG_STATUS, NULL);
2032 printk(KERN_INFO "bttv%d: ======== END STATUS CARD #%d ========\n",
2033 btv->c.nr, btv->c.nr);
2034 return 0;
2035}
2036
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002037#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002038static int bttv_g_register(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002039 struct v4l2_register *reg)
2040{
2041 struct bttv_fh *fh = f;
2042 struct bttv *btv = fh->btv;
2043
2044 if (!capable(CAP_SYS_ADMIN))
2045 return -EPERM;
2046
2047 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
2048 return -EINVAL;
2049
2050 /* bt848 has a 12-bit register space */
2051 reg->reg &= 0xfff;
2052 reg->val = btread(reg->reg);
2053
2054 return 0;
2055}
2056
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002057static int bttv_s_register(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002058 struct v4l2_register *reg)
2059{
2060 struct bttv_fh *fh = f;
2061 struct bttv *btv = fh->btv;
2062
2063 if (!capable(CAP_SYS_ADMIN))
2064 return -EPERM;
2065
2066 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
2067 return -EINVAL;
2068
2069 /* bt848 has a 12-bit register space */
2070 reg->reg &= 0xfff;
2071 btwrite(reg->val, reg->reg);
2072
2073 return 0;
2074}
2075#endif
2076
Michael Schimeke5bd0262007-01-18 16:17:39 -03002077/* Given cropping boundaries b and the scaled width and height of a
2078 single field or frame, which must not exceed hardware limits, this
2079 function adjusts the cropping parameters c. */
2080static void
2081bttv_crop_adjust (struct bttv_crop * c,
2082 const struct v4l2_rect * b,
2083 __s32 width,
2084 __s32 height,
2085 enum v4l2_field field)
2086{
2087 __s32 frame_height = height << !V4L2_FIELD_HAS_BOTH(field);
2088 __s32 max_left;
2089 __s32 max_top;
2090
2091 if (width < c->min_scaled_width) {
2092 /* Max. hor. scale factor 16:1. */
2093 c->rect.width = width * 16;
2094 } else if (width > c->max_scaled_width) {
2095 /* Min. hor. scale factor 1:1. */
2096 c->rect.width = width;
2097
2098 max_left = b->left + b->width - width;
2099 max_left = min(max_left, (__s32) MAX_HDELAY);
2100 if (c->rect.left > max_left)
2101 c->rect.left = max_left;
2102 }
2103
2104 if (height < c->min_scaled_height) {
2105 /* Max. vert. scale factor 16:1, single fields 8:1. */
2106 c->rect.height = height * 16;
2107 } else if (frame_height > c->max_scaled_height) {
2108 /* Min. vert. scale factor 1:1.
2109 Top and height count field lines times two. */
2110 c->rect.height = (frame_height + 1) & ~1;
2111
2112 max_top = b->top + b->height - c->rect.height;
2113 if (c->rect.top > max_top)
2114 c->rect.top = max_top;
2115 }
2116
2117 bttv_crop_calc_limits(c);
2118}
2119
2120/* Returns an error if scaling to a frame or single field with the given
2121 width and height is not possible with the current cropping parameters
2122 and width aligned according to width_mask. If adjust_size is TRUE the
2123 function may adjust the width and/or height instead, rounding width
2124 to (width + width_bias) & width_mask. If adjust_crop is TRUE it may
2125 also adjust the current cropping parameters to get closer to the
2126 desired image size. */
2127static int
2128limit_scaled_size (struct bttv_fh * fh,
2129 __s32 * width,
2130 __s32 * height,
2131 enum v4l2_field field,
2132 unsigned int width_mask,
2133 unsigned int width_bias,
2134 int adjust_size,
2135 int adjust_crop)
2136{
2137 struct bttv *btv = fh->btv;
2138 const struct v4l2_rect *b;
2139 struct bttv_crop *c;
2140 __s32 min_width;
2141 __s32 min_height;
2142 __s32 max_width;
2143 __s32 max_height;
2144 int rc;
2145
2146 BUG_ON((int) width_mask >= 0 ||
2147 width_bias >= (unsigned int) -width_mask);
2148
2149 /* Make sure tvnorm, vbi_end and the current cropping parameters
2150 remain consistent until we're done. */
2151 mutex_lock(&btv->lock);
2152
2153 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
2154
2155 /* Do crop - use current, don't - use default parameters. */
2156 c = &btv->crop[!!fh->do_crop];
2157
2158 if (fh->do_crop
2159 && adjust_size
2160 && adjust_crop
2161 && !locked_btres(btv, VIDEO_RESOURCES)) {
2162 min_width = 48;
2163 min_height = 32;
2164
2165 /* We cannot scale up. When the scaled image is larger
2166 than crop.rect we adjust the crop.rect as required
2167 by the V4L2 spec, hence cropcap.bounds are our limit. */
2168 max_width = min(b->width, (__s32) MAX_HACTIVE);
2169 max_height = b->height;
2170
2171 /* We cannot capture the same line as video and VBI data.
2172 Note btv->vbi_end is really a minimum, see
2173 bttv_vbi_try_fmt(). */
2174 if (btv->vbi_end > b->top) {
2175 max_height -= btv->vbi_end - b->top;
2176 rc = -EBUSY;
2177 if (min_height > max_height)
2178 goto fail;
2179 }
2180 } else {
2181 rc = -EBUSY;
2182 if (btv->vbi_end > c->rect.top)
2183 goto fail;
2184
2185 min_width = c->min_scaled_width;
2186 min_height = c->min_scaled_height;
2187 max_width = c->max_scaled_width;
2188 max_height = c->max_scaled_height;
2189
2190 adjust_crop = 0;
2191 }
2192
2193 min_width = (min_width - width_mask - 1) & width_mask;
2194 max_width = max_width & width_mask;
2195
2196 /* Max. scale factor is 16:1 for frames, 8:1 for fields. */
2197 min_height = min_height;
2198 /* Min. scale factor is 1:1. */
2199 max_height >>= !V4L2_FIELD_HAS_BOTH(field);
2200
2201 if (adjust_size) {
2202 *width = clamp(*width, min_width, max_width);
2203 *height = clamp(*height, min_height, max_height);
2204
2205 /* Round after clamping to avoid overflow. */
2206 *width = (*width + width_bias) & width_mask;
2207
2208 if (adjust_crop) {
2209 bttv_crop_adjust(c, b, *width, *height, field);
2210
2211 if (btv->vbi_end > c->rect.top) {
2212 /* Move the crop window out of the way. */
2213 c->rect.top = btv->vbi_end;
2214 }
2215 }
2216 } else {
2217 rc = -EINVAL;
2218 if (*width < min_width ||
2219 *height < min_height ||
2220 *width > max_width ||
2221 *height > max_height ||
2222 0 != (*width & ~width_mask))
2223 goto fail;
2224 }
2225
2226 rc = 0; /* success */
2227
2228 fail:
2229 mutex_unlock(&btv->lock);
2230
2231 return rc;
2232}
2233
2234/* Returns an error if the given overlay window dimensions are not
2235 possible with the current cropping parameters. If adjust_size is
2236 TRUE the function may adjust the window width and/or height
2237 instead, however it always rounds the horizontal position and
2238 width as btcx_align() does. If adjust_crop is TRUE the function
2239 may also adjust the current cropping parameters to get closer
2240 to the desired window size. */
2241static int
2242verify_window (struct bttv_fh * fh,
2243 struct v4l2_window * win,
2244 int adjust_size,
2245 int adjust_crop)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
2247 enum v4l2_field field;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002248 unsigned int width_mask;
2249 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 if (win->w.width < 48 || win->w.height < 32)
2252 return -EINVAL;
2253 if (win->clipcount > 2048)
2254 return -EINVAL;
2255
2256 field = win->field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 if (V4L2_FIELD_ANY == field) {
Michael Schimeke5bd0262007-01-18 16:17:39 -03002259 __s32 height2;
2260
2261 height2 = fh->btv->crop[!!fh->do_crop].rect.height >> 1;
2262 field = (win->w.height > height2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 ? V4L2_FIELD_INTERLACED
2264 : V4L2_FIELD_TOP;
2265 }
2266 switch (field) {
2267 case V4L2_FIELD_TOP:
2268 case V4L2_FIELD_BOTTOM:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 case V4L2_FIELD_INTERLACED:
2270 break;
2271 default:
2272 return -EINVAL;
2273 }
2274
Michael Schimeke5bd0262007-01-18 16:17:39 -03002275 /* 4-byte alignment. */
2276 if (NULL == fh->ovfmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002278 width_mask = ~0;
2279 switch (fh->ovfmt->depth) {
2280 case 8:
2281 case 24:
2282 width_mask = ~3;
2283 break;
2284 case 16:
2285 width_mask = ~1;
2286 break;
2287 case 32:
2288 break;
2289 default:
2290 BUG();
2291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Michael Schimeke5bd0262007-01-18 16:17:39 -03002293 win->w.width -= win->w.left & ~width_mask;
2294 win->w.left = (win->w.left - width_mask - 1) & width_mask;
2295
2296 rc = limit_scaled_size(fh, &win->w.width, &win->w.height,
2297 field, width_mask,
2298 /* width_bias: round down */ 0,
2299 adjust_size, adjust_crop);
2300 if (0 != rc)
2301 return rc;
2302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 win->field = field;
2304 return 0;
2305}
2306
2307static int setup_window(struct bttv_fh *fh, struct bttv *btv,
2308 struct v4l2_window *win, int fixup)
2309{
2310 struct v4l2_clip *clips = NULL;
2311 int n,size,retval = 0;
2312
2313 if (NULL == fh->ovfmt)
2314 return -EINVAL;
2315 if (!(fh->ovfmt->flags & FORMAT_FLAGS_PACKED))
2316 return -EINVAL;
Michael Schimeke5bd0262007-01-18 16:17:39 -03002317 retval = verify_window(fh, win,
2318 /* adjust_size */ fixup,
2319 /* adjust_crop */ fixup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (0 != retval)
2321 return retval;
2322
2323 /* copy clips -- luckily v4l1 + v4l2 are binary
2324 compatible here ...*/
2325 n = win->clipcount;
2326 size = sizeof(*clips)*(n+4);
2327 clips = kmalloc(size,GFP_KERNEL);
2328 if (NULL == clips)
2329 return -ENOMEM;
2330 if (n > 0) {
2331 if (copy_from_user(clips,win->clips,sizeof(struct v4l2_clip)*n)) {
2332 kfree(clips);
2333 return -EFAULT;
2334 }
2335 }
2336 /* clip against screen */
2337 if (NULL != btv->fbuf.base)
2338 n = btcx_screen_clips(btv->fbuf.fmt.width, btv->fbuf.fmt.height,
2339 &win->w, clips, n);
2340 btcx_sort_clips(clips,n);
2341
2342 /* 4-byte alignments */
2343 switch (fh->ovfmt->depth) {
2344 case 8:
2345 case 24:
2346 btcx_align(&win->w, clips, n, 3);
2347 break;
2348 case 16:
2349 btcx_align(&win->w, clips, n, 1);
2350 break;
2351 case 32:
2352 /* no alignment fixups needed */
2353 break;
2354 default:
2355 BUG();
2356 }
2357
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002358 mutex_lock(&fh->cap.vb_lock);
2359 kfree(fh->ov.clips);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 fh->ov.clips = clips;
2361 fh->ov.nclips = n;
2362
2363 fh->ov.w = win->w;
2364 fh->ov.field = win->field;
2365 fh->ov.setup_ok = 1;
2366 btv->init.ov.w.width = win->w.width;
2367 btv->init.ov.w.height = win->w.height;
2368 btv->init.ov.field = win->field;
2369
2370 /* update overlay if needed */
2371 retval = 0;
2372 if (check_btres(fh, RESOURCE_OVERLAY)) {
2373 struct bttv_buffer *new;
2374
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002375 new = videobuf_sg_alloc(sizeof(*new));
Michael Schimeke5bd0262007-01-18 16:17:39 -03002376 new->crop = btv->crop[!!fh->do_crop].rect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2378 retval = bttv_switch_overlay(btv,fh,new);
2379 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002380 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return retval;
2382}
2383
2384/* ----------------------------------------------------------------------- */
2385
2386static struct videobuf_queue* bttv_queue(struct bttv_fh *fh)
2387{
2388 struct videobuf_queue* q = NULL;
2389
2390 switch (fh->type) {
2391 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
2392 q = &fh->cap;
2393 break;
2394 case V4L2_BUF_TYPE_VBI_CAPTURE:
2395 q = &fh->vbi;
2396 break;
2397 default:
2398 BUG();
2399 }
2400 return q;
2401}
2402
2403static int bttv_resource(struct bttv_fh *fh)
2404{
2405 int res = 0;
2406
2407 switch (fh->type) {
2408 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Michael Schimeke5bd0262007-01-18 16:17:39 -03002409 res = RESOURCE_VIDEO_STREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 break;
2411 case V4L2_BUF_TYPE_VBI_CAPTURE:
2412 res = RESOURCE_VBI;
2413 break;
2414 default:
2415 BUG();
2416 }
2417 return res;
2418}
2419
2420static int bttv_switch_type(struct bttv_fh *fh, enum v4l2_buf_type type)
2421{
2422 struct videobuf_queue *q = bttv_queue(fh);
2423 int res = bttv_resource(fh);
2424
2425 if (check_btres(fh,res))
2426 return -EBUSY;
2427 if (videobuf_queue_is_busy(q))
2428 return -EBUSY;
2429 fh->type = type;
2430 return 0;
2431}
2432
Michael H. Schimekc87c9482005-12-01 00:51:33 -08002433static void
2434pix_format_set_size (struct v4l2_pix_format * f,
2435 const struct bttv_format * fmt,
2436 unsigned int width,
2437 unsigned int height)
2438{
2439 f->width = width;
2440 f->height = height;
2441
2442 if (fmt->flags & FORMAT_FLAGS_PLANAR) {
2443 f->bytesperline = width; /* Y plane */
2444 f->sizeimage = (width * height * fmt->depth) >> 3;
2445 } else {
2446 f->bytesperline = (width * fmt->depth) >> 3;
2447 f->sizeimage = height * f->bytesperline;
2448 }
2449}
2450
Hans Verkuil78b526a2008-05-28 12:16:41 -03002451static int bttv_g_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002452 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002454 struct bttv_fh *fh = priv;
2455
2456 pix_format_set_size(&f->fmt.pix, fh->fmt,
2457 fh->width, fh->height);
2458 f->fmt.pix.field = fh->cap.field;
2459 f->fmt.pix.pixelformat = fh->fmt->fourcc;
2460
2461 return 0;
2462}
2463
Hans Verkuil78b526a2008-05-28 12:16:41 -03002464static int bttv_g_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002465 struct v4l2_format *f)
2466{
2467 struct bttv_fh *fh = priv;
2468
2469 f->fmt.win.w = fh->ov.w;
2470 f->fmt.win.field = fh->ov.field;
2471
2472 return 0;
2473}
2474
Hans Verkuil78b526a2008-05-28 12:16:41 -03002475static int bttv_try_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002476 struct v4l2_format *f)
2477{
2478 const struct bttv_format *fmt;
2479 struct bttv_fh *fh = priv;
2480 struct bttv *btv = fh->btv;
2481 enum v4l2_field field;
2482 __s32 width, height;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002483 int rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002484
2485 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
2486 if (NULL == fmt)
2487 return -EINVAL;
2488
2489 field = f->fmt.pix.field;
2490
2491 if (V4L2_FIELD_ANY == field) {
2492 __s32 height2;
2493
2494 height2 = btv->crop[!!fh->do_crop].rect.height >> 1;
2495 field = (f->fmt.pix.height > height2)
2496 ? V4L2_FIELD_INTERLACED
2497 : V4L2_FIELD_BOTTOM;
2498 }
2499
2500 if (V4L2_FIELD_SEQ_BT == field)
2501 field = V4L2_FIELD_SEQ_TB;
2502
2503 switch (field) {
2504 case V4L2_FIELD_TOP:
2505 case V4L2_FIELD_BOTTOM:
2506 case V4L2_FIELD_ALTERNATE:
2507 case V4L2_FIELD_INTERLACED:
2508 break;
2509 case V4L2_FIELD_SEQ_TB:
2510 if (fmt->flags & FORMAT_FLAGS_PLANAR)
2511 return -EINVAL;
2512 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 default:
2514 return -EINVAL;
2515 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002516
2517 width = f->fmt.pix.width;
2518 height = f->fmt.pix.height;
2519
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002520 rc = limit_scaled_size(fh, &width, &height, field,
2521 /* width_mask: 4 pixels */ ~3,
2522 /* width_bias: nearest */ 2,
2523 /* adjust_size */ 1,
2524 /* adjust_crop */ 0);
2525 if (0 != rc)
2526 return rc;
2527
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002528 /* update data for the application */
2529 f->fmt.pix.field = field;
2530 pix_format_set_size(&f->fmt.pix, fmt, width, height);
2531
2532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533}
2534
Hans Verkuil78b526a2008-05-28 12:16:41 -03002535static int bttv_try_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002536 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002538 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002540 return verify_window(fh, &f->fmt.win,
2541 /* adjust_size */ 1,
2542 /* adjust_crop */ 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543}
2544
Hans Verkuil78b526a2008-05-28 12:16:41 -03002545static int bttv_s_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002546 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
2548 int retval;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002549 const struct bttv_format *fmt;
2550 struct bttv_fh *fh = priv;
2551 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002552 __s32 width, height;
2553 enum v4l2_field field;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002555 retval = bttv_switch_type(fh, f->type);
2556 if (0 != retval)
2557 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Hans Verkuil78b526a2008-05-28 12:16:41 -03002559 retval = bttv_try_fmt_vid_cap(file, priv, f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002560 if (0 != retval)
2561 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002563 width = f->fmt.pix.width;
2564 height = f->fmt.pix.height;
2565 field = f->fmt.pix.field;
2566
2567 retval = limit_scaled_size(fh, &width, &height, f->fmt.pix.field,
2568 /* width_mask: 4 pixels */ ~3,
2569 /* width_bias: nearest */ 2,
2570 /* adjust_size */ 1,
2571 /* adjust_crop */ 1);
2572 if (0 != retval)
2573 return retval;
2574
2575 f->fmt.pix.field = field;
2576
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002577 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002579 /* update our state informations */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002580 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002581 fh->fmt = fmt;
2582 fh->cap.field = f->fmt.pix.field;
2583 fh->cap.last = V4L2_FIELD_NONE;
2584 fh->width = f->fmt.pix.width;
2585 fh->height = f->fmt.pix.height;
2586 btv->init.fmt = fmt;
2587 btv->init.width = f->fmt.pix.width;
2588 btv->init.height = f->fmt.pix.height;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002589 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002590
2591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
Hans Verkuil78b526a2008-05-28 12:16:41 -03002594static int bttv_s_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002595 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002597 struct bttv_fh *fh = priv;
2598 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002600 if (no_overlay > 0) {
2601 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002602 return -EINVAL;
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002603 }
Michael Krufky5e453dc2006-01-09 15:32:31 -02002604
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002605 return setup_window(fh, btv, &f->fmt.win, 1);
2606}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002608#ifdef CONFIG_VIDEO_V4L1_COMPAT
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002609static int vidiocgmbuf(struct file *file, void *priv, struct video_mbuf *mbuf)
2610{
2611 int retval;
2612 unsigned int i;
2613 struct bttv_fh *fh = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002615 mutex_lock(&fh->cap.vb_lock);
Arjan van de Ven81b2dbc2008-05-20 09:53:52 -07002616 retval = __videobuf_mmap_setup(&fh->cap, gbuffers, gbufsize,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002617 V4L2_MEMORY_MMAP);
2618 if (retval < 0) {
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002619 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002620 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002622
2623 gbuffers = retval;
2624 memset(mbuf, 0, sizeof(*mbuf));
2625 mbuf->frames = gbuffers;
2626 mbuf->size = gbuffers * gbufsize;
2627
2628 for (i = 0; i < gbuffers; i++)
2629 mbuf->offsets[i] = i * gbufsize;
2630
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002631 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002632 return 0;
2633}
Nickolay V. Shmyreve84619b2007-10-26 11:01:08 -03002634#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002636static int bttv_querycap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002637 struct v4l2_capability *cap)
2638{
2639 struct bttv_fh *fh = priv;
2640 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002642 if (0 == v4l2)
2643 return -EINVAL;
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07002644
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002645 strlcpy(cap->driver, "bttv", sizeof(cap->driver));
2646 strlcpy(cap->card, btv->video_dev->name, sizeof(cap->card));
2647 snprintf(cap->bus_info, sizeof(cap->bus_info),
2648 "PCI:%s", pci_name(btv->c.pci));
2649 cap->version = BTTV_VERSION_CODE;
2650 cap->capabilities =
2651 V4L2_CAP_VIDEO_CAPTURE |
2652 V4L2_CAP_VBI_CAPTURE |
2653 V4L2_CAP_READWRITE |
2654 V4L2_CAP_STREAMING;
2655 if (no_overlay <= 0)
2656 cap->capabilities |= V4L2_CAP_VIDEO_OVERLAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002658 if (bttv_tvcards[btv->c.type].tuner != UNSET &&
2659 bttv_tvcards[btv->c.type].tuner != TUNER_ABSENT)
2660 cap->capabilities |= V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 return 0;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002662}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Hans Verkuil78b526a2008-05-28 12:16:41 -03002664static int bttv_enum_fmt_vbi_cap(struct file *file, void *priv,
Mauro Carvalho Chehab04a94d32007-12-27 22:23:34 -03002665 struct v4l2_fmtdesc *f)
2666{
2667 if (0 != f->index)
2668 return -EINVAL;
2669
2670 f->pixelformat = V4L2_PIX_FMT_GREY;
2671 strcpy(f->description, "vbi data");
2672
2673 return 0;
2674}
2675
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002676static int bttv_enum_fmt_cap_ovr(struct v4l2_fmtdesc *f)
2677{
2678 int index = -1, i;
2679
2680 for (i = 0; i < FORMATS; i++) {
2681 if (formats[i].fourcc != -1)
2682 index++;
2683 if ((unsigned int)index == f->index)
2684 break;
2685 }
2686 if (FORMATS == i)
2687 return -EINVAL;
2688
2689 f->pixelformat = formats[i].fourcc;
2690 strlcpy(f->description, formats[i].name, sizeof(f->description));
2691
2692 return i;
2693}
2694
Hans Verkuil78b526a2008-05-28 12:16:41 -03002695static int bttv_enum_fmt_vid_cap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002696 struct v4l2_fmtdesc *f)
2697{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002698 int rc = bttv_enum_fmt_cap_ovr(f);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002699
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002700 if (rc < 0)
2701 return rc;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002702
2703 return 0;
2704}
2705
Hans Verkuil78b526a2008-05-28 12:16:41 -03002706static int bttv_enum_fmt_vid_overlay(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002707 struct v4l2_fmtdesc *f)
2708{
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002709 int rc;
2710
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002711 if (no_overlay > 0) {
2712 printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
2713 return -EINVAL;
2714 }
2715
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002716 rc = bttv_enum_fmt_cap_ovr(f);
2717
2718 if (rc < 0)
2719 return rc;
2720
2721 if (!(formats[rc].flags & FORMAT_FLAGS_PACKED))
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002722 return -EINVAL;
2723
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002724 return 0;
2725}
2726
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002727static int bttv_g_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002728 struct v4l2_framebuffer *fb)
2729{
2730 struct bttv_fh *fh = f;
2731 struct bttv *btv = fh->btv;
2732
2733 *fb = btv->fbuf;
2734 fb->capability = V4L2_FBUF_CAP_LIST_CLIPPING;
2735 if (fh->ovfmt)
2736 fb->fmt.pixelformat = fh->ovfmt->fourcc;
2737 return 0;
2738}
2739
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002740static int bttv_overlay(struct file *file, void *f, unsigned int on)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002741{
2742 struct bttv_fh *fh = f;
2743 struct bttv *btv = fh->btv;
2744 struct bttv_buffer *new;
2745 int retval;
2746
2747 if (on) {
2748 /* verify args */
2749 if (NULL == btv->fbuf.base)
2750 return -EINVAL;
2751 if (!fh->ov.setup_ok) {
2752 dprintk("bttv%d: overlay: !setup_ok\n", btv->c.nr);
2753 return -EINVAL;
2754 }
2755 }
2756
2757 if (!check_alloc_btres(btv, fh, RESOURCE_OVERLAY))
2758 return -EBUSY;
2759
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002760 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002761 if (on) {
2762 fh->ov.tvnorm = btv->tvnorm;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002763 new = videobuf_sg_alloc(sizeof(*new));
Robert Fitzsimons7c018802008-02-13 16:38:11 -03002764 new->crop = btv->crop[!!fh->do_crop].rect;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002765 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2766 } else {
2767 new = NULL;
2768 }
2769
2770 /* switch over */
2771 retval = bttv_switch_overlay(btv, fh, new);
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002772 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return retval;
2774}
2775
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002776static int bttv_s_fbuf(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002777 struct v4l2_framebuffer *fb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002779 struct bttv_fh *fh = f;
2780 struct bttv *btv = fh->btv;
2781 const struct bttv_format *fmt;
2782 int retval;
2783
2784 if (!capable(CAP_SYS_ADMIN) &&
2785 !capable(CAP_SYS_RAWIO))
2786 return -EPERM;
2787
2788 /* check args */
2789 fmt = format_by_fourcc(fb->fmt.pixelformat);
2790 if (NULL == fmt)
2791 return -EINVAL;
2792 if (0 == (fmt->flags & FORMAT_FLAGS_PACKED))
2793 return -EINVAL;
2794
2795 retval = -EINVAL;
2796 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2797 __s32 width = fb->fmt.width;
2798 __s32 height = fb->fmt.height;
2799
2800 retval = limit_scaled_size(fh, &width, &height,
2801 V4L2_FIELD_INTERLACED,
2802 /* width_mask */ ~3,
2803 /* width_bias */ 2,
2804 /* adjust_size */ 0,
2805 /* adjust_crop */ 0);
2806 if (0 != retval)
2807 return retval;
2808 }
2809
2810 /* ok, accept it */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002811 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002812 btv->fbuf.base = fb->base;
2813 btv->fbuf.fmt.width = fb->fmt.width;
2814 btv->fbuf.fmt.height = fb->fmt.height;
2815 if (0 != fb->fmt.bytesperline)
2816 btv->fbuf.fmt.bytesperline = fb->fmt.bytesperline;
2817 else
2818 btv->fbuf.fmt.bytesperline = btv->fbuf.fmt.width*fmt->depth/8;
2819
2820 retval = 0;
2821 fh->ovfmt = fmt;
2822 btv->init.ovfmt = fmt;
2823 if (fb->flags & V4L2_FBUF_FLAG_OVERLAY) {
2824 fh->ov.w.left = 0;
2825 fh->ov.w.top = 0;
2826 fh->ov.w.width = fb->fmt.width;
2827 fh->ov.w.height = fb->fmt.height;
2828 btv->init.ov.w.width = fb->fmt.width;
2829 btv->init.ov.w.height = fb->fmt.height;
2830 kfree(fh->ov.clips);
2831 fh->ov.clips = NULL;
2832 fh->ov.nclips = 0;
2833
2834 if (check_btres(fh, RESOURCE_OVERLAY)) {
2835 struct bttv_buffer *new;
2836
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03002837 new = videobuf_sg_alloc(sizeof(*new));
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002838 new->crop = btv->crop[!!fh->do_crop].rect;
2839 bttv_overlay_risc(btv, &fh->ov, fh->ovfmt, new);
2840 retval = bttv_switch_overlay(btv, fh, new);
2841 }
2842 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03002843 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002844 return retval;
2845}
2846
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002847static int bttv_reqbufs(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002848 struct v4l2_requestbuffers *p)
2849{
2850 struct bttv_fh *fh = priv;
2851 return videobuf_reqbufs(bttv_queue(fh), p);
2852}
2853
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002854static int bttv_querybuf(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002855 struct v4l2_buffer *b)
2856{
2857 struct bttv_fh *fh = priv;
2858 return videobuf_querybuf(bttv_queue(fh), b);
2859}
2860
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002861static int bttv_qbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002862{
2863 struct bttv_fh *fh = priv;
2864 struct bttv *btv = fh->btv;
2865 int res = bttv_resource(fh);
2866
2867 if (!check_alloc_btres(btv, fh, res))
2868 return -EBUSY;
2869
2870 return videobuf_qbuf(bttv_queue(fh), b);
2871}
2872
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002873static int bttv_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002874{
2875 struct bttv_fh *fh = priv;
2876 return videobuf_dqbuf(bttv_queue(fh), b,
2877 file->f_flags & O_NONBLOCK);
2878}
2879
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002880static int bttv_streamon(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002881 enum v4l2_buf_type type)
2882{
2883 struct bttv_fh *fh = priv;
2884 struct bttv *btv = fh->btv;
2885 int res = bttv_resource(fh);
2886
2887 if (!check_alloc_btres(btv, fh, res))
2888 return -EBUSY;
2889 return videobuf_streamon(bttv_queue(fh));
2890}
2891
2892
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002893static int bttv_streamoff(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002894 enum v4l2_buf_type type)
2895{
2896 struct bttv_fh *fh = priv;
2897 struct bttv *btv = fh->btv;
2898 int retval;
2899 int res = bttv_resource(fh);
2900
2901
2902 retval = videobuf_streamoff(bttv_queue(fh));
2903 if (retval < 0)
2904 return retval;
2905 free_btres(btv, fh, res);
2906 return 0;
2907}
2908
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002909static int bttv_queryctrl(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002910 struct v4l2_queryctrl *c)
2911{
2912 struct bttv_fh *fh = priv;
2913 struct bttv *btv = fh->btv;
2914 const struct v4l2_queryctrl *ctrl;
2915
2916 if ((c->id < V4L2_CID_BASE ||
2917 c->id >= V4L2_CID_LASTP1) &&
2918 (c->id < V4L2_CID_PRIVATE_BASE ||
2919 c->id >= V4L2_CID_PRIVATE_LASTP1))
2920 return -EINVAL;
2921
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002922 if (!btv->volume_gpio && (c->id == V4L2_CID_AUDIO_VOLUME))
2923 *c = no_ctl;
2924 else {
2925 ctrl = ctrl_by_id(c->id);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002926
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03002927 *c = (NULL != ctrl) ? *ctrl : no_ctl;
2928 }
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002929
2930 return 0;
2931}
2932
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002933static int bttv_g_parm(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002934 struct v4l2_streamparm *parm)
2935{
2936 struct bttv_fh *fh = f;
2937 struct bttv *btv = fh->btv;
2938 struct v4l2_standard s;
2939
2940 if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2941 return -EINVAL;
2942 v4l2_video_std_construct(&s, bttv_tvnorms[btv->tvnorm].v4l2_id,
2943 bttv_tvnorms[btv->tvnorm].name);
2944 parm->parm.capture.timeperframe = s.frameperiod;
2945 return 0;
2946}
2947
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002948static int bttv_g_tuner(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002949 struct v4l2_tuner *t)
2950{
2951 struct bttv_fh *fh = priv;
2952 struct bttv *btv = fh->btv;
2953
2954 if (UNSET == bttv_tvcards[btv->c.type].tuner)
2955 return -EINVAL;
2956 if (0 != t->index)
2957 return -EINVAL;
2958
2959 mutex_lock(&btv->lock);
2960 memset(t, 0, sizeof(*t));
2961 t->rxsubchans = V4L2_TUNER_SUB_MONO;
2962 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
2963 strcpy(t->name, "Television");
2964 t->capability = V4L2_TUNER_CAP_NORM;
2965 t->type = V4L2_TUNER_ANALOG_TV;
2966 if (btread(BT848_DSTATUS)&BT848_DSTATUS_HLOC)
2967 t->signal = 0xffff;
2968
2969 if (btv->audio_mode_gpio)
2970 btv->audio_mode_gpio(btv, t, 0);
2971
2972 mutex_unlock(&btv->lock);
2973 return 0;
2974}
2975
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002976static int bttv_g_priority(struct file *file, void *f, enum v4l2_priority *p)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002977{
2978 struct bttv_fh *fh = f;
2979 struct bttv *btv = fh->btv;
2980
2981 *p = v4l2_prio_max(&btv->prio);
2982
2983 return 0;
2984}
2985
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002986static int bttv_s_priority(struct file *file, void *f,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002987 enum v4l2_priority prio)
2988{
2989 struct bttv_fh *fh = f;
2990 struct bttv *btv = fh->btv;
2991
2992 return v4l2_prio_change(&btv->prio, &fh->prio, prio);
2993}
2994
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03002995static int bttv_cropcap(struct file *file, void *priv,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03002996 struct v4l2_cropcap *cap)
2997{
2998 struct bttv_fh *fh = priv;
2999 struct bttv *btv = fh->btv;
3000
3001 if (cap->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3002 cap->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3003 return -EINVAL;
3004
3005 *cap = bttv_tvnorms[btv->tvnorm].cropcap;
3006
3007 return 0;
3008}
3009
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003010static int bttv_g_crop(struct file *file, void *f, struct v4l2_crop *crop)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003011{
3012 struct bttv_fh *fh = f;
3013 struct bttv *btv = fh->btv;
3014
3015 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3016 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3017 return -EINVAL;
3018
3019 /* No fh->do_crop = 1; because btv->crop[1] may be
3020 inconsistent with fh->width or fh->height and apps
3021 do not expect a change here. */
3022
3023 crop->c = btv->crop[!!fh->do_crop].rect;
3024
3025 return 0;
3026}
3027
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003028static int bttv_s_crop(struct file *file, void *f, struct v4l2_crop *crop)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003029{
3030 struct bttv_fh *fh = f;
3031 struct bttv *btv = fh->btv;
3032 const struct v4l2_rect *b;
3033 int retval;
3034 struct bttv_crop c;
3035 __s32 b_left;
3036 __s32 b_top;
3037 __s32 b_right;
3038 __s32 b_bottom;
3039
3040 if (crop->type != V4L2_BUF_TYPE_VIDEO_CAPTURE &&
3041 crop->type != V4L2_BUF_TYPE_VIDEO_OVERLAY)
3042 return -EINVAL;
3043
3044 retval = v4l2_prio_check(&btv->prio, &fh->prio);
3045 if (0 != retval)
3046 return retval;
3047
3048 /* Make sure tvnorm, vbi_end and the current cropping
3049 parameters remain consistent until we're done. Note
3050 read() may change vbi_end in check_alloc_btres(). */
3051 mutex_lock(&btv->lock);
3052
3053 retval = -EBUSY;
3054
3055 if (locked_btres(fh->btv, VIDEO_RESOURCES)) {
3056 mutex_unlock(&btv->lock);
3057 return retval;
3058 }
3059
3060 b = &bttv_tvnorms[btv->tvnorm].cropcap.bounds;
3061
3062 b_left = b->left;
3063 b_right = b_left + b->width;
3064 b_bottom = b->top + b->height;
3065
3066 b_top = max(b->top, btv->vbi_end);
3067 if (b_top + 32 >= b_bottom) {
3068 mutex_unlock(&btv->lock);
3069 return retval;
3070 }
3071
3072 /* Min. scaled size 48 x 32. */
3073 c.rect.left = clamp(crop->c.left, b_left, b_right - 48);
3074 c.rect.left = min(c.rect.left, (__s32) MAX_HDELAY);
3075
3076 c.rect.width = clamp(crop->c.width,
3077 48, b_right - c.rect.left);
3078
3079 c.rect.top = clamp(crop->c.top, b_top, b_bottom - 32);
3080 /* Top and height must be a multiple of two. */
3081 c.rect.top = (c.rect.top + 1) & ~1;
3082
3083 c.rect.height = clamp(crop->c.height,
3084 32, b_bottom - c.rect.top);
3085 c.rect.height = (c.rect.height + 1) & ~1;
3086
3087 bttv_crop_calc_limits(&c);
3088
3089 btv->crop[1] = c;
3090
3091 mutex_unlock(&btv->lock);
3092
3093 fh->do_crop = 1;
3094
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003095 mutex_lock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003096
3097 if (fh->width < c.min_scaled_width) {
3098 fh->width = c.min_scaled_width;
3099 btv->init.width = c.min_scaled_width;
3100 } else if (fh->width > c.max_scaled_width) {
3101 fh->width = c.max_scaled_width;
3102 btv->init.width = c.max_scaled_width;
3103 }
3104
3105 if (fh->height < c.min_scaled_height) {
3106 fh->height = c.min_scaled_height;
3107 btv->init.height = c.min_scaled_height;
3108 } else if (fh->height > c.max_scaled_height) {
3109 fh->height = c.max_scaled_height;
3110 btv->init.height = c.max_scaled_height;
3111 }
3112
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003113 mutex_unlock(&fh->cap.vb_lock);
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003114
3115 return 0;
3116}
3117
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003118static int bttv_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003119{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003120 if (unlikely(a->index))
3121 return -EINVAL;
3122
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003123 strcpy(a->name, "audio");
3124 return 0;
3125}
3126
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003127static int bttv_s_audio(struct file *file, void *priv, struct v4l2_audio *a)
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003128{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003129 if (unlikely(a->index))
3130 return -EINVAL;
3131
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133}
3134
3135static ssize_t bttv_read(struct file *file, char __user *data,
3136 size_t count, loff_t *ppos)
3137{
3138 struct bttv_fh *fh = file->private_data;
3139 int retval = 0;
3140
3141 if (fh->btv->errors)
3142 bttv_reinit_bt848(fh->btv);
3143 dprintk("bttv%d: read count=%d type=%s\n",
3144 fh->btv->c.nr,(int)count,v4l2_type_names[fh->type]);
3145
3146 switch (fh->type) {
3147 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
Michael Schimeke5bd0262007-01-18 16:17:39 -03003148 if (!check_alloc_btres(fh->btv, fh, RESOURCE_VIDEO_READ)) {
3149 /* VIDEO_READ in use by another fh,
3150 or VIDEO_STREAM by any fh. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return -EBUSY;
Michael Schimeke5bd0262007-01-18 16:17:39 -03003152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 retval = videobuf_read_one(&fh->cap, data, count, ppos,
3154 file->f_flags & O_NONBLOCK);
Michael Schimeke5bd0262007-01-18 16:17:39 -03003155 free_btres(fh->btv, fh, RESOURCE_VIDEO_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 break;
3157 case V4L2_BUF_TYPE_VBI_CAPTURE:
3158 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3159 return -EBUSY;
3160 retval = videobuf_read_stream(&fh->vbi, data, count, ppos, 1,
3161 file->f_flags & O_NONBLOCK);
3162 break;
3163 default:
3164 BUG();
3165 }
3166 return retval;
3167}
3168
3169static unsigned int bttv_poll(struct file *file, poll_table *wait)
3170{
3171 struct bttv_fh *fh = file->private_data;
3172 struct bttv_buffer *buf;
3173 enum v4l2_field field;
3174
3175 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
3176 if (!check_alloc_btres(fh->btv,fh,RESOURCE_VBI))
3177 return POLLERR;
3178 return videobuf_poll_stream(file, &fh->vbi, wait);
3179 }
3180
Michael Schimeke5bd0262007-01-18 16:17:39 -03003181 if (check_btres(fh,RESOURCE_VIDEO_STREAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 /* streaming capture */
3183 if (list_empty(&fh->cap.stream))
3184 return POLLERR;
3185 buf = list_entry(fh->cap.stream.next,struct bttv_buffer,vb.stream);
3186 } else {
3187 /* read() capture */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003188 mutex_lock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 if (NULL == fh->cap.read_buf) {
3190 /* need to capture a new frame */
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003191 if (locked_btres(fh->btv,RESOURCE_VIDEO_STREAM))
3192 goto err;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003193 fh->cap.read_buf = videobuf_sg_alloc(fh->cap.msize);
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003194 if (NULL == fh->cap.read_buf)
3195 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 fh->cap.read_buf->memory = V4L2_MEMORY_USERPTR;
3197 field = videobuf_next_field(&fh->cap);
3198 if (0 != fh->cap.ops->buf_prepare(&fh->cap,fh->cap.read_buf,field)) {
Nickolay V. Shmyrev50ab5ed2005-12-01 00:51:32 -08003199 kfree (fh->cap.read_buf);
3200 fh->cap.read_buf = NULL;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003201 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203 fh->cap.ops->buf_queue(&fh->cap,fh->cap.read_buf);
3204 fh->cap.read_off = 0;
3205 }
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003206 mutex_unlock(&fh->cap.vb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 buf = (struct bttv_buffer*)fh->cap.read_buf;
3208 }
3209
3210 poll_wait(file, &buf->vb.done, wait);
Brandon Philips0fc06862007-11-06 20:02:36 -03003211 if (buf->vb.state == VIDEOBUF_DONE ||
3212 buf->vb.state == VIDEOBUF_ERROR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 return POLLIN|POLLRDNORM;
3214 return 0;
Mauro Carvalho Chehab64f94772008-01-31 13:57:53 -03003215err:
3216 mutex_unlock(&fh->cap.vb_lock);
3217 return POLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218}
3219
3220static int bttv_open(struct inode *inode, struct file *file)
3221{
3222 int minor = iminor(inode);
3223 struct bttv *btv = NULL;
3224 struct bttv_fh *fh;
3225 enum v4l2_buf_type type = 0;
3226 unsigned int i;
3227
3228 dprintk(KERN_DEBUG "bttv: open minor=%d\n",minor);
3229
Hans Verkuild56dc612008-07-30 08:43:36 -03003230 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 for (i = 0; i < bttv_num; i++) {
3232 if (bttvs[i].video_dev &&
3233 bttvs[i].video_dev->minor == minor) {
3234 btv = &bttvs[i];
3235 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3236 break;
3237 }
3238 if (bttvs[i].vbi_dev &&
3239 bttvs[i].vbi_dev->minor == minor) {
3240 btv = &bttvs[i];
3241 type = V4L2_BUF_TYPE_VBI_CAPTURE;
3242 break;
3243 }
3244 }
Hans Verkuild56dc612008-07-30 08:43:36 -03003245 if (NULL == btv) {
3246 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
3250 dprintk(KERN_DEBUG "bttv%d: open called (type=%s)\n",
3251 btv->c.nr,v4l2_type_names[type]);
3252
3253 /* allocate per filehandle data */
3254 fh = kmalloc(sizeof(*fh),GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003255 if (NULL == fh) {
3256 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 file->private_data = fh;
3260 *fh = btv->init;
3261 fh->type = type;
3262 fh->ov.setup_ok = 0;
3263 v4l2_prio_open(&btv->prio,&fh->prio);
3264
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003265 videobuf_queue_sg_init(&fh->cap, &bttv_video_qops,
3266 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 V4L2_BUF_TYPE_VIDEO_CAPTURE,
3268 V4L2_FIELD_INTERLACED,
3269 sizeof(struct bttv_buffer),
3270 fh);
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03003271 videobuf_queue_sg_init(&fh->vbi, &bttv_vbi_qops,
3272 &btv->c.pci->dev, &btv->s_lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 V4L2_BUF_TYPE_VBI_CAPTURE,
3274 V4L2_FIELD_SEQ_TB,
3275 sizeof(struct bttv_buffer),
3276 fh);
Nickolay V. Shmyrev302f61a2007-10-26 10:53:21 -03003277 set_tvnorm(btv,btv->tvnorm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
3279 btv->users++;
Michael Schimeke5bd0262007-01-18 16:17:39 -03003280
3281 /* The V4L2 spec requires one global set of cropping parameters
3282 which only change on request. These are stored in btv->crop[1].
3283 However for compatibility with V4L apps and cropping unaware
3284 V4L2 apps we now reset the cropping parameters as seen through
3285 this fh, which is to say VIDIOC_G_CROP and scaling limit checks
3286 will use btv->crop[0], the default cropping parameters for the
3287 current video standard, and VIDIOC_S_FMT will not implicitely
3288 change the cropping parameters until VIDIOC_S_CROP has been
3289 called. */
3290 fh->do_crop = !reset_crop; /* module parameter */
3291
3292 /* Likewise there should be one global set of VBI capture
3293 parameters, but for compatibility with V4L apps and earlier
3294 driver versions each fh has its own parameters. */
3295 bttv_vbi_fmt_reset(&fh->vbi_fmt, btv->tvnorm);
3296
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 bttv_field_count(btv);
Hans Verkuild56dc612008-07-30 08:43:36 -03003298 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 return 0;
3300}
3301
3302static int bttv_release(struct inode *inode, struct file *file)
3303{
3304 struct bttv_fh *fh = file->private_data;
3305 struct bttv *btv = fh->btv;
3306
3307 /* turn off overlay */
3308 if (check_btres(fh, RESOURCE_OVERLAY))
3309 bttv_switch_overlay(btv,fh,NULL);
3310
3311 /* stop video capture */
Michael Schimeke5bd0262007-01-18 16:17:39 -03003312 if (check_btres(fh, RESOURCE_VIDEO_STREAM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 videobuf_streamoff(&fh->cap);
Michael Schimeke5bd0262007-01-18 16:17:39 -03003314 free_btres(btv,fh,RESOURCE_VIDEO_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 }
3316 if (fh->cap.read_buf) {
3317 buffer_release(&fh->cap,fh->cap.read_buf);
3318 kfree(fh->cap.read_buf);
3319 }
Michael Schimeke5bd0262007-01-18 16:17:39 -03003320 if (check_btres(fh, RESOURCE_VIDEO_READ)) {
3321 free_btres(btv, fh, RESOURCE_VIDEO_READ);
3322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
3324 /* stop vbi capture */
3325 if (check_btres(fh, RESOURCE_VBI)) {
Brandon Philips053fcb62007-11-13 20:11:26 -03003326 videobuf_stop(&fh->vbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 free_btres(btv,fh,RESOURCE_VBI);
3328 }
3329
3330 /* free stuff */
3331 videobuf_mmap_free(&fh->cap);
3332 videobuf_mmap_free(&fh->vbi);
3333 v4l2_prio_close(&btv->prio,&fh->prio);
3334 file->private_data = NULL;
3335 kfree(fh);
3336
3337 btv->users--;
3338 bttv_field_count(btv);
3339 return 0;
3340}
3341
3342static int
3343bttv_mmap(struct file *file, struct vm_area_struct *vma)
3344{
3345 struct bttv_fh *fh = file->private_data;
3346
3347 dprintk("bttv%d: mmap type=%s 0x%lx+%ld\n",
3348 fh->btv->c.nr, v4l2_type_names[fh->type],
3349 vma->vm_start, vma->vm_end - vma->vm_start);
3350 return videobuf_mmap_mapper(bttv_queue(fh),vma);
3351}
3352
Arjan van de Venfa027c22007-02-12 00:55:33 -08003353static const struct file_operations bttv_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354{
3355 .owner = THIS_MODULE,
3356 .open = bttv_open,
3357 .release = bttv_release,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003358 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02003359 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 .llseek = no_llseek,
3361 .read = bttv_read,
3362 .mmap = bttv_mmap,
3363 .poll = bttv_poll,
3364};
3365
Hans Verkuila3998102008-07-21 02:57:38 -03003366static const struct v4l2_ioctl_ops bttv_ioctl_ops = {
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003367 .vidioc_querycap = bttv_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03003368 .vidioc_enum_fmt_vid_cap = bttv_enum_fmt_vid_cap,
3369 .vidioc_g_fmt_vid_cap = bttv_g_fmt_vid_cap,
3370 .vidioc_try_fmt_vid_cap = bttv_try_fmt_vid_cap,
3371 .vidioc_s_fmt_vid_cap = bttv_s_fmt_vid_cap,
3372 .vidioc_enum_fmt_vid_overlay = bttv_enum_fmt_vid_overlay,
3373 .vidioc_g_fmt_vid_overlay = bttv_g_fmt_vid_overlay,
3374 .vidioc_try_fmt_vid_overlay = bttv_try_fmt_vid_overlay,
3375 .vidioc_s_fmt_vid_overlay = bttv_s_fmt_vid_overlay,
3376 .vidioc_enum_fmt_vbi_cap = bttv_enum_fmt_vbi_cap,
3377 .vidioc_g_fmt_vbi_cap = bttv_g_fmt_vbi_cap,
3378 .vidioc_try_fmt_vbi_cap = bttv_try_fmt_vbi_cap,
3379 .vidioc_s_fmt_vbi_cap = bttv_s_fmt_vbi_cap,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003380 .vidioc_g_audio = bttv_g_audio,
3381 .vidioc_s_audio = bttv_s_audio,
3382 .vidioc_cropcap = bttv_cropcap,
3383 .vidioc_reqbufs = bttv_reqbufs,
3384 .vidioc_querybuf = bttv_querybuf,
3385 .vidioc_qbuf = bttv_qbuf,
3386 .vidioc_dqbuf = bttv_dqbuf,
3387 .vidioc_s_std = bttv_s_std,
3388 .vidioc_enum_input = bttv_enum_input,
3389 .vidioc_g_input = bttv_g_input,
3390 .vidioc_s_input = bttv_s_input,
3391 .vidioc_queryctrl = bttv_queryctrl,
3392 .vidioc_g_ctrl = bttv_g_ctrl,
3393 .vidioc_s_ctrl = bttv_s_ctrl,
3394 .vidioc_streamon = bttv_streamon,
3395 .vidioc_streamoff = bttv_streamoff,
3396 .vidioc_g_tuner = bttv_g_tuner,
3397 .vidioc_s_tuner = bttv_s_tuner,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003398#ifdef CONFIG_VIDEO_V4L1_COMPAT
3399 .vidiocgmbuf = vidiocgmbuf,
3400#endif
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003401 .vidioc_g_crop = bttv_g_crop,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003402 .vidioc_s_crop = bttv_s_crop,
3403 .vidioc_g_fbuf = bttv_g_fbuf,
3404 .vidioc_s_fbuf = bttv_s_fbuf,
3405 .vidioc_overlay = bttv_overlay,
3406 .vidioc_g_priority = bttv_g_priority,
3407 .vidioc_s_priority = bttv_s_priority,
3408 .vidioc_g_parm = bttv_g_parm,
3409 .vidioc_g_frequency = bttv_g_frequency,
3410 .vidioc_s_frequency = bttv_s_frequency,
3411 .vidioc_log_status = bttv_log_status,
3412 .vidioc_querystd = bttv_querystd,
Zoltan Devai43846832008-01-14 13:24:38 -03003413#ifdef CONFIG_VIDEO_ADV_DEBUG
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003414 .vidioc_g_register = bttv_g_register,
3415 .vidioc_s_register = bttv_s_register,
Zoltan Devai43846832008-01-14 13:24:38 -03003416#endif
Hans Verkuila3998102008-07-21 02:57:38 -03003417};
3418
3419static struct video_device bttv_video_template = {
3420 .fops = &bttv_fops,
3421 .minor = -1,
3422 .ioctl_ops = &bttv_ioctl_ops,
3423 .tvnorms = BTTV_NORMS,
3424 .current_norm = V4L2_STD_PAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425};
3426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427/* ----------------------------------------------------------------------- */
3428/* radio interface */
3429
3430static int radio_open(struct inode *inode, struct file *file)
3431{
3432 int minor = iminor(inode);
3433 struct bttv *btv = NULL;
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003434 struct bttv_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 unsigned int i;
3436
3437 dprintk("bttv: open minor=%d\n",minor);
3438
Hans Verkuild56dc612008-07-30 08:43:36 -03003439 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 for (i = 0; i < bttv_num; i++) {
Jean Delvarec37396c2008-09-07 13:47:03 -03003441 if (bttvs[i].radio_dev && bttvs[i].radio_dev->minor == minor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 btv = &bttvs[i];
3443 break;
3444 }
3445 }
Hans Verkuild56dc612008-07-30 08:43:36 -03003446 if (NULL == btv) {
3447 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 return -ENODEV;
Hans Verkuild56dc612008-07-30 08:43:36 -03003449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 dprintk("bttv%d: open called (radio)\n",btv->c.nr);
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003452
3453 /* allocate per filehandle data */
3454 fh = kmalloc(sizeof(*fh), GFP_KERNEL);
Hans Verkuild56dc612008-07-30 08:43:36 -03003455 if (NULL == fh) {
3456 unlock_kernel();
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003457 return -ENOMEM;
Hans Verkuild56dc612008-07-30 08:43:36 -03003458 }
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003459 file->private_data = fh;
3460 *fh = btv->init;
3461 v4l2_prio_open(&btv->prio, &fh->prio);
3462
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003463 mutex_lock(&btv->lock);
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 btv->radio_user++;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003466
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03003467 bttv_call_i2c_clients(btv,AUDC_SET_RADIO,NULL);
3468 audio_input(btv,TVAUDIO_INPUT_RADIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02003470 mutex_unlock(&btv->lock);
Hans Verkuild56dc612008-07-30 08:43:36 -03003471 unlock_kernel();
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08003472 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473}
3474
3475static int radio_release(struct inode *inode, struct file *file)
3476{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003477 struct bttv_fh *fh = file->private_data;
3478 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003479 struct rds_command cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Robert Fitzsimonsb9bc07a2008-04-10 09:40:31 -03003481 file->private_data = NULL;
3482 kfree(fh);
3483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 btv->radio_user--;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003485
3486 bttv_call_i2c_clients(btv, RDS_CMD_CLOSE, &cmd);
3487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 return 0;
3489}
3490
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003491static int radio_querycap(struct file *file, void *priv,
3492 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003494 struct bttv_fh *fh = priv;
3495 struct bttv *btv = fh->btv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003497 strcpy(cap->driver, "bttv");
3498 strlcpy(cap->card, btv->radio_dev->name, sizeof(cap->card));
3499 sprintf(cap->bus_info, "PCI:%s", pci_name(btv->c.pci));
3500 cap->version = BTTV_VERSION_CODE;
3501 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 return 0;
3504}
3505
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003506static int radio_g_tuner(struct file *file, void *priv, struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507{
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003508 struct bttv_fh *fh = priv;
3509 struct bttv *btv = fh->btv;
3510
3511 if (UNSET == bttv_tvcards[btv->c.type].tuner)
3512 return -EINVAL;
3513 if (0 != t->index)
3514 return -EINVAL;
3515 mutex_lock(&btv->lock);
3516 memset(t, 0, sizeof(*t));
3517 strcpy(t->name, "Radio");
3518 t->type = V4L2_TUNER_RADIO;
3519
3520 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3521
3522 if (btv->audio_mode_gpio)
3523 btv->audio_mode_gpio(btv, t, 0);
3524
3525 mutex_unlock(&btv->lock);
3526
3527 return 0;
3528}
3529
3530static int radio_enum_input(struct file *file, void *priv,
3531 struct v4l2_input *i)
3532{
3533 if (i->index != 0)
3534 return -EINVAL;
3535
3536 strcpy(i->name, "Radio");
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003537 i->type = V4L2_INPUT_TYPE_TUNER;
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003538
3539 return 0;
3540}
3541
3542static int radio_g_audio(struct file *file, void *priv,
3543 struct v4l2_audio *a)
3544{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003545 if (unlikely(a->index))
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003546 return -EINVAL;
3547
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003548 strcpy(a->name, "Radio");
Cyrill Gorcunov1a002eb2008-04-01 17:49:13 -03003549
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003550 return 0;
3551}
3552
3553static int radio_s_tuner(struct file *file, void *priv,
3554 struct v4l2_tuner *t)
3555{
3556 struct bttv_fh *fh = priv;
3557 struct bttv *btv = fh->btv;
3558
3559 if (0 != t->index)
3560 return -EINVAL;
3561
3562 bttv_call_i2c_clients(btv, VIDIOC_G_TUNER, t);
3563 return 0;
3564}
3565
3566static int radio_s_audio(struct file *file, void *priv,
3567 struct v4l2_audio *a)
3568{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003569 if (unlikely(a->index))
3570 return -EINVAL;
3571
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003572 return 0;
3573}
3574
3575static int radio_s_input(struct file *filp, void *priv, unsigned int i)
3576{
Mauro Carvalho Chehabd69b2e42008-04-01 20:30:24 -03003577 if (unlikely(i))
3578 return -EINVAL;
3579
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003580 return 0;
3581}
3582
3583static int radio_s_std(struct file *file, void *fh, v4l2_std_id *norm)
3584{
3585 return 0;
3586}
3587
3588static int radio_queryctrl(struct file *file, void *priv,
3589 struct v4l2_queryctrl *c)
3590{
3591 const struct v4l2_queryctrl *ctrl;
3592
3593 if (c->id < V4L2_CID_BASE ||
3594 c->id >= V4L2_CID_LASTP1)
3595 return -EINVAL;
3596
3597 if (c->id == V4L2_CID_AUDIO_MUTE) {
3598 ctrl = ctrl_by_id(c->id);
3599 *c = *ctrl;
3600 } else
3601 *c = no_ctl;
3602
3603 return 0;
3604}
3605
3606static int radio_g_input(struct file *filp, void *priv, unsigned int *i)
3607{
3608 *i = 0;
3609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610}
3611
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003612static ssize_t radio_read(struct file *file, char __user *data,
3613 size_t count, loff_t *ppos)
3614{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003615 struct bttv_fh *fh = file->private_data;
3616 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003617 struct rds_command cmd;
3618 cmd.block_count = count/3;
3619 cmd.buffer = data;
3620 cmd.instance = file;
3621 cmd.result = -ENODEV;
3622
3623 bttv_call_i2c_clients(btv, RDS_CMD_READ, &cmd);
3624
3625 return cmd.result;
3626}
3627
3628static unsigned int radio_poll(struct file *file, poll_table *wait)
3629{
Robert Fitzsimons5cd39552008-04-01 11:41:54 -03003630 struct bttv_fh *fh = file->private_data;
3631 struct bttv *btv = fh->btv;
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003632 struct rds_command cmd;
3633 cmd.instance = file;
3634 cmd.event_list = wait;
3635 cmd.result = -ENODEV;
3636 bttv_call_i2c_clients(btv, RDS_CMD_POLL, &cmd);
3637
3638 return cmd.result;
3639}
3640
Arjan van de Venfa027c22007-02-12 00:55:33 -08003641static const struct file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642{
3643 .owner = THIS_MODULE,
3644 .open = radio_open,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003645 .read = radio_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 .release = radio_release,
Robert Fitzsimonsc1379182008-04-01 11:42:28 -03003647 .compat_ioctl = v4l_compat_ioctl32,
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003648 .ioctl = video_ioctl2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 .llseek = no_llseek,
Mauro Carvalho Chehab24a70fd2005-09-09 13:03:39 -07003650 .poll = radio_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651};
3652
Hans Verkuila3998102008-07-21 02:57:38 -03003653static const struct v4l2_ioctl_ops radio_ioctl_ops = {
Douglas Schilling Landgraf402aa762007-12-27 22:20:58 -03003654 .vidioc_querycap = radio_querycap,
3655 .vidioc_g_tuner = radio_g_tuner,
3656 .vidioc_enum_input = radio_enum_input,
3657 .vidioc_g_audio = radio_g_audio,
3658 .vidioc_s_tuner = radio_s_tuner,
3659 .vidioc_s_audio = radio_s_audio,
3660 .vidioc_s_input = radio_s_input,
3661 .vidioc_s_std = radio_s_std,
3662 .vidioc_queryctrl = radio_queryctrl,
3663 .vidioc_g_input = radio_g_input,
Mauro Carvalho Chehabe5ae3db2007-12-27 22:22:59 -03003664 .vidioc_g_ctrl = bttv_g_ctrl,
3665 .vidioc_s_ctrl = bttv_s_ctrl,
3666 .vidioc_g_frequency = bttv_g_frequency,
3667 .vidioc_s_frequency = bttv_s_frequency,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668};
3669
Hans Verkuila3998102008-07-21 02:57:38 -03003670static struct video_device radio_template = {
3671 .fops = &radio_fops,
3672 .minor = -1,
3673 .ioctl_ops = &radio_ioctl_ops,
3674};
3675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676/* ----------------------------------------------------------------------- */
3677/* some debug code */
3678
Adrian Bunk408b6642005-05-01 08:59:29 -07003679static int bttv_risc_decode(u32 risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680{
3681 static char *instr[16] = {
3682 [ BT848_RISC_WRITE >> 28 ] = "write",
3683 [ BT848_RISC_SKIP >> 28 ] = "skip",
3684 [ BT848_RISC_WRITEC >> 28 ] = "writec",
3685 [ BT848_RISC_JUMP >> 28 ] = "jump",
3686 [ BT848_RISC_SYNC >> 28 ] = "sync",
3687 [ BT848_RISC_WRITE123 >> 28 ] = "write123",
3688 [ BT848_RISC_SKIP123 >> 28 ] = "skip123",
3689 [ BT848_RISC_WRITE1S23 >> 28 ] = "write1s23",
3690 };
3691 static int incr[16] = {
3692 [ BT848_RISC_WRITE >> 28 ] = 2,
3693 [ BT848_RISC_JUMP >> 28 ] = 2,
3694 [ BT848_RISC_SYNC >> 28 ] = 2,
3695 [ BT848_RISC_WRITE123 >> 28 ] = 5,
3696 [ BT848_RISC_SKIP123 >> 28 ] = 2,
3697 [ BT848_RISC_WRITE1S23 >> 28 ] = 3,
3698 };
3699 static char *bits[] = {
3700 "be0", "be1", "be2", "be3/resync",
3701 "set0", "set1", "set2", "set3",
3702 "clr0", "clr1", "clr2", "clr3",
3703 "irq", "res", "eol", "sol",
3704 };
3705 int i;
3706
3707 printk("0x%08x [ %s", risc,
3708 instr[risc >> 28] ? instr[risc >> 28] : "INVALID");
3709 for (i = ARRAY_SIZE(bits)-1; i >= 0; i--)
3710 if (risc & (1 << (i + 12)))
3711 printk(" %s",bits[i]);
3712 printk(" count=%d ]\n", risc & 0xfff);
3713 return incr[risc >> 28] ? incr[risc >> 28] : 1;
3714}
3715
Adrian Bunk408b6642005-05-01 08:59:29 -07003716static void bttv_risc_disasm(struct bttv *btv,
3717 struct btcx_riscmem *risc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718{
3719 unsigned int i,j,n;
3720
3721 printk("%s: risc disasm: %p [dma=0x%08lx]\n",
3722 btv->c.name, risc->cpu, (unsigned long)risc->dma);
3723 for (i = 0; i < (risc->size >> 2); i += n) {
3724 printk("%s: 0x%lx: ", btv->c.name,
3725 (unsigned long)(risc->dma + (i<<2)));
Al Viro3aa71102008-06-22 14:20:09 -03003726 n = bttv_risc_decode(le32_to_cpu(risc->cpu[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 for (j = 1; j < n; j++)
3728 printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n",
3729 btv->c.name, (unsigned long)(risc->dma + ((i+j)<<2)),
3730 risc->cpu[i+j], j);
3731 if (0 == risc->cpu[i])
3732 break;
3733 }
3734}
3735
3736static void bttv_print_riscaddr(struct bttv *btv)
3737{
3738 printk(" main: %08Lx\n",
3739 (unsigned long long)btv->main.dma);
3740 printk(" vbi : o=%08Lx e=%08Lx\n",
3741 btv->cvbi ? (unsigned long long)btv->cvbi->top.dma : 0,
3742 btv->cvbi ? (unsigned long long)btv->cvbi->bottom.dma : 0);
3743 printk(" cap : o=%08Lx e=%08Lx\n",
3744 btv->curr.top ? (unsigned long long)btv->curr.top->top.dma : 0,
3745 btv->curr.bottom ? (unsigned long long)btv->curr.bottom->bottom.dma : 0);
3746 printk(" scr : o=%08Lx e=%08Lx\n",
3747 btv->screen ? (unsigned long long)btv->screen->top.dma : 0,
3748 btv->screen ? (unsigned long long)btv->screen->bottom.dma : 0);
3749 bttv_risc_disasm(btv, &btv->main);
3750}
3751
3752/* ----------------------------------------------------------------------- */
3753/* irq handler */
3754
3755static char *irq_name[] = {
3756 "FMTCHG", // format change detected (525 vs. 625)
3757 "VSYNC", // vertical sync (new field)
3758 "HSYNC", // horizontal sync
3759 "OFLOW", // chroma/luma AGC overflow
3760 "HLOCK", // horizontal lock changed
3761 "VPRES", // video presence changed
3762 "6", "7",
3763 "I2CDONE", // hw irc operation finished
3764 "GPINT", // gpio port triggered irq
3765 "10",
3766 "RISCI", // risc instruction triggered irq
3767 "FBUS", // pixel data fifo dropped data (high pci bus latencies)
3768 "FTRGT", // pixel data fifo overrun
3769 "FDSR", // fifo data stream resyncronisation
3770 "PPERR", // parity error (data transfer)
3771 "RIPERR", // parity error (read risc instructions)
3772 "PABORT", // pci abort
3773 "OCERR", // risc instruction error
3774 "SCERR", // syncronisation error
3775};
3776
3777static void bttv_print_irqbits(u32 print, u32 mark)
3778{
3779 unsigned int i;
3780
3781 printk("bits:");
3782 for (i = 0; i < ARRAY_SIZE(irq_name); i++) {
3783 if (print & (1 << i))
3784 printk(" %s",irq_name[i]);
3785 if (mark & (1 << i))
3786 printk("*");
3787 }
3788}
3789
3790static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc)
3791{
3792 printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n",
3793 btv->c.nr,
3794 (unsigned long)btv->main.dma,
Al Viro3aa71102008-06-22 14:20:09 -03003795 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_VBI+1]),
3796 (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_FIELD+1]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 (unsigned long)rc);
3798
3799 if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) {
3800 printk("bttv%d: Oh, there (temporarely?) is no input signal. "
3801 "Ok, then this is harmless, don't worry ;)\n",
3802 btv->c.nr);
3803 return;
3804 }
3805 printk("bttv%d: Uhm. Looks like we have unusual high IRQ latencies.\n",
3806 btv->c.nr);
3807 printk("bttv%d: Lets try to catch the culpit red-handed ...\n",
3808 btv->c.nr);
3809 dump_stack();
3810}
3811
3812static int
3813bttv_irq_next_video(struct bttv *btv, struct bttv_buffer_set *set)
3814{
3815 struct bttv_buffer *item;
3816
3817 memset(set,0,sizeof(*set));
3818
3819 /* capture request ? */
3820 if (!list_empty(&btv->capture)) {
3821 set->frame_irq = 1;
3822 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3823 if (V4L2_FIELD_HAS_TOP(item->vb.field))
3824 set->top = item;
3825 if (V4L2_FIELD_HAS_BOTTOM(item->vb.field))
3826 set->bottom = item;
3827
3828 /* capture request for other field ? */
3829 if (!V4L2_FIELD_HAS_BOTH(item->vb.field) &&
3830 (item->vb.queue.next != &btv->capture)) {
3831 item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue);
3832 if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) {
3833 if (NULL == set->top &&
3834 V4L2_FIELD_TOP == item->vb.field) {
3835 set->top = item;
3836 }
3837 if (NULL == set->bottom &&
3838 V4L2_FIELD_BOTTOM == item->vb.field) {
3839 set->bottom = item;
3840 }
3841 if (NULL != set->top && NULL != set->bottom)
3842 set->top_irq = 2;
3843 }
3844 }
3845 }
3846
3847 /* screen overlay ? */
3848 if (NULL != btv->screen) {
3849 if (V4L2_FIELD_HAS_BOTH(btv->screen->vb.field)) {
3850 if (NULL == set->top && NULL == set->bottom) {
3851 set->top = btv->screen;
3852 set->bottom = btv->screen;
3853 }
3854 } else {
3855 if (V4L2_FIELD_TOP == btv->screen->vb.field &&
3856 NULL == set->top) {
3857 set->top = btv->screen;
3858 }
3859 if (V4L2_FIELD_BOTTOM == btv->screen->vb.field &&
3860 NULL == set->bottom) {
3861 set->bottom = btv->screen;
3862 }
3863 }
3864 }
3865
3866 dprintk("bttv%d: next set: top=%p bottom=%p [screen=%p,irq=%d,%d]\n",
3867 btv->c.nr,set->top, set->bottom,
3868 btv->screen,set->frame_irq,set->top_irq);
3869 return 0;
3870}
3871
3872static void
3873bttv_irq_wakeup_video(struct bttv *btv, struct bttv_buffer_set *wakeup,
3874 struct bttv_buffer_set *curr, unsigned int state)
3875{
3876 struct timeval ts;
3877
3878 do_gettimeofday(&ts);
3879
3880 if (wakeup->top == wakeup->bottom) {
3881 if (NULL != wakeup->top && curr->top != wakeup->top) {
3882 if (irq_debug > 1)
3883 printk("bttv%d: wakeup: both=%p\n",btv->c.nr,wakeup->top);
3884 wakeup->top->vb.ts = ts;
3885 wakeup->top->vb.field_count = btv->field_count;
3886 wakeup->top->vb.state = state;
3887 wake_up(&wakeup->top->vb.done);
3888 }
3889 } else {
3890 if (NULL != wakeup->top && curr->top != wakeup->top) {
3891 if (irq_debug > 1)
3892 printk("bttv%d: wakeup: top=%p\n",btv->c.nr,wakeup->top);
3893 wakeup->top->vb.ts = ts;
3894 wakeup->top->vb.field_count = btv->field_count;
3895 wakeup->top->vb.state = state;
3896 wake_up(&wakeup->top->vb.done);
3897 }
3898 if (NULL != wakeup->bottom && curr->bottom != wakeup->bottom) {
3899 if (irq_debug > 1)
3900 printk("bttv%d: wakeup: bottom=%p\n",btv->c.nr,wakeup->bottom);
3901 wakeup->bottom->vb.ts = ts;
3902 wakeup->bottom->vb.field_count = btv->field_count;
3903 wakeup->bottom->vb.state = state;
3904 wake_up(&wakeup->bottom->vb.done);
3905 }
3906 }
3907}
3908
3909static void
3910bttv_irq_wakeup_vbi(struct bttv *btv, struct bttv_buffer *wakeup,
3911 unsigned int state)
3912{
3913 struct timeval ts;
3914
3915 if (NULL == wakeup)
3916 return;
3917
3918 do_gettimeofday(&ts);
3919 wakeup->vb.ts = ts;
3920 wakeup->vb.field_count = btv->field_count;
3921 wakeup->vb.state = state;
3922 wake_up(&wakeup->vb.done);
3923}
3924
3925static void bttv_irq_timeout(unsigned long data)
3926{
3927 struct bttv *btv = (struct bttv *)data;
3928 struct bttv_buffer_set old,new;
3929 struct bttv_buffer *ovbi;
3930 struct bttv_buffer *item;
3931 unsigned long flags;
3932
3933 if (bttv_verbose) {
3934 printk(KERN_INFO "bttv%d: timeout: drop=%d irq=%d/%d, risc=%08x, ",
3935 btv->c.nr, btv->framedrop, btv->irq_me, btv->irq_total,
3936 btread(BT848_RISC_COUNT));
3937 bttv_print_irqbits(btread(BT848_INT_STAT),0);
3938 printk("\n");
3939 }
3940
3941 spin_lock_irqsave(&btv->s_lock,flags);
3942
3943 /* deactivate stuff */
3944 memset(&new,0,sizeof(new));
3945 old = btv->curr;
3946 ovbi = btv->cvbi;
3947 btv->curr = new;
3948 btv->cvbi = NULL;
3949 btv->loop_irq = 0;
3950 bttv_buffer_activate_video(btv, &new);
3951 bttv_buffer_activate_vbi(btv, NULL);
3952 bttv_set_dma(btv, 0);
3953
3954 /* wake up */
Brandon Philips0fc06862007-11-06 20:02:36 -03003955 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_ERROR);
3956 bttv_irq_wakeup_vbi(btv, ovbi, VIDEOBUF_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
3958 /* cancel all outstanding capture / vbi requests */
3959 while (!list_empty(&btv->capture)) {
3960 item = list_entry(btv->capture.next, struct bttv_buffer, vb.queue);
3961 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003962 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 wake_up(&item->vb.done);
3964 }
3965 while (!list_empty(&btv->vcapture)) {
3966 item = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
3967 list_del(&item->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -03003968 item->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 wake_up(&item->vb.done);
3970 }
3971
3972 btv->errors++;
3973 spin_unlock_irqrestore(&btv->s_lock,flags);
3974}
3975
3976static void
3977bttv_irq_wakeup_top(struct bttv *btv)
3978{
3979 struct bttv_buffer *wakeup = btv->curr.top;
3980
3981 if (NULL == wakeup)
3982 return;
3983
3984 spin_lock(&btv->s_lock);
3985 btv->curr.top_irq = 0;
3986 btv->curr.top = NULL;
3987 bttv_risc_hook(btv, RISC_SLOT_O_FIELD, NULL, 0);
3988
3989 do_gettimeofday(&wakeup->vb.ts);
3990 wakeup->vb.field_count = btv->field_count;
Brandon Philips0fc06862007-11-06 20:02:36 -03003991 wakeup->vb.state = VIDEOBUF_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 wake_up(&wakeup->vb.done);
3993 spin_unlock(&btv->s_lock);
3994}
3995
3996static inline int is_active(struct btcx_riscmem *risc, u32 rc)
3997{
3998 if (rc < risc->dma)
3999 return 0;
4000 if (rc > risc->dma + risc->size)
4001 return 0;
4002 return 1;
4003}
4004
4005static void
4006bttv_irq_switch_video(struct bttv *btv)
4007{
4008 struct bttv_buffer_set new;
4009 struct bttv_buffer_set old;
4010 dma_addr_t rc;
4011
4012 spin_lock(&btv->s_lock);
4013
4014 /* new buffer set */
4015 bttv_irq_next_video(btv, &new);
4016 rc = btread(BT848_RISC_COUNT);
4017 if ((btv->curr.top && is_active(&btv->curr.top->top, rc)) ||
4018 (btv->curr.bottom && is_active(&btv->curr.bottom->bottom, rc))) {
4019 btv->framedrop++;
4020 if (debug_latency)
4021 bttv_irq_debug_low_latency(btv, rc);
4022 spin_unlock(&btv->s_lock);
4023 return;
4024 }
4025
4026 /* switch over */
4027 old = btv->curr;
4028 btv->curr = new;
4029 btv->loop_irq &= ~1;
4030 bttv_buffer_activate_video(btv, &new);
4031 bttv_set_dma(btv, 0);
4032
4033 /* switch input */
4034 if (UNSET != btv->new_input) {
4035 video_mux(btv,btv->new_input);
4036 btv->new_input = UNSET;
4037 }
4038
4039 /* wake up finished buffers */
Brandon Philips0fc06862007-11-06 20:02:36 -03004040 bttv_irq_wakeup_video(btv, &old, &new, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 spin_unlock(&btv->s_lock);
4042}
4043
4044static void
4045bttv_irq_switch_vbi(struct bttv *btv)
4046{
4047 struct bttv_buffer *new = NULL;
4048 struct bttv_buffer *old;
4049 u32 rc;
4050
4051 spin_lock(&btv->s_lock);
4052
4053 if (!list_empty(&btv->vcapture))
4054 new = list_entry(btv->vcapture.next, struct bttv_buffer, vb.queue);
4055 old = btv->cvbi;
4056
4057 rc = btread(BT848_RISC_COUNT);
4058 if (NULL != old && (is_active(&old->top, rc) ||
4059 is_active(&old->bottom, rc))) {
4060 btv->framedrop++;
4061 if (debug_latency)
4062 bttv_irq_debug_low_latency(btv, rc);
4063 spin_unlock(&btv->s_lock);
4064 return;
4065 }
4066
4067 /* switch */
4068 btv->cvbi = new;
4069 btv->loop_irq &= ~4;
4070 bttv_buffer_activate_vbi(btv, new);
4071 bttv_set_dma(btv, 0);
4072
Brandon Philips0fc06862007-11-06 20:02:36 -03004073 bttv_irq_wakeup_vbi(btv, old, VIDEOBUF_DONE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 spin_unlock(&btv->s_lock);
4075}
4076
David Howells7d12e782006-10-05 14:55:46 +01004077static irqreturn_t bttv_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078{
4079 u32 stat,astat;
4080 u32 dstat;
4081 int count;
4082 struct bttv *btv;
4083 int handled = 0;
4084
4085 btv=(struct bttv *)dev_id;
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004086
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004087 if (btv->custom_irq)
4088 handled = btv->custom_irq(btv);
Mark Weaver6c6c0b22005-11-13 16:07:52 -08004089
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 count=0;
4091 while (1) {
4092 /* get/clear interrupt status bits */
4093 stat=btread(BT848_INT_STAT);
4094 astat=stat&btread(BT848_INT_MASK);
4095 if (!astat)
4096 break;
4097 handled = 1;
4098 btwrite(stat,BT848_INT_STAT);
4099
4100 /* get device status bits */
4101 dstat=btread(BT848_DSTATUS);
4102
4103 if (irq_debug) {
4104 printk(KERN_DEBUG "bttv%d: irq loop=%d fc=%d "
4105 "riscs=%x, riscc=%08x, ",
4106 btv->c.nr, count, btv->field_count,
4107 stat>>28, btread(BT848_RISC_COUNT));
4108 bttv_print_irqbits(stat,astat);
4109 if (stat & BT848_INT_HLOCK)
4110 printk(" HLOC => %s", (dstat & BT848_DSTATUS_HLOC)
4111 ? "yes" : "no");
4112 if (stat & BT848_INT_VPRES)
4113 printk(" PRES => %s", (dstat & BT848_DSTATUS_PRES)
4114 ? "yes" : "no");
4115 if (stat & BT848_INT_FMTCHG)
4116 printk(" NUML => %s", (dstat & BT848_DSTATUS_NUML)
4117 ? "625" : "525");
4118 printk("\n");
4119 }
4120
4121 if (astat&BT848_INT_VSYNC)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004122 btv->field_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004124 if ((astat & BT848_INT_GPINT) && btv->remote) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004126 bttv_input_irq(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 }
4128
4129 if (astat & BT848_INT_I2CDONE) {
4130 btv->i2c_done = stat;
4131 wake_up(&btv->i2c_queue);
4132 }
4133
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004134 if ((astat & BT848_INT_RISCI) && (stat & (4<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 bttv_irq_switch_vbi(btv);
4136
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004137 if ((astat & BT848_INT_RISCI) && (stat & (2<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 bttv_irq_wakeup_top(btv);
4139
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004140 if ((astat & BT848_INT_RISCI) && (stat & (1<<28)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 bttv_irq_switch_video(btv);
4142
4143 if ((astat & BT848_INT_HLOCK) && btv->opt_automute)
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004144 audio_mute(btv, btv->mute); /* trigger automute */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
4146 if (astat & (BT848_INT_SCERR|BT848_INT_OCERR)) {
4147 printk(KERN_INFO "bttv%d: %s%s @ %08x,",btv->c.nr,
4148 (astat & BT848_INT_SCERR) ? "SCERR" : "",
4149 (astat & BT848_INT_OCERR) ? "OCERR" : "",
4150 btread(BT848_RISC_COUNT));
4151 bttv_print_irqbits(stat,astat);
4152 printk("\n");
4153 if (bttv_debug)
4154 bttv_print_riscaddr(btv);
4155 }
4156 if (fdsr && astat & BT848_INT_FDSR) {
4157 printk(KERN_INFO "bttv%d: FDSR @ %08x\n",
4158 btv->c.nr,btread(BT848_RISC_COUNT));
4159 if (bttv_debug)
4160 bttv_print_riscaddr(btv);
4161 }
4162
4163 count++;
4164 if (count > 4) {
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004165
4166 if (count > 8 || !(astat & BT848_INT_GPINT)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004167 btwrite(0, BT848_INT_MASK);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004168
4169 printk(KERN_ERR
4170 "bttv%d: IRQ lockup, cleared int mask [", btv->c.nr);
4171 } else {
4172 printk(KERN_ERR
4173 "bttv%d: IRQ lockup, clearing GPINT from int mask [", btv->c.nr);
4174
4175 btwrite(btread(BT848_INT_MASK) & (-1 ^ BT848_INT_GPINT),
4176 BT848_INT_MASK);
4177 };
4178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 bttv_print_irqbits(stat,astat);
nshmyrev@yandex.ruc58c21c2005-11-08 21:37:41 -08004180
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 printk("]\n");
4182 }
4183 }
4184 btv->irq_total++;
4185 if (handled)
4186 btv->irq_me++;
4187 return IRQ_RETVAL(handled);
4188}
4189
4190
4191/* ----------------------------------------------------------------------- */
4192/* initialitation */
4193
4194static struct video_device *vdev_init(struct bttv *btv,
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004195 const struct video_device *template,
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004196 const char *type_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197{
4198 struct video_device *vfd;
4199
4200 vfd = video_device_alloc();
4201 if (NULL == vfd)
4202 return NULL;
4203 *vfd = *template;
4204 vfd->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03004205 vfd->parent = &btv->c.pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 vfd->release = video_device_release;
Mauro Carvalho Chehab1d0a4362008-06-23 12:31:29 -03004207 vfd->debug = bttv_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 snprintf(vfd->name, sizeof(vfd->name), "BT%d%s %s (%s)",
4209 btv->id, (btv->id==848 && btv->revision==0x12) ? "A" : "",
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004210 type_name, bttv_tvcards[btv->c.type].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 return vfd;
4212}
4213
4214static void bttv_unregister_video(struct bttv *btv)
4215{
4216 if (btv->video_dev) {
4217 if (-1 != btv->video_dev->minor)
4218 video_unregister_device(btv->video_dev);
4219 else
4220 video_device_release(btv->video_dev);
4221 btv->video_dev = NULL;
4222 }
4223 if (btv->vbi_dev) {
4224 if (-1 != btv->vbi_dev->minor)
4225 video_unregister_device(btv->vbi_dev);
4226 else
4227 video_device_release(btv->vbi_dev);
4228 btv->vbi_dev = NULL;
4229 }
4230 if (btv->radio_dev) {
4231 if (-1 != btv->radio_dev->minor)
4232 video_unregister_device(btv->radio_dev);
4233 else
4234 video_device_release(btv->radio_dev);
4235 btv->radio_dev = NULL;
4236 }
4237}
4238
4239/* register video4linux devices */
4240static int __devinit bttv_register_video(struct bttv *btv)
4241{
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004242 if (no_overlay > 0)
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004243 printk("bttv: Overlay support disabled.\n");
Mauro Carvalho Chehab4dcef522005-08-04 12:53:30 -07004244
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 /* video */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004246 btv->video_dev = vdev_init(btv, &bttv_video_template, "video");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004247
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004248 if (NULL == btv->video_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 goto err;
4250 if (video_register_device(btv->video_dev,VFL_TYPE_GRABBER,video_nr)<0)
4251 goto err;
4252 printk(KERN_INFO "bttv%d: registered device video%d\n",
4253 btv->c.nr,btv->video_dev->minor & 0x1f);
Hans Verkuil22a04f12008-07-20 06:35:02 -03004254 if (device_create_file(&btv->video_dev->dev,
Kay Sievers54bd5b62007-10-08 16:26:13 -03004255 &dev_attr_card)<0) {
4256 printk(KERN_ERR "bttv%d: device_create_file 'card' "
Trent Piephod94fc9a2006-07-29 17:18:06 -03004257 "failed\n", btv->c.nr);
4258 goto err;
4259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
4261 /* vbi */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004262 btv->vbi_dev = vdev_init(btv, &bttv_video_template, "vbi");
Mauro Carvalho Chehab9134be02007-12-27 22:28:31 -03004263
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004264 if (NULL == btv->vbi_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 goto err;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004266 if (video_register_device(btv->vbi_dev,VFL_TYPE_VBI,vbi_nr)<0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 goto err;
4268 printk(KERN_INFO "bttv%d: registered device vbi%d\n",
4269 btv->c.nr,btv->vbi_dev->minor & 0x1f);
4270
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004271 if (!btv->has_radio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 return 0;
4273 /* radio */
Hans Verkuil0ea6bc82008-07-26 08:26:43 -03004274 btv->radio_dev = vdev_init(btv, &radio_template, "radio");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004275 if (NULL == btv->radio_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 goto err;
4277 if (video_register_device(btv->radio_dev, VFL_TYPE_RADIO,radio_nr)<0)
4278 goto err;
4279 printk(KERN_INFO "bttv%d: registered device radio%d\n",
4280 btv->c.nr,btv->radio_dev->minor & 0x1f);
4281
4282 /* all done */
4283 return 0;
4284
4285 err:
4286 bttv_unregister_video(btv);
4287 return -1;
4288}
4289
4290
4291/* on OpenFirmware machines (PowerMac at least), PCI memory cycle */
4292/* response on cards with no firmware is not enabled by OF */
4293static void pci_set_command(struct pci_dev *dev)
4294{
4295#if defined(__powerpc__)
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004296 unsigned int cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004298 pci_read_config_dword(dev, PCI_COMMAND, &cmd);
4299 cmd = (cmd | PCI_COMMAND_MEMORY );
4300 pci_write_config_dword(dev, PCI_COMMAND, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301#endif
4302}
4303
4304static int __devinit bttv_probe(struct pci_dev *dev,
4305 const struct pci_device_id *pci_id)
4306{
4307 int result;
4308 unsigned char lat;
4309 struct bttv *btv;
4310
4311 if (bttv_num == BTTV_MAX)
4312 return -ENOMEM;
4313 printk(KERN_INFO "bttv: Bt8xx card found (%d).\n", bttv_num);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004314 btv=&bttvs[bttv_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 memset(btv,0,sizeof(*btv));
4316 btv->c.nr = bttv_num;
4317 sprintf(btv->c.name,"bttv%d",btv->c.nr);
4318
4319 /* initialize structs / fill in defaults */
Ingo Molnarbd5f0ac2006-01-13 14:10:24 -02004320 mutex_init(&btv->lock);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004321 spin_lock_init(&btv->s_lock);
4322 spin_lock_init(&btv->gpio_lock);
4323 init_waitqueue_head(&btv->gpioq);
4324 init_waitqueue_head(&btv->i2c_queue);
4325 INIT_LIST_HEAD(&btv->c.subs);
4326 INIT_LIST_HEAD(&btv->capture);
4327 INIT_LIST_HEAD(&btv->vcapture);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 v4l2_prio_init(&btv->prio);
4329
4330 init_timer(&btv->timeout);
4331 btv->timeout.function = bttv_irq_timeout;
4332 btv->timeout.data = (unsigned long)btv;
4333
Michael Krufky7c08fb02005-11-08 21:36:21 -08004334 btv->i2c_rc = -1;
4335 btv->tuner_type = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 btv->new_input = UNSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 btv->has_radio=radio[btv->c.nr];
4338
4339 /* pci stuff (init, get irq/mmio, ... */
4340 btv->c.pci = dev;
Michael Krufky7c08fb02005-11-08 21:36:21 -08004341 btv->id = dev->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 if (pci_enable_device(dev)) {
Michael Krufky7c08fb02005-11-08 21:36:21 -08004343 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 btv->c.nr);
4345 return -EIO;
4346 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004347 if (pci_set_dma_mask(dev, DMA_32BIT_MASK)) {
4348 printk(KERN_WARNING "bttv%d: No suitable DMA available.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 btv->c.nr);
4350 return -EIO;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 if (!request_mem_region(pci_resource_start(dev,0),
4353 pci_resource_len(dev,0),
4354 btv->c.name)) {
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004355 printk(KERN_WARNING "bttv%d: can't request iomem (0x%llx).\n",
4356 btv->c.nr,
4357 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 return -EBUSY;
4359 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004360 pci_set_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 pci_set_command(dev);
4362 pci_set_drvdata(dev,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004364 pci_read_config_byte(dev, PCI_CLASS_REVISION, &btv->revision);
4365 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
4366 printk(KERN_INFO "bttv%d: Bt%d (rev %d) at %s, ",
4367 bttv_num,btv->id, btv->revision, pci_name(dev));
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07004368 printk("irq: %d, latency: %d, mmio: 0x%llx\n",
4369 btv->c.pci->irq, lat,
4370 (unsigned long long)pci_resource_start(dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 schedule();
4372
Akinobu Mita5f1693f2006-12-20 10:08:56 -03004373 btv->bt848_mmio = ioremap(pci_resource_start(dev, 0), 0x1000);
4374 if (NULL == btv->bt848_mmio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 printk("bttv%d: ioremap() failed\n", btv->c.nr);
4376 result = -EIO;
4377 goto fail1;
4378 }
4379
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004380 /* identify card */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 bttv_idcard(btv);
4382
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004383 /* disable irqs, register irq handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 btwrite(0, BT848_INT_MASK);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004385 result = request_irq(btv->c.pci->irq, bttv_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07004386 IRQF_SHARED | IRQF_DISABLED,btv->c.name,(void *)btv);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004387 if (result < 0) {
4388 printk(KERN_ERR "bttv%d: can't get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 bttv_num,btv->c.pci->irq);
4390 goto fail1;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
4393 if (0 != bttv_handle_chipset(btv)) {
4394 result = -EIO;
4395 goto fail2;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398 /* init options from insmod args */
4399 btv->opt_combfilter = combfilter;
4400 btv->opt_lumafilter = lumafilter;
4401 btv->opt_automute = automute;
4402 btv->opt_chroma_agc = chroma_agc;
4403 btv->opt_adc_crush = adc_crush;
4404 btv->opt_vcr_hack = vcr_hack;
4405 btv->opt_whitecrush_upper = whitecrush_upper;
4406 btv->opt_whitecrush_lower = whitecrush_lower;
Mauro Carvalho Chehab060d3022005-06-28 20:45:25 -07004407 btv->opt_uv_ratio = uv_ratio;
4408 btv->opt_full_luma_range = full_luma_range;
4409 btv->opt_coring = coring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
4411 /* fill struct bttv with some useful defaults */
4412 btv->init.btv = btv;
4413 btv->init.ov.w.width = 320;
4414 btv->init.ov.w.height = 240;
Mauro Carvalho Chehabc96dd072007-10-26 16:51:47 -03004415 btv->init.fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 btv->init.width = 320;
4417 btv->init.height = 240;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 btv->input = 0;
4419
4420 /* initialize hardware */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004421 if (bttv_gpio)
4422 bttv_gpio_tracking(btv,"pre-init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
4424 bttv_risc_init_main(btv);
4425 init_bt848(btv);
4426
4427 /* gpio */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004428 btwrite(0x00, BT848_GPIO_REG_INP);
4429 btwrite(0x00, BT848_GPIO_OUT_EN);
4430 if (bttv_verbose)
4431 bttv_gpio_tracking(btv,"init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004433 /* needs to be done before i2c is registered */
4434 bttv_init_card1(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004436 /* register i2c + gpio */
4437 init_bttv_i2c(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004439 /* some card-specific stuff (needs working i2c) */
4440 bttv_init_card2(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 init_irqreg(btv);
4442
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004443 /* register video4linux + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 if (!bttv_tvcards[btv->c.type].no_video) {
4445 bttv_register_video(btv);
4446 bt848_bright(btv,32768);
4447 bt848_contrast(btv,32768);
4448 bt848_hue(btv,32768);
4449 bt848_sat(btv,32768);
Hans Verkuil8bf2f8e2006-03-18 21:31:00 -03004450 audio_mute(btv, 1);
Trent Piepho333408f2007-07-03 15:08:10 -03004451 set_input(btv, 0, btv->tvnorm);
Michael Schimeke5bd0262007-01-18 16:17:39 -03004452 bttv_crop_reset(&btv->crop[0], btv->tvnorm);
4453 btv->crop[1] = btv->crop[0]; /* current = default */
4454 disclaim_vbi_lines(btv);
4455 disclaim_video_lines(btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 }
4457
Jarod Wilsonf992a492007-03-24 15:23:50 -03004458 /* add subdevices and autoload dvb-bt8xx if needed */
4459 if (bttv_tvcards[btv->c.type].has_dvb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 bttv_sub_add_device(&btv->c, "dvb");
Jarod Wilsonf992a492007-03-24 15:23:50 -03004461 request_modules(btv);
4462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004464 bttv_input_init(btv);
4465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 /* everything is fine */
4467 bttv_num++;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004468 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
4470 fail2:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004471 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
4473 fail1:
4474 if (btv->bt848_mmio)
4475 iounmap(btv->bt848_mmio);
4476 release_mem_region(pci_resource_start(btv->c.pci,0),
4477 pci_resource_len(btv->c.pci,0));
4478 pci_set_drvdata(dev,NULL);
4479 return result;
4480}
4481
4482static void __devexit bttv_remove(struct pci_dev *pci_dev)
4483{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004484 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
4486 if (bttv_verbose)
4487 printk("bttv%d: unloading\n",btv->c.nr);
4488
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004489 /* shutdown everything (DMA+IRQs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 btand(~15, BT848_GPIO_DMA_CTL);
4491 btwrite(0, BT848_INT_MASK);
4492 btwrite(~0x0, BT848_INT_STAT);
4493 btwrite(0x0, BT848_GPIO_OUT_EN);
4494 if (bttv_gpio)
4495 bttv_gpio_tracking(btv,"cleanup");
4496
4497 /* tell gpio modules we are leaving ... */
4498 btv->shutdown=1;
4499 wake_up(&btv->gpioq);
Ricardo Cerqueira4abdfed2006-01-09 15:25:25 -02004500 bttv_input_fini(btv);
Christopher Pascoe889aee82006-01-09 15:25:28 -02004501 bttv_sub_del_devices(&btv->c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004503 /* unregister i2c_bus + input */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 fini_bttv_i2c(btv);
4505
4506 /* unregister video4linux */
4507 bttv_unregister_video(btv);
4508
4509 /* free allocated memory */
4510 btcx_riscmem_free(btv->c.pci,&btv->main);
4511
4512 /* free ressources */
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004513 free_irq(btv->c.pci->irq,btv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 iounmap(btv->bt848_mmio);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004515 release_mem_region(pci_resource_start(btv->c.pci,0),
4516 pci_resource_len(btv->c.pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
4518 pci_set_drvdata(pci_dev, NULL);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004519 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520}
4521
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004522#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523static int bttv_suspend(struct pci_dev *pci_dev, pm_message_t state)
4524{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004525 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 struct bttv_buffer_set idle;
4527 unsigned long flags;
4528
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -07004529 dprintk("bttv%d: suspend %d\n", btv->c.nr, state.event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531 /* stop dma + irqs */
4532 spin_lock_irqsave(&btv->s_lock,flags);
4533 memset(&idle, 0, sizeof(idle));
4534 btv->state.video = btv->curr;
4535 btv->state.vbi = btv->cvbi;
4536 btv->state.loop_irq = btv->loop_irq;
4537 btv->curr = idle;
4538 btv->loop_irq = 0;
4539 bttv_buffer_activate_video(btv, &idle);
4540 bttv_buffer_activate_vbi(btv, NULL);
4541 bttv_set_dma(btv, 0);
4542 btwrite(0, BT848_INT_MASK);
4543 spin_unlock_irqrestore(&btv->s_lock,flags);
4544
4545 /* save bt878 state */
4546 btv->state.gpio_enable = btread(BT848_GPIO_OUT_EN);
4547 btv->state.gpio_data = gpio_read();
4548
4549 /* save pci state */
4550 pci_save_state(pci_dev);
4551 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
4552 pci_disable_device(pci_dev);
4553 btv->state.disabled = 1;
4554 }
4555 return 0;
4556}
4557
4558static int bttv_resume(struct pci_dev *pci_dev)
4559{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004560 struct bttv *btv = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 unsigned long flags;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004562 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563
4564 dprintk("bttv%d: resume\n", btv->c.nr);
4565
4566 /* restore pci state */
4567 if (btv->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004568 err=pci_enable_device(pci_dev);
4569 if (err) {
4570 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4571 btv->c.nr);
4572 return err;
4573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 btv->state.disabled = 0;
4575 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07004576 err=pci_set_power_state(pci_dev, PCI_D0);
4577 if (err) {
4578 pci_disable_device(pci_dev);
4579 printk(KERN_WARNING "bttv%d: Can't enable device.\n",
4580 btv->c.nr);
4581 btv->state.disabled = 1;
4582 return err;
4583 }
4584
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 pci_restore_state(pci_dev);
4586
4587 /* restore bt878 state */
4588 bttv_reinit_bt848(btv);
4589 gpio_inout(0xffffff, btv->state.gpio_enable);
4590 gpio_write(btv->state.gpio_data);
4591
4592 /* restart dma */
4593 spin_lock_irqsave(&btv->s_lock,flags);
4594 btv->curr = btv->state.video;
4595 btv->cvbi = btv->state.vbi;
4596 btv->loop_irq = btv->state.loop_irq;
4597 bttv_buffer_activate_video(btv, &btv->curr);
4598 bttv_buffer_activate_vbi(btv, btv->cvbi);
4599 bttv_set_dma(btv, 0);
4600 spin_unlock_irqrestore(&btv->s_lock,flags);
4601 return 0;
4602}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004603#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
4605static struct pci_device_id bttv_pci_tbl[] = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004606 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT848,
4607 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT849,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004609 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT878,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004611 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 {PCI_VENDOR_ID_BROOKTREE, PCI_DEVICE_ID_BT879,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004613 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
4614 {0,}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615};
4616
4617MODULE_DEVICE_TABLE(pci, bttv_pci_tbl);
4618
4619static struct pci_driver bttv_pci_driver = {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08004620 .name = "bttv",
4621 .id_table = bttv_pci_tbl,
4622 .probe = bttv_probe,
4623 .remove = __devexit_p(bttv_remove),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004624#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 .suspend = bttv_suspend,
4626 .resume = bttv_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03004627#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628};
4629
Adrian Bunk7d44e892007-12-11 19:23:43 -03004630static int __init bttv_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631{
Randy Dunlapc526e222006-07-15 09:08:26 -03004632 int ret;
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 bttv_num = 0;
4635
4636 printk(KERN_INFO "bttv: driver version %d.%d.%d loaded\n",
4637 (BTTV_VERSION_CODE >> 16) & 0xff,
4638 (BTTV_VERSION_CODE >> 8) & 0xff,
4639 BTTV_VERSION_CODE & 0xff);
4640#ifdef SNAPSHOT
4641 printk(KERN_INFO "bttv: snapshot date %04d-%02d-%02d\n",
4642 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
4643#endif
4644 if (gbuffers < 2 || gbuffers > VIDEO_MAX_FRAME)
4645 gbuffers = 2;
4646 if (gbufsize < 0 || gbufsize > BTTV_MAX_FBUF)
4647 gbufsize = BTTV_MAX_FBUF;
4648 gbufsize = (gbufsize + PAGE_SIZE - 1) & PAGE_MASK;
4649 if (bttv_verbose)
4650 printk(KERN_INFO "bttv: using %d buffers with %dk (%d pages) each for capture\n",
4651 gbuffers, gbufsize >> 10, gbufsize >> PAGE_SHIFT);
4652
4653 bttv_check_chipset();
4654
Randy Dunlapc526e222006-07-15 09:08:26 -03004655 ret = bus_register(&bttv_sub_bus_type);
4656 if (ret < 0) {
4657 printk(KERN_WARNING "bttv: bus_register error: %d\n", ret);
4658 return ret;
4659 }
Akinobu Mita9e7e85e2007-12-17 14:26:29 -03004660 ret = pci_register_driver(&bttv_pci_driver);
4661 if (ret < 0)
4662 bus_unregister(&bttv_sub_bus_type);
4663
4664 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
4666
Adrian Bunk7d44e892007-12-11 19:23:43 -03004667static void __exit bttv_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668{
4669 pci_unregister_driver(&bttv_pci_driver);
4670 bus_unregister(&bttv_sub_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671}
4672
4673module_init(bttv_init_module);
4674module_exit(bttv_cleanup_module);
4675
4676/*
4677 * Local variables:
4678 * c-basic-offset: 8
4679 * End:
4680 */