blob: 6fd15839ddf8ad68ba61454f21d24dca67750eca [file] [log] [blame]
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * device driver for Conexant 2388x based TV cards
5 * video4linux video interface
6 *
7 * (c) 2003-04 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 *
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03009 * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org>
10 * - Multituner support
11 * - video_ioctl2 conversion
12 * - PAL/M fixes
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 */
28
29#include <linux/init.h>
30#include <linux/list.h>
31#include <linux/module.h>
32#include <linux/moduleparam.h>
33#include <linux/kmod.h>
34#include <linux/kernel.h>
35#include <linux/slab.h>
36#include <linux/interrupt.h>
37#include <linux/delay.h>
38#include <linux/kthread.h>
39#include <asm/div64.h>
40
41#include "cx88.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020042#include <media/v4l2-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030044#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080045/* Include V4L1 specific functions. Should be removed soon */
46#include <linux/videodev.h>
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030047#endif
Mauro Carvalho Chehab79436632005-11-08 21:37:49 -080048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards");
50MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
51MODULE_LICENSE("GPL");
52
53/* ------------------------------------------------------------------ */
54
55static unsigned int video_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
56static unsigned int vbi_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
57static unsigned int radio_nr[] = {[0 ... (CX88_MAXBOARDS - 1)] = UNSET };
58
59module_param_array(video_nr, int, NULL, 0444);
60module_param_array(vbi_nr, int, NULL, 0444);
61module_param_array(radio_nr, int, NULL, 0444);
62
63MODULE_PARM_DESC(video_nr,"video device numbers");
64MODULE_PARM_DESC(vbi_nr,"vbi device numbers");
65MODULE_PARM_DESC(radio_nr,"radio device numbers");
66
67static unsigned int video_debug = 0;
68module_param(video_debug,int,0644);
69MODULE_PARM_DESC(video_debug,"enable debug messages [video]");
70
71static unsigned int irq_debug = 0;
72module_param(irq_debug,int,0644);
73MODULE_PARM_DESC(irq_debug,"enable debug messages [IRQ handler]");
74
75static unsigned int vid_limit = 16;
76module_param(vid_limit,int,0644);
77MODULE_PARM_DESC(vid_limit,"capture memory limit in megabytes");
78
79#define dprintk(level,fmt, arg...) if (video_debug >= level) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070080 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* ------------------------------------------------------------------ */
83
84static LIST_HEAD(cx8800_devlist);
85
86/* ------------------------------------------------------------------- */
87/* static data */
88
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -030089static struct v4l2_tvnorm tvnorms[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 {
91 .name = "NTSC-M",
92 .id = V4L2_STD_NTSC_M,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 },{
94 .name = "NTSC-JP",
95 .id = V4L2_STD_NTSC_M_JP,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 },{
Mauro Carvalho Chehabc526ab92007-01-20 13:58:23 -030097 .name = "NTSC-4.43",
98 .id = V4L2_STD_NTSC_443,
99 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 .name = "PAL-BG",
101 .id = V4L2_STD_PAL_BG,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 },{
103 .name = "PAL-DK",
104 .id = V4L2_STD_PAL_DK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 },{
106 .name = "PAL-I",
107 .id = V4L2_STD_PAL_I,
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800108 },{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .name = "PAL-M",
110 .id = V4L2_STD_PAL_M,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 },{
112 .name = "PAL-N",
113 .id = V4L2_STD_PAL_N,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 },{
115 .name = "PAL-Nc",
116 .id = V4L2_STD_PAL_Nc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 },{
118 .name = "PAL-60",
119 .id = V4L2_STD_PAL_60,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 },{
121 .name = "SECAM-L",
122 .id = V4L2_STD_SECAM_L,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 },{
124 .name = "SECAM-DK",
125 .id = V4L2_STD_SECAM_DK,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300126 }
127};
128
129static struct v4l2_tvnorm radionorms[] = {
130 {
131 .name = "RADIO",
132 .id = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134};
135
136static struct cx8800_fmt formats[] = {
137 {
138 .name = "8 bpp, gray",
139 .fourcc = V4L2_PIX_FMT_GREY,
140 .cxformat = ColorFormatY8,
141 .depth = 8,
142 .flags = FORMAT_FLAGS_PACKED,
143 },{
144 .name = "15 bpp RGB, le",
145 .fourcc = V4L2_PIX_FMT_RGB555,
146 .cxformat = ColorFormatRGB15,
147 .depth = 16,
148 .flags = FORMAT_FLAGS_PACKED,
149 },{
150 .name = "15 bpp RGB, be",
151 .fourcc = V4L2_PIX_FMT_RGB555X,
152 .cxformat = ColorFormatRGB15 | ColorFormatBSWAP,
153 .depth = 16,
154 .flags = FORMAT_FLAGS_PACKED,
155 },{
156 .name = "16 bpp RGB, le",
157 .fourcc = V4L2_PIX_FMT_RGB565,
158 .cxformat = ColorFormatRGB16,
159 .depth = 16,
160 .flags = FORMAT_FLAGS_PACKED,
161 },{
162 .name = "16 bpp RGB, be",
163 .fourcc = V4L2_PIX_FMT_RGB565X,
164 .cxformat = ColorFormatRGB16 | ColorFormatBSWAP,
165 .depth = 16,
166 .flags = FORMAT_FLAGS_PACKED,
167 },{
168 .name = "24 bpp RGB, le",
169 .fourcc = V4L2_PIX_FMT_BGR24,
170 .cxformat = ColorFormatRGB24,
171 .depth = 24,
172 .flags = FORMAT_FLAGS_PACKED,
173 },{
174 .name = "32 bpp RGB, le",
175 .fourcc = V4L2_PIX_FMT_BGR32,
176 .cxformat = ColorFormatRGB32,
177 .depth = 32,
178 .flags = FORMAT_FLAGS_PACKED,
179 },{
180 .name = "32 bpp RGB, be",
181 .fourcc = V4L2_PIX_FMT_RGB32,
182 .cxformat = ColorFormatRGB32 | ColorFormatBSWAP | ColorFormatWSWAP,
183 .depth = 32,
184 .flags = FORMAT_FLAGS_PACKED,
185 },{
186 .name = "4:2:2, packed, YUYV",
187 .fourcc = V4L2_PIX_FMT_YUYV,
188 .cxformat = ColorFormatYUY2,
189 .depth = 16,
190 .flags = FORMAT_FLAGS_PACKED,
191 },{
192 .name = "4:2:2, packed, UYVY",
193 .fourcc = V4L2_PIX_FMT_UYVY,
194 .cxformat = ColorFormatYUY2 | ColorFormatBSWAP,
195 .depth = 16,
196 .flags = FORMAT_FLAGS_PACKED,
197 },
198};
199
200static struct cx8800_fmt* format_by_fourcc(unsigned int fourcc)
201{
202 unsigned int i;
203
204 for (i = 0; i < ARRAY_SIZE(formats); i++)
205 if (formats[i].fourcc == fourcc)
206 return formats+i;
207 return NULL;
208}
209
210/* ------------------------------------------------------------------- */
211
212static const struct v4l2_queryctrl no_ctl = {
213 .name = "42",
214 .flags = V4L2_CTRL_FLAG_DISABLED,
215};
216
217static struct cx88_ctrl cx8800_ctls[] = {
218 /* --- video --- */
219 {
220 .v = {
221 .id = V4L2_CID_BRIGHTNESS,
222 .name = "Brightness",
223 .minimum = 0x00,
224 .maximum = 0xff,
225 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300226 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .type = V4L2_CTRL_TYPE_INTEGER,
228 },
229 .off = 128,
230 .reg = MO_CONTR_BRIGHT,
231 .mask = 0x00ff,
232 .shift = 0,
233 },{
234 .v = {
235 .id = V4L2_CID_CONTRAST,
236 .name = "Contrast",
237 .minimum = 0,
238 .maximum = 0xff,
239 .step = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200240 .default_value = 0x3f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .type = V4L2_CTRL_TYPE_INTEGER,
242 },
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700243 .off = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .reg = MO_CONTR_BRIGHT,
245 .mask = 0xff00,
246 .shift = 8,
247 },{
248 .v = {
249 .id = V4L2_CID_HUE,
250 .name = "Hue",
251 .minimum = 0,
252 .maximum = 0xff,
253 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300254 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .type = V4L2_CTRL_TYPE_INTEGER,
256 },
Michael Krufky9ac4c1582005-07-07 17:58:38 -0700257 .off = 128,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .reg = MO_HUE,
259 .mask = 0x00ff,
260 .shift = 0,
261 },{
262 /* strictly, this only describes only U saturation.
263 * V saturation is handled specially through code.
264 */
265 .v = {
266 .id = V4L2_CID_SATURATION,
267 .name = "Saturation",
268 .minimum = 0,
269 .maximum = 0xff,
270 .step = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200271 .default_value = 0x7f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .type = V4L2_CTRL_TYPE_INTEGER,
273 },
274 .off = 0,
275 .reg = MO_UV_SATURATION,
276 .mask = 0x00ff,
277 .shift = 0,
278 },{
279 /* --- audio --- */
280 .v = {
281 .id = V4L2_CID_AUDIO_MUTE,
282 .name = "Mute",
283 .minimum = 0,
284 .maximum = 1,
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200285 .default_value = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .type = V4L2_CTRL_TYPE_BOOLEAN,
287 },
288 .reg = AUD_VOL_CTL,
289 .sreg = SHADOW_AUD_VOL_CTL,
290 .mask = (1 << 6),
291 .shift = 6,
292 },{
293 .v = {
294 .id = V4L2_CID_AUDIO_VOLUME,
295 .name = "Volume",
296 .minimum = 0,
297 .maximum = 0x3f,
298 .step = 1,
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300299 .default_value = 0x3f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .type = V4L2_CTRL_TYPE_INTEGER,
301 },
302 .reg = AUD_VOL_CTL,
303 .sreg = SHADOW_AUD_VOL_CTL,
304 .mask = 0x3f,
305 .shift = 0,
306 },{
307 .v = {
308 .id = V4L2_CID_AUDIO_BALANCE,
309 .name = "Balance",
310 .minimum = 0,
311 .maximum = 0x7f,
312 .step = 1,
313 .default_value = 0x40,
314 .type = V4L2_CTRL_TYPE_INTEGER,
315 },
316 .reg = AUD_BAL_CTL,
317 .sreg = SHADOW_AUD_BAL_CTL,
318 .mask = 0x7f,
319 .shift = 0,
320 }
321};
Adrian Bunk408b6642005-05-01 08:59:29 -0700322static const int CX8800_CTLS = ARRAY_SIZE(cx8800_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Michael Krufky38a27132006-06-26 23:42:39 -0300324const u32 cx88_user_ctrls[] = {
325 V4L2_CID_USER_CLASS,
326 V4L2_CID_BRIGHTNESS,
327 V4L2_CID_CONTRAST,
328 V4L2_CID_SATURATION,
329 V4L2_CID_HUE,
330 V4L2_CID_AUDIO_VOLUME,
331 V4L2_CID_AUDIO_BALANCE,
332 V4L2_CID_AUDIO_MUTE,
333 0
334};
335EXPORT_SYMBOL(cx88_user_ctrls);
336
337static const u32 *ctrl_classes[] = {
338 cx88_user_ctrls,
339 NULL
340};
341
342int cx8800_ctrl_query(struct v4l2_queryctrl *qctrl)
343{
344 int i;
345
346 if (qctrl->id < V4L2_CID_BASE ||
347 qctrl->id >= V4L2_CID_LASTP1)
348 return -EINVAL;
349 for (i = 0; i < CX8800_CTLS; i++)
350 if (cx8800_ctls[i].v.id == qctrl->id)
351 break;
352 if (i == CX8800_CTLS) {
353 *qctrl = no_ctl;
354 return 0;
355 }
356 *qctrl = cx8800_ctls[i].v;
357 return 0;
358}
359EXPORT_SYMBOL(cx8800_ctrl_query);
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/* ------------------------------------------------------------------- */
362/* resource management */
363
364static int res_get(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bit)
365{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700366 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (fh->resources & bit)
368 /* have it already allocated */
369 return 1;
370
371 /* is it free? */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200372 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (dev->resources & bit) {
374 /* no, someone else uses it */
Ingo Molnar3593cab2006-02-07 06:49:14 -0200375 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377 }
378 /* it's free, grab it */
379 fh->resources |= bit;
380 dev->resources |= bit;
381 dprintk(1,"res: get %d\n",bit);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200382 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 1;
384}
385
386static
387int res_check(struct cx8800_fh *fh, unsigned int bit)
388{
389 return (fh->resources & bit);
390}
391
392static
393int res_locked(struct cx8800_dev *dev, unsigned int bit)
394{
395 return (dev->resources & bit);
396}
397
398static
399void res_free(struct cx8800_dev *dev, struct cx8800_fh *fh, unsigned int bits)
400{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700401 struct cx88_core *core = dev->core;
Eric Sesterhennae246012006-03-13 13:17:11 -0300402 BUG_ON((fh->resources & bits) != bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Ingo Molnar3593cab2006-02-07 06:49:14 -0200404 mutex_lock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 fh->resources &= ~bits;
406 dev->resources &= ~bits;
407 dprintk(1,"res: put %d\n",bits);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200408 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
411/* ------------------------------------------------------------------ */
412
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700413/* static int video_mux(struct cx8800_dev *dev, unsigned int input) */
414static int video_mux(struct cx88_core *core, unsigned int input)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700416 /* struct cx88_core *core = dev->core; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n",
419 input, INPUT(input)->vmux,
420 INPUT(input)->gpio0,INPUT(input)->gpio1,
421 INPUT(input)->gpio2,INPUT(input)->gpio3);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700422 core->input = input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 cx_andor(MO_INPUT_FORMAT, 0x03 << 14, INPUT(input)->vmux << 14);
424 cx_write(MO_GP3_IO, INPUT(input)->gpio3);
425 cx_write(MO_GP0_IO, INPUT(input)->gpio0);
426 cx_write(MO_GP1_IO, INPUT(input)->gpio1);
427 cx_write(MO_GP2_IO, INPUT(input)->gpio2);
428
429 switch (INPUT(input)->type) {
430 case CX88_VMUX_SVIDEO:
431 cx_set(MO_AFECFG_IO, 0x00000001);
432 cx_set(MO_INPUT_FORMAT, 0x00010010);
433 cx_set(MO_FILTER_EVEN, 0x00002020);
434 cx_set(MO_FILTER_ODD, 0x00002020);
435 break;
436 default:
437 cx_clear(MO_AFECFG_IO, 0x00000001);
438 cx_clear(MO_INPUT_FORMAT, 0x00010010);
439 cx_clear(MO_FILTER_EVEN, 0x00002020);
440 cx_clear(MO_FILTER_ODD, 0x00002020);
441 break;
442 }
Michael Krufkyf24546a2006-10-16 16:51:11 -0300443
444 if (cx88_boards[core->board].mpeg & CX88_MPEG_BLACKBIRD) {
445 /* sets sound input from external adc */
446 if (INPUT(input)->extadc)
447 cx_set(AUD_CTL, EN_I2SIN_ENABLE);
448 else
449 cx_clear(AUD_CTL, EN_I2SIN_ENABLE);
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0;
452}
453
454/* ------------------------------------------------------------------ */
455
456static int start_video_dma(struct cx8800_dev *dev,
457 struct cx88_dmaqueue *q,
458 struct cx88_buffer *buf)
459{
460 struct cx88_core *core = dev->core;
461
462 /* setup fifo + format */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700463 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH21],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 buf->bpl, buf->risc.dma);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700465 cx88_set_scale(core, buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 cx_write(MO_COLOR_CTRL, buf->fmt->cxformat | ColorFormatGamma);
467
468 /* reset counter */
469 cx_write(MO_VIDY_GPCNTRL,GP_COUNT_CONTROL_RESET);
470 q->count = 1;
471
472 /* enable irqs */
473 cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x01);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700474
475 /* Enables corresponding bits at PCI_INT_STAT:
476 bits 0 to 4: video, audio, transport stream, VIP, Host
477 bit 7: timer
478 bits 8 and 9: DMA complete for: SRC, DST
479 bits 10 and 11: BERR signal asserted for RISC: RD, WR
480 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
481 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 cx_set(MO_VID_INTMSK, 0x0f0011);
483
484 /* enable capture */
485 cx_set(VID_CAPTURE_CONTROL,0x06);
486
487 /* start dma */
488 cx_set(MO_DEV_CNTRL2, (1<<5));
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700489 cx_set(MO_VID_DMACNTRL, 0x11); /* Planar Y and packed FIFO and RISC enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 return 0;
492}
493
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300494#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static int stop_video_dma(struct cx8800_dev *dev)
496{
497 struct cx88_core *core = dev->core;
498
499 /* stop dma */
500 cx_clear(MO_VID_DMACNTRL, 0x11);
501
502 /* disable capture */
503 cx_clear(VID_CAPTURE_CONTROL,0x06);
504
505 /* disable irqs */
506 cx_clear(MO_PCI_INTMSK, 0x000001);
507 cx_clear(MO_VID_INTMSK, 0x0f0011);
508 return 0;
509}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -0300510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512static int restart_video_queue(struct cx8800_dev *dev,
513 struct cx88_dmaqueue *q)
514{
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700515 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct cx88_buffer *buf, *prev;
517 struct list_head *item;
518
519 if (!list_empty(&q->active)) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800520 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
522 buf, buf->vb.i);
523 start_video_dma(dev, q, buf);
524 list_for_each(item,&q->active) {
525 buf = list_entry(item, struct cx88_buffer, vb.queue);
526 buf->count = q->count++;
527 }
528 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
529 return 0;
530 }
531
532 prev = NULL;
533 for (;;) {
534 if (list_empty(&q->queued))
535 return 0;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800536 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (NULL == prev) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700538 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 start_video_dma(dev, q, buf);
540 buf->vb.state = STATE_ACTIVE;
541 buf->count = q->count++;
542 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
543 dprintk(2,"[%p/%d] restart_queue - first active\n",
544 buf,buf->vb.i);
545
546 } else if (prev->vb.width == buf->vb.width &&
547 prev->vb.height == buf->vb.height &&
548 prev->fmt == buf->fmt) {
Akinobu Mita179e0912006-06-26 00:24:41 -0700549 list_move_tail(&buf->vb.queue, &q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 buf->vb.state = STATE_ACTIVE;
551 buf->count = q->count++;
552 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
553 dprintk(2,"[%p/%d] restart_queue - move to active\n",
554 buf,buf->vb.i);
555 } else {
556 return 0;
557 }
558 prev = buf;
559 }
560}
561
562/* ------------------------------------------------------------------ */
563
564static int
565buffer_setup(struct videobuf_queue *q, unsigned int *count, unsigned int *size)
566{
567 struct cx8800_fh *fh = q->priv_data;
568
569 *size = fh->fmt->depth*fh->width*fh->height >> 3;
570 if (0 == *count)
571 *count = 32;
572 while (*size * *count > vid_limit * 1024 * 1024)
573 (*count)--;
574 return 0;
575}
576
577static int
578buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
579 enum v4l2_field field)
580{
581 struct cx8800_fh *fh = q->priv_data;
582 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700583 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
585 int rc, init_buffer = 0;
586
587 BUG_ON(NULL == fh->fmt);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700588 if (fh->width < 48 || fh->width > norm_maxw(core->tvnorm) ||
589 fh->height < 32 || fh->height > norm_maxh(core->tvnorm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return -EINVAL;
591 buf->vb.size = (fh->width * fh->height * fh->fmt->depth) >> 3;
592 if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size)
593 return -EINVAL;
594
595 if (buf->fmt != fh->fmt ||
596 buf->vb.width != fh->width ||
597 buf->vb.height != fh->height ||
598 buf->vb.field != field) {
599 buf->fmt = fh->fmt;
600 buf->vb.width = fh->width;
601 buf->vb.height = fh->height;
602 buf->vb.field = field;
603 init_buffer = 1;
604 }
605
606 if (STATE_NEEDS_INIT == buf->vb.state) {
607 init_buffer = 1;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300608 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 goto fail;
610 }
611
612 if (init_buffer) {
613 buf->bpl = buf->vb.width * buf->fmt->depth >> 3;
614 switch (buf->vb.field) {
615 case V4L2_FIELD_TOP:
616 cx88_risc_buffer(dev->pci, &buf->risc,
617 buf->vb.dma.sglist, 0, UNSET,
618 buf->bpl, 0, buf->vb.height);
619 break;
620 case V4L2_FIELD_BOTTOM:
621 cx88_risc_buffer(dev->pci, &buf->risc,
622 buf->vb.dma.sglist, UNSET, 0,
623 buf->bpl, 0, buf->vb.height);
624 break;
625 case V4L2_FIELD_INTERLACED:
626 cx88_risc_buffer(dev->pci, &buf->risc,
627 buf->vb.dma.sglist, 0, buf->bpl,
628 buf->bpl, buf->bpl,
629 buf->vb.height >> 1);
630 break;
631 case V4L2_FIELD_SEQ_TB:
632 cx88_risc_buffer(dev->pci, &buf->risc,
633 buf->vb.dma.sglist,
634 0, buf->bpl * (buf->vb.height >> 1),
635 buf->bpl, 0,
636 buf->vb.height >> 1);
637 break;
638 case V4L2_FIELD_SEQ_BT:
639 cx88_risc_buffer(dev->pci, &buf->risc,
640 buf->vb.dma.sglist,
641 buf->bpl * (buf->vb.height >> 1), 0,
642 buf->bpl, 0,
643 buf->vb.height >> 1);
644 break;
645 default:
646 BUG();
647 }
648 }
649 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
650 buf, buf->vb.i,
651 fh->width, fh->height, fh->fmt->depth, fh->fmt->name,
652 (unsigned long)buf->risc.dma);
653
654 buf->vb.state = STATE_PREPARED;
655 return 0;
656
657 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300658 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return rc;
660}
661
662static void
663buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
664{
665 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
666 struct cx88_buffer *prev;
667 struct cx8800_fh *fh = vq->priv_data;
668 struct cx8800_dev *dev = fh->dev;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700669 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct cx88_dmaqueue *q = &dev->vidq;
671
672 /* add jump to stopper */
673 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
674 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
675
676 if (!list_empty(&q->queued)) {
677 list_add_tail(&buf->vb.queue,&q->queued);
678 buf->vb.state = STATE_QUEUED;
679 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
680 buf, buf->vb.i);
681
682 } else if (list_empty(&q->active)) {
683 list_add_tail(&buf->vb.queue,&q->active);
684 start_video_dma(dev, q, buf);
685 buf->vb.state = STATE_ACTIVE;
686 buf->count = q->count++;
687 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
688 dprintk(2,"[%p/%d] buffer_queue - first active\n",
689 buf, buf->vb.i);
690
691 } else {
692 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
693 if (prev->vb.width == buf->vb.width &&
694 prev->vb.height == buf->vb.height &&
695 prev->fmt == buf->fmt) {
696 list_add_tail(&buf->vb.queue,&q->active);
697 buf->vb.state = STATE_ACTIVE;
698 buf->count = q->count++;
699 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
700 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
701 buf, buf->vb.i);
702
703 } else {
704 list_add_tail(&buf->vb.queue,&q->queued);
705 buf->vb.state = STATE_QUEUED;
706 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
707 buf, buf->vb.i);
708 }
709 }
710}
711
712static void buffer_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
713{
714 struct cx88_buffer *buf = container_of(vb,struct cx88_buffer,vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300716 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Adrian Bunk408b6642005-05-01 08:59:29 -0700719static struct videobuf_queue_ops cx8800_video_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 .buf_setup = buffer_setup,
721 .buf_prepare = buffer_prepare,
722 .buf_queue = buffer_queue,
723 .buf_release = buffer_release,
724};
725
726/* ------------------------------------------------------------------ */
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729/* ------------------------------------------------------------------ */
730
731static struct videobuf_queue* get_queue(struct cx8800_fh *fh)
732{
733 switch (fh->type) {
734 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
735 return &fh->vidq;
736 case V4L2_BUF_TYPE_VBI_CAPTURE:
737 return &fh->vbiq;
738 default:
739 BUG();
740 return NULL;
741 }
742}
743
744static int get_ressource(struct cx8800_fh *fh)
745{
746 switch (fh->type) {
747 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
748 return RESOURCE_VIDEO;
749 case V4L2_BUF_TYPE_VBI_CAPTURE:
750 return RESOURCE_VBI;
751 default:
752 BUG();
753 return 0;
754 }
755}
756
757static int video_open(struct inode *inode, struct file *file)
758{
759 int minor = iminor(inode);
760 struct cx8800_dev *h,*dev = NULL;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700761 struct cx88_core *core;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct cx8800_fh *fh;
763 struct list_head *list;
764 enum v4l2_buf_type type = 0;
765 int radio = 0;
766
767 list_for_each(list,&cx8800_devlist) {
768 h = list_entry(list, struct cx8800_dev, devlist);
769 if (h->video_dev->minor == minor) {
770 dev = h;
771 type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
772 }
773 if (h->vbi_dev->minor == minor) {
774 dev = h;
775 type = V4L2_BUF_TYPE_VBI_CAPTURE;
776 }
777 if (h->radio_dev &&
778 h->radio_dev->minor == minor) {
779 radio = 1;
780 dev = h;
781 }
782 }
783 if (NULL == dev)
784 return -ENODEV;
785
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700786 core = dev->core;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 dprintk(1,"open minor=%d radio=%d type=%s\n",
789 minor,radio,v4l2_type_names[type]);
790
791 /* allocate + initialize per filehandle data */
Panagiotis Issaris74081872006-01-11 19:40:56 -0200792 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (NULL == fh)
794 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 file->private_data = fh;
796 fh->dev = dev;
797 fh->radio = radio;
798 fh->type = type;
799 fh->width = 320;
800 fh->height = 240;
801 fh->fmt = format_by_fourcc(V4L2_PIX_FMT_BGR24);
802
803 videobuf_queue_init(&fh->vidq, &cx8800_video_qops,
804 dev->pci, &dev->slock,
805 V4L2_BUF_TYPE_VIDEO_CAPTURE,
806 V4L2_FIELD_INTERLACED,
807 sizeof(struct cx88_buffer),
808 fh);
809 videobuf_queue_init(&fh->vbiq, &cx8800_vbi_qops,
810 dev->pci, &dev->slock,
811 V4L2_BUF_TYPE_VBI_CAPTURE,
812 V4L2_FIELD_SEQ_TB,
813 sizeof(struct cx88_buffer),
814 fh);
815
816 if (fh->radio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int board = core->board;
818 dprintk(1,"video_open: setting radio device\n");
Mauro Carvalho Chehabfd3113e2005-07-31 22:34:43 -0700819 cx_write(MO_GP3_IO, cx88_boards[board].radio.gpio3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 cx_write(MO_GP0_IO, cx88_boards[board].radio.gpio0);
821 cx_write(MO_GP1_IO, cx88_boards[board].radio.gpio1);
822 cx_write(MO_GP2_IO, cx88_boards[board].radio.gpio2);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700823 core->tvaudio = WW_FM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 cx88_set_tvaudio(core);
825 cx88_set_stereo(core,V4L2_TUNER_MODE_STEREO,1);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700826 cx88_call_i2c_clients(core,AUDC_SET_RADIO,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
832static ssize_t
Peter Hagervallf9e7a022005-11-08 21:36:29 -0800833video_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 struct cx8800_fh *fh = file->private_data;
836
837 switch (fh->type) {
838 case V4L2_BUF_TYPE_VIDEO_CAPTURE:
839 if (res_locked(fh->dev,RESOURCE_VIDEO))
840 return -EBUSY;
841 return videobuf_read_one(&fh->vidq, data, count, ppos,
842 file->f_flags & O_NONBLOCK);
843 case V4L2_BUF_TYPE_VBI_CAPTURE:
844 if (!res_get(fh->dev,fh,RESOURCE_VBI))
845 return -EBUSY;
846 return videobuf_read_stream(&fh->vbiq, data, count, ppos, 1,
847 file->f_flags & O_NONBLOCK);
848 default:
849 BUG();
850 return 0;
851 }
852}
853
854static unsigned int
855video_poll(struct file *file, struct poll_table_struct *wait)
856{
857 struct cx8800_fh *fh = file->private_data;
858 struct cx88_buffer *buf;
859
860 if (V4L2_BUF_TYPE_VBI_CAPTURE == fh->type) {
861 if (!res_get(fh->dev,fh,RESOURCE_VBI))
862 return POLLERR;
863 return videobuf_poll_stream(file, &fh->vbiq, wait);
864 }
865
866 if (res_check(fh,RESOURCE_VIDEO)) {
867 /* streaming capture */
868 if (list_empty(&fh->vidq.stream))
869 return POLLERR;
870 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream);
871 } else {
872 /* read() capture */
873 buf = (struct cx88_buffer*)fh->vidq.read_buf;
874 if (NULL == buf)
875 return POLLERR;
876 }
877 poll_wait(file, &buf->vb.done, wait);
878 if (buf->vb.state == STATE_DONE ||
879 buf->vb.state == STATE_ERROR)
880 return POLLIN|POLLRDNORM;
881 return 0;
882}
883
884static int video_release(struct inode *inode, struct file *file)
885{
886 struct cx8800_fh *fh = file->private_data;
887 struct cx8800_dev *dev = fh->dev;
888
889 /* turn off overlay */
890 if (res_check(fh, RESOURCE_OVERLAY)) {
891 /* FIXME */
892 res_free(dev,fh,RESOURCE_OVERLAY);
893 }
894
895 /* stop video capture */
896 if (res_check(fh, RESOURCE_VIDEO)) {
897 videobuf_queue_cancel(&fh->vidq);
898 res_free(dev,fh,RESOURCE_VIDEO);
899 }
900 if (fh->vidq.read_buf) {
901 buffer_release(&fh->vidq,fh->vidq.read_buf);
902 kfree(fh->vidq.read_buf);
903 }
904
905 /* stop vbi capture */
906 if (res_check(fh, RESOURCE_VBI)) {
907 if (fh->vbiq.streaming)
908 videobuf_streamoff(&fh->vbiq);
909 if (fh->vbiq.reading)
910 videobuf_read_stop(&fh->vbiq);
911 res_free(dev,fh,RESOURCE_VBI);
912 }
913
914 videobuf_mmap_free(&fh->vidq);
915 videobuf_mmap_free(&fh->vbiq);
916 file->private_data = NULL;
917 kfree(fh);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700918
919 cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return 0;
922}
923
924static int
925video_mmap(struct file *file, struct vm_area_struct * vma)
926{
927 struct cx8800_fh *fh = file->private_data;
928
929 return videobuf_mmap_mapper(get_queue(fh), vma);
930}
931
932/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300933/* VIDEO CTRL IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300935static int vidioc_g_ctrl (struct file *file, void *priv,
936 struct v4l2_control *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300938 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
939 struct cx88_ctrl *c = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 u32 value;
941 int i;
942
943 for (i = 0; i < CX8800_CTLS; i++)
944 if (cx8800_ctls[i].v.id == ctl->id)
945 c = &cx8800_ctls[i];
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300946 if (unlikely(NULL == c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return -EINVAL;
948
949 value = c->sreg ? cx_sread(c->sreg) : cx_read(c->reg);
950 switch (ctl->id) {
951 case V4L2_CID_AUDIO_BALANCE:
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300952 ctl->value = ((value & 0x7f) < 0x40) ? ((value & 0x7f) + 0x40)
953 : (0x7f - (value & 0x7f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 break;
955 case V4L2_CID_AUDIO_VOLUME:
956 ctl->value = 0x3f - (value & 0x3f);
957 break;
958 default:
959 ctl->value = ((value + (c->off << c->shift)) & c->mask) >> c->shift;
960 break;
961 }
Ian Pickworth6457af52006-02-27 00:09:45 -0300962 dprintk(1,"get_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
963 ctl->id, c->v.name, ctl->value, c->reg,
964 value,c->mask, c->sreg ? " [shadowed]" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
966}
967
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700968static int set_control(struct cx88_core *core, struct v4l2_control *ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct cx88_ctrl *c = NULL;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200971 u32 value,mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 int i;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300973
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200974 for (i = 0; i < CX8800_CTLS; i++) {
975 if (cx8800_ctls[i].v.id == ctl->id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 c = &cx8800_ctls[i];
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200977 }
978 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -0300979 if (unlikely(NULL == c))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -EINVAL;
981
982 if (ctl->value < c->v.minimum)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700983 ctl->value = c->v.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (ctl->value > c->v.maximum)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700985 ctl->value = c->v.maximum;
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200986 mask=c->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 switch (ctl->id) {
988 case V4L2_CID_AUDIO_BALANCE:
Marcin Rudowski9f9c9072006-03-12 00:03:47 -0300989 value = (ctl->value < 0x40) ? (0x7f - ctl->value) : (ctl->value - 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 break;
991 case V4L2_CID_AUDIO_VOLUME:
992 value = 0x3f - (ctl->value & 0x3f);
993 break;
994 case V4L2_CID_SATURATION:
995 /* special v_sat handling */
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -0200996
997 value = ((ctl->value - c->off) << c->shift) & c->mask;
998
999 if (core->tvnorm->id & V4L2_STD_SECAM) {
1000 /* For SECAM, both U and V sat should be equal */
1001 value=value<<8|value;
1002 } else {
1003 /* Keeps U Saturation proportional to V Sat */
1004 value=(value*0x5a)/0x7f<<8|value;
1005 }
1006 mask=0xffff;
1007 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 default:
1009 value = ((ctl->value - c->off) << c->shift) & c->mask;
1010 break;
1011 }
Ian Pickworth6457af52006-02-27 00:09:45 -03001012 dprintk(1,"set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
1013 ctl->id, c->v.name, ctl->value, c->reg, value,
1014 mask, c->sreg ? " [shadowed]" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (c->sreg) {
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001016 cx_sandor(c->sreg, c->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 } else {
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001018 cx_andor(c->reg, mask, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 return 0;
1021}
1022
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001023static void init_controls(struct cx88_core *core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001025 struct v4l2_control ctrl;
1026 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001028 for (i = 0; i < CX8800_CTLS; i++) {
1029 ctrl.id=cx8800_ctls[i].v.id;
Marcin Rudowski9f9c9072006-03-12 00:03:47 -03001030 ctrl.value=cx8800_ctls[i].v.default_value;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001031
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001032 set_control(core, &ctrl);
1033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036/* ------------------------------------------------------------------ */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001037/* VIDEO IOCTLS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001039static int vidioc_g_fmt_cap (struct file *file, void *priv,
1040 struct v4l2_format *f)
1041{
1042 struct cx8800_fh *fh = priv;
1043
1044 f->fmt.pix.width = fh->width;
1045 f->fmt.pix.height = fh->height;
1046 f->fmt.pix.field = fh->vidq.field;
1047 f->fmt.pix.pixelformat = fh->fmt->fourcc;
1048 f->fmt.pix.bytesperline =
1049 (f->fmt.pix.width * fh->fmt->depth) >> 3;
1050 f->fmt.pix.sizeimage =
1051 f->fmt.pix.height * f->fmt.pix.bytesperline;
1052 return 0;
1053}
1054
1055static int vidioc_try_fmt_cap (struct file *file, void *priv,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct v4l2_format *f)
1057{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001058 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1059 struct cx8800_fmt *fmt;
1060 enum v4l2_field field;
1061 unsigned int maxw, maxh;
1062
1063 fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1064 if (NULL == fmt)
1065 return -EINVAL;
1066
1067 field = f->fmt.pix.field;
1068 maxw = norm_maxw(core->tvnorm);
1069 maxh = norm_maxh(core->tvnorm);
1070
1071 if (V4L2_FIELD_ANY == field) {
1072 field = (f->fmt.pix.height > maxh/2)
1073 ? V4L2_FIELD_INTERLACED
1074 : V4L2_FIELD_BOTTOM;
1075 }
1076
1077 switch (field) {
1078 case V4L2_FIELD_TOP:
1079 case V4L2_FIELD_BOTTOM:
1080 maxh = maxh / 2;
1081 break;
1082 case V4L2_FIELD_INTERLACED:
1083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 default:
1085 return -EINVAL;
1086 }
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001087
1088 f->fmt.pix.field = field;
1089 if (f->fmt.pix.height < 32)
1090 f->fmt.pix.height = 32;
1091 if (f->fmt.pix.height > maxh)
1092 f->fmt.pix.height = maxh;
1093 if (f->fmt.pix.width < 48)
1094 f->fmt.pix.width = 48;
1095 if (f->fmt.pix.width > maxw)
1096 f->fmt.pix.width = maxw;
1097 f->fmt.pix.width &= ~0x03;
1098 f->fmt.pix.bytesperline =
1099 (f->fmt.pix.width * fmt->depth) >> 3;
1100 f->fmt.pix.sizeimage =
1101 f->fmt.pix.height * f->fmt.pix.bytesperline;
1102
1103 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001106static int vidioc_s_fmt_cap (struct file *file, void *priv,
1107 struct v4l2_format *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001109 struct cx8800_fh *fh = priv;
1110 int err = vidioc_try_fmt_cap (file,priv,f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001111
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001112 if (0 != err)
1113 return err;
1114 fh->fmt = format_by_fourcc(f->fmt.pix.pixelformat);
1115 fh->width = f->fmt.pix.width;
1116 fh->height = f->fmt.pix.height;
1117 fh->vidq.field = f->fmt.pix.field;
1118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001121static int vidioc_querycap (struct file *file, void *priv,
1122 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001124 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001127 strcpy(cap->driver, "cx8800");
1128 strlcpy(cap->card, cx88_boards[core->board].name,
1129 sizeof(cap->card));
1130 sprintf(cap->bus_info,"PCI:%s",pci_name(dev->pci));
1131 cap->version = CX88_VERSION_CODE;
1132 cap->capabilities =
1133 V4L2_CAP_VIDEO_CAPTURE |
1134 V4L2_CAP_READWRITE |
1135 V4L2_CAP_STREAMING |
1136 V4L2_CAP_VBI_CAPTURE;
1137 if (UNSET != core->tuner_type)
1138 cap->capabilities |= V4L2_CAP_TUNER;
1139 return 0;
1140}
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001141
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001142static int vidioc_enum_fmt_cap (struct file *file, void *priv,
1143 struct v4l2_fmtdesc *f)
1144{
1145 if (unlikely(f->index >= ARRAY_SIZE(formats)))
1146 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001148 strlcpy(f->description,formats[f->index].name,sizeof(f->description));
1149 f->pixelformat = formats[f->index].fourcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001151 return 0;
1152}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Mauro Carvalho Chehab0dfa9ab2006-08-08 09:10:10 -03001154#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001155static int vidiocgmbuf (struct file *file, void *priv, struct video_mbuf *mbuf)
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001156{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001157 struct cx8800_fh *fh = priv;
1158 struct videobuf_queue *q;
1159 struct v4l2_requestbuffers req;
1160 unsigned int i;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001161 int err;
1162
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001163 q = get_queue(fh);
1164 memset(&req,0,sizeof(req));
1165 req.type = q->type;
1166 req.count = 8;
1167 req.memory = V4L2_MEMORY_MMAP;
1168 err = videobuf_reqbufs(q,&req);
1169 if (err < 0)
1170 return err;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -03001171
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001172 mbuf->frames = req.count;
1173 mbuf->size = 0;
1174 for (i = 0; i < mbuf->frames; i++) {
1175 mbuf->offsets[i] = q->bufs[i]->boff;
1176 mbuf->size += q->bufs[i]->bsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 return 0;
1179}
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001182
1183static int vidioc_reqbufs (struct file *file, void *priv, struct v4l2_requestbuffers *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001185 struct cx8800_fh *fh = priv;
1186 return (videobuf_reqbufs(get_queue(fh), p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001189static int vidioc_querybuf (struct file *file, void *priv, struct v4l2_buffer *p)
1190{
1191 struct cx8800_fh *fh = priv;
1192 return (videobuf_querybuf(get_queue(fh), p));
1193}
1194
1195static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1196{
1197 struct cx8800_fh *fh = priv;
1198 return (videobuf_qbuf(get_queue(fh), p));
1199}
1200
1201static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *p)
1202{
1203 struct cx8800_fh *fh = priv;
1204 return (videobuf_dqbuf(get_queue(fh), p,
1205 file->f_flags & O_NONBLOCK));
1206}
1207
1208static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
1209{
1210 struct cx8800_fh *fh = priv;
1211 struct cx8800_dev *dev = fh->dev;
1212
1213 if (unlikely(fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE))
1214 return -EINVAL;
1215 if (unlikely(i != fh->type))
1216 return -EINVAL;
1217
1218 if (unlikely(!res_get(dev,fh,get_ressource(fh))))
1219 return -EBUSY;
1220 return videobuf_streamon(get_queue(fh));
1221}
1222
1223static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
1224{
1225 struct cx8800_fh *fh = priv;
1226 struct cx8800_dev *dev = fh->dev;
1227 int err, res;
1228
1229 if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1230 return -EINVAL;
1231 if (i != fh->type)
1232 return -EINVAL;
1233
1234 res = get_ressource(fh);
1235 err = videobuf_streamoff(get_queue(fh));
1236 if (err < 0)
1237 return err;
1238 res_free(dev,fh,res);
1239 return 0;
1240}
1241
1242static int vidioc_s_std (struct file *file, void *priv, unsigned int i)
1243{
1244 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1245
1246 mutex_lock(&core->lock);
1247 cx88_set_tvnorm(core,&tvnorms[i]);
1248 mutex_unlock(&core->lock);
1249 return 0;
1250}
1251
1252/* only one input in this sample driver */
1253static int vidioc_enum_input (struct file *file, void *priv,
1254 struct v4l2_input *i)
1255{
1256 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1257
1258 static const char *iname[] = {
1259 [ CX88_VMUX_COMPOSITE1 ] = "Composite1",
1260 [ CX88_VMUX_COMPOSITE2 ] = "Composite2",
1261 [ CX88_VMUX_COMPOSITE3 ] = "Composite3",
1262 [ CX88_VMUX_COMPOSITE4 ] = "Composite4",
1263 [ CX88_VMUX_SVIDEO ] = "S-Video",
1264 [ CX88_VMUX_TELEVISION ] = "Television",
1265 [ CX88_VMUX_CABLE ] = "Cable TV",
1266 [ CX88_VMUX_DVB ] = "DVB",
1267 [ CX88_VMUX_DEBUG ] = "for debug only",
1268 };
1269 unsigned int n;
1270
1271 n = i->index;
1272 if (n >= 4)
1273 return -EINVAL;
1274 if (0 == INPUT(n)->type)
1275 return -EINVAL;
1276 memset(i,0,sizeof(*i));
1277 i->index = n;
1278 i->type = V4L2_INPUT_TYPE_CAMERA;
1279 strcpy(i->name,iname[INPUT(n)->type]);
1280 if ((CX88_VMUX_TELEVISION == INPUT(n)->type) ||
1281 (CX88_VMUX_CABLE == INPUT(n)->type))
1282 i->type = V4L2_INPUT_TYPE_TUNER;
1283 for (n = 0; n < ARRAY_SIZE(tvnorms); n++)
1284 i->std |= tvnorms[n].id;
1285 return 0;
1286}
1287
1288static int vidioc_g_input (struct file *file, void *priv, unsigned int *i)
1289{
1290 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1291
1292 *i = core->input;
1293 return 0;
1294}
1295
1296static int vidioc_s_input (struct file *file, void *priv, unsigned int i)
1297{
1298 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1299
1300 if (i >= 4)
1301 return -EINVAL;
1302
1303 mutex_lock(&core->lock);
1304 cx88_newstation(core);
1305 video_mux(core,i);
1306 mutex_unlock(&core->lock);
1307 return 0;
1308}
1309
1310
1311
1312static int vidioc_queryctrl (struct file *file, void *priv,
1313 struct v4l2_queryctrl *qctrl)
1314{
1315 qctrl->id = v4l2_ctrl_next(ctrl_classes, qctrl->id);
1316 if (unlikely(qctrl->id == 0))
1317 return -EINVAL;
1318 return cx8800_ctrl_query(qctrl);
1319}
1320
1321static int vidioc_s_ctrl (struct file *file, void *priv,
1322 struct v4l2_control *ctl)
1323{
1324 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1325
1326 return
1327 set_control(core,ctl);
1328}
1329
1330static int vidioc_g_tuner (struct file *file, void *priv,
1331 struct v4l2_tuner *t)
1332{
1333 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1334 u32 reg;
1335
1336 if (unlikely(UNSET == core->tuner_type))
1337 return -EINVAL;
1338
1339 strcpy(t->name, "Television");
1340 t->type = V4L2_TUNER_ANALOG_TV;
1341 t->capability = V4L2_TUNER_CAP_NORM;
1342 t->rangehigh = 0xffffffffUL;
1343
1344 cx88_get_stereo(core ,t);
1345 reg = cx_read(MO_DEVICE_STATUS);
1346 t->signal = (reg & (1<<5)) ? 0xffff : 0x0000;
1347 return 0;
1348}
1349
1350static int vidioc_s_tuner (struct file *file, void *priv,
1351 struct v4l2_tuner *t)
1352{
1353 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1354
1355 if (UNSET == core->tuner_type)
1356 return -EINVAL;
1357 if (0 != t->index)
1358 return -EINVAL;
1359
1360 cx88_set_stereo(core, t->audmode, 1);
1361 return 0;
1362}
1363
1364static int vidioc_g_frequency (struct file *file, void *priv,
1365 struct v4l2_frequency *f)
1366{
1367 struct cx8800_fh *fh = priv;
1368 struct cx88_core *core = fh->dev->core;
1369
1370 if (unlikely(UNSET == core->tuner_type))
1371 return -EINVAL;
1372
1373 /* f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; */
1374 f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV;
1375 f->frequency = core->freq;
1376
1377 cx88_call_i2c_clients(core,VIDIOC_G_FREQUENCY,f);
1378
1379 return 0;
1380}
1381
1382static int vidioc_s_frequency (struct file *file, void *priv,
1383 struct v4l2_frequency *f)
1384{
1385 struct cx8800_fh *fh = priv;
1386 struct cx88_core *core = fh->dev->core;
1387
1388 if (unlikely(UNSET == core->tuner_type))
1389 return -EINVAL;
1390 if (unlikely(f->tuner != 0))
1391 return -EINVAL;
1392 if (unlikely(0 == fh->radio && f->type != V4L2_TUNER_ANALOG_TV))
1393 return -EINVAL;
1394 if (unlikely(1 == fh->radio && f->type != V4L2_TUNER_RADIO))
1395 return -EINVAL;
1396 mutex_lock(&core->lock);
1397 core->freq = f->frequency;
1398 cx88_newstation(core);
1399 cx88_call_i2c_clients(core,VIDIOC_S_FREQUENCY,f);
1400
1401 /* When changing channels it is required to reset TVAUDIO */
1402 msleep (10);
1403 cx88_set_tvaudio(core);
1404
1405 mutex_unlock(&core->lock);
1406 return 0;
1407}
1408
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410/* ----------------------------------------------------------- */
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001411/* RADIO ESPECIFIC IOCTLS */
1412/* ----------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001414static int radio_querycap (struct file *file, void *priv,
1415 struct v4l2_capability *cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001417 struct cx8800_dev *dev = ((struct cx8800_fh *)priv)->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 struct cx88_core *core = dev->core;
1419
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001420 strcpy(cap->driver, "cx8800");
1421 strlcpy(cap->card, cx88_boards[core->board].name,
1422 sizeof(cap->card));
1423 sprintf(cap->bus_info,"PCI:%s", pci_name(dev->pci));
1424 cap->version = CX88_VERSION_CODE;
1425 cap->capabilities = V4L2_CAP_TUNER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return 0;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001427}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001429static int radio_g_tuner (struct file *file, void *priv,
1430 struct v4l2_tuner *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001432 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1433
1434 if (unlikely(t->index > 0))
1435 return -EINVAL;
1436
1437 strcpy(t->name, "Radio");
1438 t->type = V4L2_TUNER_RADIO;
1439
1440 cx88_call_i2c_clients(core,VIDIOC_G_TUNER,t);
1441 return 0;
1442}
1443
1444static int radio_enum_input (struct file *file, void *priv,
1445 struct v4l2_input *i)
1446{
1447 if (i->index != 0)
1448 return -EINVAL;
1449 strcpy(i->name,"Radio");
1450 i->type = V4L2_INPUT_TYPE_TUNER;
1451
1452 return 0;
1453}
1454
1455static int radio_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
1456{
1457 if (unlikely(a->index))
1458 return -EINVAL;
1459
1460 memset(a,0,sizeof(*a));
1461 strcpy(a->name,"Radio");
1462 return 0;
1463}
1464
1465/* FIXME: Should add a standard for radio */
1466
1467static int radio_s_tuner (struct file *file, void *priv,
1468 struct v4l2_tuner *t)
1469{
1470 struct cx88_core *core = ((struct cx8800_fh *)priv)->dev->core;
1471
1472 if (0 != t->index)
1473 return -EINVAL;
1474
1475 cx88_call_i2c_clients(core,VIDIOC_S_TUNER,t);
1476
1477 return 0;
1478}
1479
1480static int radio_s_audio (struct file *file, void *fh,
1481 struct v4l2_audio *a)
1482{
1483 return 0;
1484}
1485
1486static int radio_s_input (struct file *file, void *fh, unsigned int i)
1487{
1488 return 0;
1489}
1490
1491static int radio_queryctrl (struct file *file, void *priv,
1492 struct v4l2_queryctrl *c)
1493{
1494 int i;
1495
1496 if (c->id < V4L2_CID_BASE ||
1497 c->id >= V4L2_CID_LASTP1)
1498 return -EINVAL;
1499 if (c->id == V4L2_CID_AUDIO_MUTE) {
1500 for (i = 0; i < CX8800_CTLS; i++)
1501 if (cx8800_ctls[i].v.id == c->id)
1502 break;
1503 *c = cx8800_ctls[i].v;
1504 } else
1505 *c = no_ctl;
1506 return 0;
1507}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509/* ----------------------------------------------------------- */
1510
1511static void cx8800_vid_timeout(unsigned long data)
1512{
1513 struct cx8800_dev *dev = (struct cx8800_dev*)data;
1514 struct cx88_core *core = dev->core;
1515 struct cx88_dmaqueue *q = &dev->vidq;
1516 struct cx88_buffer *buf;
1517 unsigned long flags;
1518
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001519 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 cx_clear(MO_VID_DMACNTRL, 0x11);
1522 cx_clear(VID_CAPTURE_CONTROL, 0x06);
1523
1524 spin_lock_irqsave(&dev->slock,flags);
1525 while (!list_empty(&q->active)) {
1526 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
1527 list_del(&buf->vb.queue);
1528 buf->vb.state = STATE_ERROR;
1529 wake_up(&buf->vb.done);
1530 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core->name,
1531 buf, buf->vb.i, (unsigned long)buf->risc.dma);
1532 }
1533 restart_video_queue(dev,q);
1534 spin_unlock_irqrestore(&dev->slock,flags);
1535}
1536
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -07001537static char *cx88_vid_irqs[32] = {
1538 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1539 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1540 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1541 "y_sync", "u_sync", "v_sync", "vbi_sync",
1542 "opc_err", "par_err", "rip_err", "pci_abort",
1543};
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545static void cx8800_vid_irq(struct cx8800_dev *dev)
1546{
1547 struct cx88_core *core = dev->core;
1548 u32 status, mask, count;
1549
1550 status = cx_read(MO_VID_INTSTAT);
1551 mask = cx_read(MO_VID_INTMSK);
1552 if (0 == (status & mask))
1553 return;
1554 cx_write(MO_VID_INTSTAT, status);
1555 if (irq_debug || (status & mask & ~0xff))
1556 cx88_print_irqbits(core->name, "irq vid",
1557 cx88_vid_irqs, status, mask);
1558
1559 /* risc op code error */
1560 if (status & (1 << 16)) {
1561 printk(KERN_WARNING "%s/0: video risc op code error\n",core->name);
1562 cx_clear(MO_VID_DMACNTRL, 0x11);
1563 cx_clear(VID_CAPTURE_CONTROL, 0x06);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001564 cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566
1567 /* risc1 y */
1568 if (status & 0x01) {
1569 spin_lock(&dev->slock);
1570 count = cx_read(MO_VIDY_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001571 cx88_wakeup(core, &dev->vidq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 spin_unlock(&dev->slock);
1573 }
1574
1575 /* risc1 vbi */
1576 if (status & 0x08) {
1577 spin_lock(&dev->slock);
1578 count = cx_read(MO_VBI_GPCNT);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001579 cx88_wakeup(core, &dev->vbiq, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 spin_unlock(&dev->slock);
1581 }
1582
1583 /* risc2 y */
1584 if (status & 0x10) {
1585 dprintk(2,"stopper video\n");
1586 spin_lock(&dev->slock);
1587 restart_video_queue(dev,&dev->vidq);
1588 spin_unlock(&dev->slock);
1589 }
1590
1591 /* risc2 vbi */
1592 if (status & 0x80) {
1593 dprintk(2,"stopper vbi\n");
1594 spin_lock(&dev->slock);
1595 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1596 spin_unlock(&dev->slock);
1597 }
1598}
1599
David Howells7d12e782006-10-05 14:55:46 +01001600static irqreturn_t cx8800_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
1602 struct cx8800_dev *dev = dev_id;
1603 struct cx88_core *core = dev->core;
1604 u32 status;
1605 int loop, handled = 0;
1606
1607 for (loop = 0; loop < 10; loop++) {
1608 status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x01);
1609 if (0 == status)
1610 goto out;
1611 cx_write(MO_PCI_INTSTAT, status);
1612 handled = 1;
1613
1614 if (status & core->pci_irqmask)
1615 cx88_core_irq(core,status);
1616 if (status & 0x01)
1617 cx8800_vid_irq(dev);
1618 };
1619 if (10 == loop) {
1620 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
1621 core->name);
1622 cx_write(MO_PCI_INTMSK,0);
1623 }
1624
1625 out:
1626 return IRQ_RETVAL(handled);
1627}
1628
1629/* ----------------------------------------------------------- */
1630/* exported stuff */
1631
Arjan van de Venfa027c22007-02-12 00:55:33 -08001632static const struct file_operations video_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
1634 .owner = THIS_MODULE,
1635 .open = video_open,
1636 .release = video_release,
1637 .read = video_read,
1638 .poll = video_poll,
1639 .mmap = video_mmap,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001640 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02001641 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 .llseek = no_llseek,
1643};
1644
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001645static struct video_device cx8800_vbi_template;
Adrian Bunk408b6642005-05-01 08:59:29 -07001646static struct video_device cx8800_video_template =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001648 .name = "cx8800-video",
1649 .type = VID_TYPE_CAPTURE|VID_TYPE_TUNER|VID_TYPE_SCALES,
1650 .fops = &video_fops,
1651 .minor = -1,
1652 .vidioc_querycap = vidioc_querycap,
1653 .vidioc_enum_fmt_cap = vidioc_enum_fmt_cap,
1654 .vidioc_g_fmt_cap = vidioc_g_fmt_cap,
1655 .vidioc_try_fmt_cap = vidioc_try_fmt_cap,
1656 .vidioc_s_fmt_cap = vidioc_s_fmt_cap,
1657 .vidioc_g_fmt_vbi = cx8800_vbi_fmt,
1658 .vidioc_try_fmt_vbi = cx8800_vbi_fmt,
1659 .vidioc_s_fmt_vbi = cx8800_vbi_fmt,
1660 .vidioc_reqbufs = vidioc_reqbufs,
1661 .vidioc_querybuf = vidioc_querybuf,
1662 .vidioc_qbuf = vidioc_qbuf,
1663 .vidioc_dqbuf = vidioc_dqbuf,
1664 .vidioc_s_std = vidioc_s_std,
1665 .vidioc_enum_input = vidioc_enum_input,
1666 .vidioc_g_input = vidioc_g_input,
1667 .vidioc_s_input = vidioc_s_input,
1668 .vidioc_queryctrl = vidioc_queryctrl,
1669 .vidioc_g_ctrl = vidioc_g_ctrl,
1670 .vidioc_s_ctrl = vidioc_s_ctrl,
1671 .vidioc_streamon = vidioc_streamon,
1672 .vidioc_streamoff = vidioc_streamoff,
1673#ifdef CONFIG_VIDEO_V4L1_COMPAT
1674 .vidiocgmbuf = vidiocgmbuf,
1675#endif
1676 .vidioc_g_tuner = vidioc_g_tuner,
1677 .vidioc_s_tuner = vidioc_s_tuner,
1678 .vidioc_g_frequency = vidioc_g_frequency,
1679 .vidioc_s_frequency = vidioc_s_frequency,
1680 .tvnorms = tvnorms,
1681 .tvnormsize = ARRAY_SIZE(tvnorms),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682};
1683
Arjan van de Venfa027c22007-02-12 00:55:33 -08001684static const struct file_operations radio_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 .owner = THIS_MODULE,
1687 .open = video_open,
1688 .release = video_release,
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001689 .ioctl = video_ioctl2,
Arnd Bergmann0d0fbf82006-01-09 15:24:57 -02001690 .compat_ioctl = v4l_compat_ioctl32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 .llseek = no_llseek,
1692};
1693
Adrian Bunk408b6642005-05-01 08:59:29 -07001694static struct video_device cx8800_radio_template =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001696 .name = "cx8800-radio",
1697 .type = VID_TYPE_TUNER,
1698 .hardware = 0,
1699 .fops = &radio_fops,
1700 .minor = -1,
1701 .vidioc_querycap = radio_querycap,
1702 .vidioc_g_tuner = radio_g_tuner,
1703 .vidioc_enum_input = radio_enum_input,
1704 .vidioc_g_audio = radio_g_audio,
1705 .vidioc_s_tuner = radio_s_tuner,
1706 .vidioc_s_audio = radio_s_audio,
1707 .vidioc_s_input = radio_s_input,
1708 .vidioc_queryctrl = radio_queryctrl,
1709 .vidioc_g_ctrl = vidioc_g_ctrl,
1710 .vidioc_s_ctrl = vidioc_s_ctrl,
1711 .vidioc_g_frequency = vidioc_g_frequency,
1712 .vidioc_s_frequency = vidioc_s_frequency,
1713 .tvnorms = radionorms,
1714 .tvnormsize = ARRAY_SIZE(radionorms),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715};
1716
1717/* ----------------------------------------------------------- */
1718
1719static void cx8800_unregister_video(struct cx8800_dev *dev)
1720{
1721 if (dev->radio_dev) {
1722 if (-1 != dev->radio_dev->minor)
1723 video_unregister_device(dev->radio_dev);
1724 else
1725 video_device_release(dev->radio_dev);
1726 dev->radio_dev = NULL;
1727 }
1728 if (dev->vbi_dev) {
1729 if (-1 != dev->vbi_dev->minor)
1730 video_unregister_device(dev->vbi_dev);
1731 else
1732 video_device_release(dev->vbi_dev);
1733 dev->vbi_dev = NULL;
1734 }
1735 if (dev->video_dev) {
1736 if (-1 != dev->video_dev->minor)
1737 video_unregister_device(dev->video_dev);
1738 else
1739 video_device_release(dev->video_dev);
1740 dev->video_dev = NULL;
1741 }
1742}
1743
1744static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
1745 const struct pci_device_id *pci_id)
1746{
1747 struct cx8800_dev *dev;
1748 struct cx88_core *core;
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 int err;
1751
Panagiotis Issaris74081872006-01-11 19:40:56 -02001752 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (NULL == dev)
1754 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 /* pci init */
1757 dev->pci = pci_dev;
1758 if (pci_enable_device(pci_dev)) {
1759 err = -EIO;
1760 goto fail_free;
1761 }
1762 core = cx88_core_get(dev->pci);
1763 if (NULL == core) {
1764 err = -EINVAL;
1765 goto fail_free;
1766 }
1767 dev->core = core;
1768
1769 /* print pci info */
1770 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &dev->pci_rev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001771 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &dev->pci_lat);
1772 printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001773 "latency: %d, mmio: 0x%llx\n", core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -07001775 dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 pci_set_master(pci_dev);
1778 if (!pci_dma_supported(pci_dev,0xffffffff)) {
1779 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
1780 err = -EIO;
1781 goto fail_core;
1782 }
1783
Mauro Carvalho Chehab8d87cb92007-01-20 13:58:17 -03001784 /* Initialize VBI template */
1785 memcpy( &cx8800_vbi_template, &cx8800_video_template,
1786 sizeof(cx8800_vbi_template) );
1787 strcpy(cx8800_vbi_template.name,"cx8800-vbi");
1788 cx8800_vbi_template.type = VID_TYPE_TELETEXT|VID_TYPE_TUNER;
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 spin_lock_init(&dev->slock);
1792 core->tvnorm = tvnorms;
1793
1794 /* init video dma queues */
1795 INIT_LIST_HEAD(&dev->vidq.active);
1796 INIT_LIST_HEAD(&dev->vidq.queued);
1797 dev->vidq.timeout.function = cx8800_vid_timeout;
1798 dev->vidq.timeout.data = (unsigned long)dev;
1799 init_timer(&dev->vidq.timeout);
1800 cx88_risc_stopper(dev->pci,&dev->vidq.stopper,
1801 MO_VID_DMACNTRL,0x11,0x00);
1802
1803 /* init vbi dma queues */
1804 INIT_LIST_HEAD(&dev->vbiq.active);
1805 INIT_LIST_HEAD(&dev->vbiq.queued);
1806 dev->vbiq.timeout.function = cx8800_vbi_timeout;
1807 dev->vbiq.timeout.data = (unsigned long)dev;
1808 init_timer(&dev->vbiq.timeout);
1809 cx88_risc_stopper(dev->pci,&dev->vbiq.stopper,
1810 MO_VID_DMACNTRL,0x88,0x00);
1811
1812 /* get irq */
1813 err = request_irq(pci_dev->irq, cx8800_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -07001814 IRQF_SHARED | IRQF_DISABLED, core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (err < 0) {
1816 printk(KERN_ERR "%s: can't get IRQ %d\n",
1817 core->name,pci_dev->irq);
1818 goto fail_core;
1819 }
1820 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
1821
1822 /* load and configure helper modules */
1823 if (TUNER_ABSENT != core->tuner_type)
1824 request_module("tuner");
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001825
Steven Toth30579062006-09-25 12:43:42 -03001826 if (cx88_boards[ core->board ].audio_chip == AUDIO_CHIP_WM8775)
1827 request_module("wm8775");
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /* register v4l devices */
1830 dev->video_dev = cx88_vdev_init(core,dev->pci,
1831 &cx8800_video_template,"video");
1832 err = video_register_device(dev->video_dev,VFL_TYPE_GRABBER,
1833 video_nr[core->nr]);
1834 if (err < 0) {
1835 printk(KERN_INFO "%s: can't register video device\n",
1836 core->name);
1837 goto fail_unreg;
1838 }
1839 printk(KERN_INFO "%s/0: registered device video%d [v4l2]\n",
1840 core->name,dev->video_dev->minor & 0x1f);
1841
1842 dev->vbi_dev = cx88_vdev_init(core,dev->pci,&cx8800_vbi_template,"vbi");
1843 err = video_register_device(dev->vbi_dev,VFL_TYPE_VBI,
1844 vbi_nr[core->nr]);
1845 if (err < 0) {
1846 printk(KERN_INFO "%s/0: can't register vbi device\n",
1847 core->name);
1848 goto fail_unreg;
1849 }
1850 printk(KERN_INFO "%s/0: registered device vbi%d\n",
1851 core->name,dev->vbi_dev->minor & 0x1f);
1852
1853 if (core->has_radio) {
1854 dev->radio_dev = cx88_vdev_init(core,dev->pci,
1855 &cx8800_radio_template,"radio");
1856 err = video_register_device(dev->radio_dev,VFL_TYPE_RADIO,
1857 radio_nr[core->nr]);
1858 if (err < 0) {
1859 printk(KERN_INFO "%s/0: can't register radio device\n",
1860 core->name);
1861 goto fail_unreg;
1862 }
1863 printk(KERN_INFO "%s/0: registered device radio%d\n",
1864 core->name,dev->radio_dev->minor & 0x1f);
1865 }
1866
1867 /* everything worked */
1868 list_add_tail(&dev->devlist,&cx8800_devlist);
1869 pci_set_drvdata(pci_dev,dev);
1870
1871 /* initial device configuration */
Ingo Molnar3593cab2006-02-07 06:49:14 -02001872 mutex_lock(&core->lock);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001873 cx88_set_tvnorm(core,tvnorms);
Mauro Carvalho Chehab70f00042006-01-09 15:25:26 -02001874 init_controls(core);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001875 video_mux(core,0);
Ingo Molnar3593cab2006-02-07 06:49:14 -02001876 mutex_unlock(&core->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 /* start tvaudio thread */
1879 if (core->tuner_type != TUNER_ABSENT)
1880 core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
1881 return 0;
1882
1883fail_unreg:
1884 cx8800_unregister_video(dev);
1885 free_irq(pci_dev->irq, dev);
1886fail_core:
1887 cx88_core_put(core,dev->pci);
1888fail_free:
1889 kfree(dev);
1890 return err;
1891}
1892
1893static void __devexit cx8800_finidev(struct pci_dev *pci_dev)
1894{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -08001895 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001896 struct cx88_core *core = dev->core;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /* stop thread */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001899 if (core->kthread) {
1900 kthread_stop(core->kthread);
1901 core->kthread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001904 cx88_shutdown(core); /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 pci_disable_device(pci_dev);
1906
1907 /* unregister stuff */
1908
1909 free_irq(pci_dev->irq, dev);
1910 cx8800_unregister_video(dev);
1911 pci_set_drvdata(pci_dev, NULL);
1912
1913 /* free memory */
1914 btcx_riscmem_free(dev->pci,&dev->vidq.stopper);
1915 list_del(&dev->devlist);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001916 cx88_core_put(core,dev->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 kfree(dev);
1918}
1919
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001920#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921static int cx8800_suspend(struct pci_dev *pci_dev, pm_message_t state)
1922{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001923 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 struct cx88_core *core = dev->core;
1925
1926 /* stop video+vbi capture */
1927 spin_lock(&dev->slock);
1928 if (!list_empty(&dev->vidq.active)) {
1929 printk("%s: suspend video\n", core->name);
1930 stop_video_dma(dev);
1931 del_timer(&dev->vidq.timeout);
1932 }
1933 if (!list_empty(&dev->vbiq.active)) {
1934 printk("%s: suspend vbi\n", core->name);
1935 cx8800_stop_vbi_dma(dev);
1936 del_timer(&dev->vbiq.timeout);
1937 }
1938 spin_unlock(&dev->slock);
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /* FIXME -- shutdown device */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001941 cx88_shutdown(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 pci_save_state(pci_dev);
1944 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
1945 pci_disable_device(pci_dev);
1946 dev->state.disabled = 1;
1947 }
1948 return 0;
1949}
1950
1951static int cx8800_resume(struct pci_dev *pci_dev)
1952{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07001953 struct cx8800_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001955 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001958 err=pci_enable_device(pci_dev);
1959 if (err) {
1960 printk(KERN_ERR "%s: can't enable device\n",
1961 core->name);
1962 return err;
1963 }
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 dev->state.disabled = 0;
1966 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -07001967 err= pci_set_power_state(pci_dev, PCI_D0);
1968 if (err) {
1969 printk(KERN_ERR "%s: can't enable device\n",
1970 core->name);
1971
1972 pci_disable_device(pci_dev);
1973 dev->state.disabled = 1;
1974
1975 return err;
1976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 pci_restore_state(pci_dev);
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /* FIXME: re-initialize hardware */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07001980 cx88_reset(core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 /* restart video+vbi capture */
1983 spin_lock(&dev->slock);
1984 if (!list_empty(&dev->vidq.active)) {
1985 printk("%s: resume video\n", core->name);
1986 restart_video_queue(dev,&dev->vidq);
1987 }
1988 if (!list_empty(&dev->vbiq.active)) {
1989 printk("%s: resume vbi\n", core->name);
1990 cx8800_restart_vbi_queue(dev,&dev->vbiq);
1991 }
1992 spin_unlock(&dev->slock);
1993
1994 return 0;
1995}
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03001996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998/* ----------------------------------------------------------- */
1999
Adrian Bunk408b6642005-05-01 08:59:29 -07002000static struct pci_device_id cx8800_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 {
2002 .vendor = 0x14f1,
2003 .device = 0x8800,
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002004 .subvendor = PCI_ANY_ID,
2005 .subdevice = PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 },{
2007 /* --- end of list --- */
2008 }
2009};
2010MODULE_DEVICE_TABLE(pci, cx8800_pci_tbl);
2011
2012static struct pci_driver cx8800_pci_driver = {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002013 .name = "cx8800",
2014 .id_table = cx8800_pci_tbl,
2015 .probe = cx8800_initdev,
2016 .remove = __devexit_p(cx8800_finidev),
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002017#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 .suspend = cx8800_suspend,
2019 .resume = cx8800_resume,
Alexey Dobriyan17bc98a2006-08-12 22:01:27 -03002020#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021};
2022
2023static int cx8800_init(void)
2024{
2025 printk(KERN_INFO "cx2388x v4l2 driver version %d.%d.%d loaded\n",
2026 (CX88_VERSION_CODE >> 16) & 0xff,
2027 (CX88_VERSION_CODE >> 8) & 0xff,
2028 CX88_VERSION_CODE & 0xff);
2029#ifdef SNAPSHOT
2030 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
2031 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
2032#endif
2033 return pci_register_driver(&cx8800_pci_driver);
2034}
2035
2036static void cx8800_fini(void)
2037{
2038 pci_unregister_driver(&cx8800_pci_driver);
2039}
2040
2041module_init(cx8800_init);
2042module_exit(cx8800_fini);
2043
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -07002044EXPORT_SYMBOL(cx88_do_ioctl);
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046/* ----------------------------------------------------------- */
2047/*
2048 * Local variables:
2049 * c-basic-offset: 8
2050 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -07002051 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 */