3 * device driver for Conexant 2388x based TV cards
4 * video4linux video interface
6 * (c) 2003-04 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org>
10 * - video_ioctl2 conversion
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/module.h>
31 #include <linux/kmod.h>
32 #include <linux/kernel.h>
33 #include <linux/slab.h>
34 #include <linux/interrupt.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/delay.h>
37 #include <linux/kthread.h>
38 #include <asm/div64.h>
41 #include <media/v4l2-common.h>
42 #include <media/v4l2-ioctl.h>
44 MODULE_DESCRIPTION("v4l2 driver module for cx2388x based TV cards");
45 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
46 MODULE_LICENSE("GPL");
48 /* ------------------------------------------------------------------ */
50 static unsigned int video_nr
[] = {[0 ... (CX88_MAXBOARDS
- 1)] = UNSET
};
51 static unsigned int vbi_nr
[] = {[0 ... (CX88_MAXBOARDS
- 1)] = UNSET
};
52 static unsigned int radio_nr
[] = {[0 ... (CX88_MAXBOARDS
- 1)] = UNSET
};
54 module_param_array(video_nr
, int, NULL
, 0444);
55 module_param_array(vbi_nr
, int, NULL
, 0444);
56 module_param_array(radio_nr
, int, NULL
, 0444);
58 MODULE_PARM_DESC(video_nr
,"video device numbers");
59 MODULE_PARM_DESC(vbi_nr
,"vbi device numbers");
60 MODULE_PARM_DESC(radio_nr
,"radio device numbers");
62 static unsigned int video_debug
;
63 module_param(video_debug
,int,0644);
64 MODULE_PARM_DESC(video_debug
,"enable debug messages [video]");
66 static unsigned int irq_debug
;
67 module_param(irq_debug
,int,0644);
68 MODULE_PARM_DESC(irq_debug
,"enable debug messages [IRQ handler]");
70 static unsigned int vid_limit
= 16;
71 module_param(vid_limit
,int,0644);
72 MODULE_PARM_DESC(vid_limit
,"capture memory limit in megabytes");
74 #define dprintk(level,fmt, arg...) if (video_debug >= level) \
75 printk(KERN_DEBUG "%s/0: " fmt, core->name , ## arg)
77 /* ------------------------------------------------------------------- */
80 static const struct cx8800_fmt formats
[] = {
82 .name
= "8 bpp, gray",
83 .fourcc
= V4L2_PIX_FMT_GREY
,
84 .cxformat
= ColorFormatY8
,
86 .flags
= FORMAT_FLAGS_PACKED
,
88 .name
= "15 bpp RGB, le",
89 .fourcc
= V4L2_PIX_FMT_RGB555
,
90 .cxformat
= ColorFormatRGB15
,
92 .flags
= FORMAT_FLAGS_PACKED
,
94 .name
= "15 bpp RGB, be",
95 .fourcc
= V4L2_PIX_FMT_RGB555X
,
96 .cxformat
= ColorFormatRGB15
| ColorFormatBSWAP
,
98 .flags
= FORMAT_FLAGS_PACKED
,
100 .name
= "16 bpp RGB, le",
101 .fourcc
= V4L2_PIX_FMT_RGB565
,
102 .cxformat
= ColorFormatRGB16
,
104 .flags
= FORMAT_FLAGS_PACKED
,
106 .name
= "16 bpp RGB, be",
107 .fourcc
= V4L2_PIX_FMT_RGB565X
,
108 .cxformat
= ColorFormatRGB16
| ColorFormatBSWAP
,
110 .flags
= FORMAT_FLAGS_PACKED
,
112 .name
= "24 bpp RGB, le",
113 .fourcc
= V4L2_PIX_FMT_BGR24
,
114 .cxformat
= ColorFormatRGB24
,
116 .flags
= FORMAT_FLAGS_PACKED
,
118 .name
= "32 bpp RGB, le",
119 .fourcc
= V4L2_PIX_FMT_BGR32
,
120 .cxformat
= ColorFormatRGB32
,
122 .flags
= FORMAT_FLAGS_PACKED
,
124 .name
= "32 bpp RGB, be",
125 .fourcc
= V4L2_PIX_FMT_RGB32
,
126 .cxformat
= ColorFormatRGB32
| ColorFormatBSWAP
| ColorFormatWSWAP
,
128 .flags
= FORMAT_FLAGS_PACKED
,
130 .name
= "4:2:2, packed, YUYV",
131 .fourcc
= V4L2_PIX_FMT_YUYV
,
132 .cxformat
= ColorFormatYUY2
,
134 .flags
= FORMAT_FLAGS_PACKED
,
136 .name
= "4:2:2, packed, UYVY",
137 .fourcc
= V4L2_PIX_FMT_UYVY
,
138 .cxformat
= ColorFormatYUY2
| ColorFormatBSWAP
,
140 .flags
= FORMAT_FLAGS_PACKED
,
144 static const struct cx8800_fmt
* format_by_fourcc(unsigned int fourcc
)
148 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++)
149 if (formats
[i
].fourcc
== fourcc
)
154 /* ------------------------------------------------------------------- */
156 static const struct v4l2_queryctrl no_ctl
= {
158 .flags
= V4L2_CTRL_FLAG_DISABLED
,
161 static const struct cx88_ctrl cx8800_ctls
[] = {
165 .id
= V4L2_CID_BRIGHTNESS
,
166 .name
= "Brightness",
170 .default_value
= 0x7f,
171 .type
= V4L2_CTRL_TYPE_INTEGER
,
174 .reg
= MO_CONTR_BRIGHT
,
179 .id
= V4L2_CID_CONTRAST
,
184 .default_value
= 0x3f,
185 .type
= V4L2_CTRL_TYPE_INTEGER
,
188 .reg
= MO_CONTR_BRIGHT
,
198 .default_value
= 0x7f,
199 .type
= V4L2_CTRL_TYPE_INTEGER
,
206 /* strictly, this only describes only U saturation.
207 * V saturation is handled specially through code.
210 .id
= V4L2_CID_SATURATION
,
211 .name
= "Saturation",
215 .default_value
= 0x7f,
216 .type
= V4L2_CTRL_TYPE_INTEGER
,
219 .reg
= MO_UV_SATURATION
,
224 .id
= V4L2_CID_CHROMA_AGC
,
225 .name
= "Chroma AGC",
228 .default_value
= 0x1,
229 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
231 .reg
= MO_INPUT_FORMAT
,
236 .id
= V4L2_CID_COLOR_KILLER
,
237 .name
= "Color killer",
240 .default_value
= 0x1,
241 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
243 .reg
= MO_INPUT_FORMAT
,
249 .id
= V4L2_CID_AUDIO_MUTE
,
254 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
257 .sreg
= SHADOW_AUD_VOL_CTL
,
262 .id
= V4L2_CID_AUDIO_VOLUME
,
267 .default_value
= 0x3f,
268 .type
= V4L2_CTRL_TYPE_INTEGER
,
271 .sreg
= SHADOW_AUD_VOL_CTL
,
276 .id
= V4L2_CID_AUDIO_BALANCE
,
281 .default_value
= 0x40,
282 .type
= V4L2_CTRL_TYPE_INTEGER
,
285 .sreg
= SHADOW_AUD_BAL_CTL
,
290 enum { CX8800_CTLS
= ARRAY_SIZE(cx8800_ctls
) };
292 /* Must be sorted from low to high control ID! */
293 const u32 cx88_user_ctrls
[] = {
299 V4L2_CID_AUDIO_VOLUME
,
300 V4L2_CID_AUDIO_BALANCE
,
303 V4L2_CID_COLOR_KILLER
,
306 EXPORT_SYMBOL(cx88_user_ctrls
);
308 static const u32
* const ctrl_classes
[] = {
313 int cx8800_ctrl_query(struct cx88_core
*core
, struct v4l2_queryctrl
*qctrl
)
317 if (qctrl
->id
< V4L2_CID_BASE
||
318 qctrl
->id
>= V4L2_CID_LASTP1
)
320 for (i
= 0; i
< CX8800_CTLS
; i
++)
321 if (cx8800_ctls
[i
].v
.id
== qctrl
->id
)
323 if (i
== CX8800_CTLS
) {
327 *qctrl
= cx8800_ctls
[i
].v
;
328 /* Report chroma AGC as inactive when SECAM is selected */
329 if (cx8800_ctls
[i
].v
.id
== V4L2_CID_CHROMA_AGC
&&
330 core
->tvnorm
& V4L2_STD_SECAM
)
331 qctrl
->flags
|= V4L2_CTRL_FLAG_INACTIVE
;
335 EXPORT_SYMBOL(cx8800_ctrl_query
);
337 /* ------------------------------------------------------------------- */
338 /* resource management */
340 static int res_get(struct cx8800_dev
*dev
, struct cx8800_fh
*fh
, unsigned int bit
)
342 struct cx88_core
*core
= dev
->core
;
343 if (fh
->resources
& bit
)
344 /* have it already allocated */
348 mutex_lock(&core
->lock
);
349 if (dev
->resources
& bit
) {
350 /* no, someone else uses it */
351 mutex_unlock(&core
->lock
);
354 /* it's free, grab it */
355 fh
->resources
|= bit
;
356 dev
->resources
|= bit
;
357 dprintk(1,"res: get %d\n",bit
);
358 mutex_unlock(&core
->lock
);
363 int res_check(struct cx8800_fh
*fh
, unsigned int bit
)
365 return (fh
->resources
& bit
);
369 int res_locked(struct cx8800_dev
*dev
, unsigned int bit
)
371 return (dev
->resources
& bit
);
375 void res_free(struct cx8800_dev
*dev
, struct cx8800_fh
*fh
, unsigned int bits
)
377 struct cx88_core
*core
= dev
->core
;
378 BUG_ON((fh
->resources
& bits
) != bits
);
380 mutex_lock(&core
->lock
);
381 fh
->resources
&= ~bits
;
382 dev
->resources
&= ~bits
;
383 dprintk(1,"res: put %d\n",bits
);
384 mutex_unlock(&core
->lock
);
387 /* ------------------------------------------------------------------ */
389 int cx88_video_mux(struct cx88_core
*core
, unsigned int input
)
391 /* struct cx88_core *core = dev->core; */
393 dprintk(1,"video_mux: %d [vmux=%d,gpio=0x%x,0x%x,0x%x,0x%x]\n",
394 input
, INPUT(input
).vmux
,
395 INPUT(input
).gpio0
,INPUT(input
).gpio1
,
396 INPUT(input
).gpio2
,INPUT(input
).gpio3
);
398 cx_andor(MO_INPUT_FORMAT
, 0x03 << 14, INPUT(input
).vmux
<< 14);
399 cx_write(MO_GP3_IO
, INPUT(input
).gpio3
);
400 cx_write(MO_GP0_IO
, INPUT(input
).gpio0
);
401 cx_write(MO_GP1_IO
, INPUT(input
).gpio1
);
402 cx_write(MO_GP2_IO
, INPUT(input
).gpio2
);
404 switch (INPUT(input
).type
) {
405 case CX88_VMUX_SVIDEO
:
406 cx_set(MO_AFECFG_IO
, 0x00000001);
407 cx_set(MO_INPUT_FORMAT
, 0x00010010);
408 cx_set(MO_FILTER_EVEN
, 0x00002020);
409 cx_set(MO_FILTER_ODD
, 0x00002020);
412 cx_clear(MO_AFECFG_IO
, 0x00000001);
413 cx_clear(MO_INPUT_FORMAT
, 0x00010010);
414 cx_clear(MO_FILTER_EVEN
, 0x00002020);
415 cx_clear(MO_FILTER_ODD
, 0x00002020);
419 /* if there are audioroutes defined, we have an external
420 ADC to deal with audio */
421 if (INPUT(input
).audioroute
) {
422 /* The wm8775 module has the "2" route hardwired into
423 the initialization. Some boards may use different
424 routes for different inputs. HVR-1300 surely does */
425 if (core
->board
.audio_chip
&&
426 core
->board
.audio_chip
== V4L2_IDENT_WM8775
) {
427 call_all(core
, audio
, s_routing
,
428 INPUT(input
).audioroute
, 0, 0);
430 /* cx2388's C-ADC is connected to the tuner only.
431 When used with S-Video, that ADC is busy dealing with
432 chroma, so an external must be used for baseband audio */
433 if (INPUT(input
).type
!= CX88_VMUX_TELEVISION
&&
434 INPUT(input
).type
!= CX88_VMUX_CABLE
) {
436 core
->tvaudio
= WW_I2SADC
;
437 cx88_set_tvaudio(core
);
440 cx_write(AUD_I2SCNTL
, 0x0);
441 cx_clear(AUD_CTL
, EN_I2SIN_ENABLE
);
447 EXPORT_SYMBOL(cx88_video_mux
);
449 /* ------------------------------------------------------------------ */
451 static int start_video_dma(struct cx8800_dev
*dev
,
452 struct cx88_dmaqueue
*q
,
453 struct cx88_buffer
*buf
)
455 struct cx88_core
*core
= dev
->core
;
457 /* setup fifo + format */
458 cx88_sram_channel_setup(core
, &cx88_sram_channels
[SRAM_CH21
],
459 buf
->bpl
, buf
->risc
.dma
);
460 cx88_set_scale(core
, buf
->vb
.width
, buf
->vb
.height
, buf
->vb
.field
);
461 cx_write(MO_COLOR_CTRL
, buf
->fmt
->cxformat
| ColorFormatGamma
);
464 cx_write(MO_VIDY_GPCNTRL
,GP_COUNT_CONTROL_RESET
);
468 cx_set(MO_PCI_INTMSK
, core
->pci_irqmask
| PCI_INT_VIDINT
);
470 /* Enables corresponding bits at PCI_INT_STAT:
471 bits 0 to 4: video, audio, transport stream, VIP, Host
473 bits 8 and 9: DMA complete for: SRC, DST
474 bits 10 and 11: BERR signal asserted for RISC: RD, WR
475 bits 12 to 15: BERR signal asserted for: BRDG, SRC, DST, IPB
477 cx_set(MO_VID_INTMSK
, 0x0f0011);
480 cx_set(VID_CAPTURE_CONTROL
,0x06);
483 cx_set(MO_DEV_CNTRL2
, (1<<5));
484 cx_set(MO_VID_DMACNTRL
, 0x11); /* Planar Y and packed FIFO and RISC enable */
490 static int stop_video_dma(struct cx8800_dev
*dev
)
492 struct cx88_core
*core
= dev
->core
;
495 cx_clear(MO_VID_DMACNTRL
, 0x11);
497 /* disable capture */
498 cx_clear(VID_CAPTURE_CONTROL
,0x06);
501 cx_clear(MO_PCI_INTMSK
, PCI_INT_VIDINT
);
502 cx_clear(MO_VID_INTMSK
, 0x0f0011);
507 static int restart_video_queue(struct cx8800_dev
*dev
,
508 struct cx88_dmaqueue
*q
)
510 struct cx88_core
*core
= dev
->core
;
511 struct cx88_buffer
*buf
, *prev
;
513 if (!list_empty(&q
->active
)) {
514 buf
= list_entry(q
->active
.next
, struct cx88_buffer
, vb
.queue
);
515 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
517 start_video_dma(dev
, q
, buf
);
518 list_for_each_entry(buf
, &q
->active
, vb
.queue
)
519 buf
->count
= q
->count
++;
520 mod_timer(&q
->timeout
, jiffies
+BUFFER_TIMEOUT
);
526 if (list_empty(&q
->queued
))
528 buf
= list_entry(q
->queued
.next
, struct cx88_buffer
, vb
.queue
);
530 list_move_tail(&buf
->vb
.queue
, &q
->active
);
531 start_video_dma(dev
, q
, buf
);
532 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
533 buf
->count
= q
->count
++;
534 mod_timer(&q
->timeout
, jiffies
+BUFFER_TIMEOUT
);
535 dprintk(2,"[%p/%d] restart_queue - first active\n",
538 } else if (prev
->vb
.width
== buf
->vb
.width
&&
539 prev
->vb
.height
== buf
->vb
.height
&&
540 prev
->fmt
== buf
->fmt
) {
541 list_move_tail(&buf
->vb
.queue
, &q
->active
);
542 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
543 buf
->count
= q
->count
++;
544 prev
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
545 dprintk(2,"[%p/%d] restart_queue - move to active\n",
554 /* ------------------------------------------------------------------ */
557 buffer_setup(struct videobuf_queue
*q
, unsigned int *count
, unsigned int *size
)
559 struct cx8800_fh
*fh
= q
->priv_data
;
561 *size
= fh
->fmt
->depth
*fh
->width
*fh
->height
>> 3;
564 if (*size
* *count
> vid_limit
* 1024 * 1024)
565 *count
= (vid_limit
* 1024 * 1024) / *size
;
570 buffer_prepare(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
,
571 enum v4l2_field field
)
573 struct cx8800_fh
*fh
= q
->priv_data
;
574 struct cx8800_dev
*dev
= fh
->dev
;
575 struct cx88_core
*core
= dev
->core
;
576 struct cx88_buffer
*buf
= container_of(vb
,struct cx88_buffer
,vb
);
577 struct videobuf_dmabuf
*dma
=videobuf_to_dma(&buf
->vb
);
578 int rc
, init_buffer
= 0;
580 BUG_ON(NULL
== fh
->fmt
);
581 if (fh
->width
< 48 || fh
->width
> norm_maxw(core
->tvnorm
) ||
582 fh
->height
< 32 || fh
->height
> norm_maxh(core
->tvnorm
))
584 buf
->vb
.size
= (fh
->width
* fh
->height
* fh
->fmt
->depth
) >> 3;
585 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
588 if (buf
->fmt
!= fh
->fmt
||
589 buf
->vb
.width
!= fh
->width
||
590 buf
->vb
.height
!= fh
->height
||
591 buf
->vb
.field
!= field
) {
593 buf
->vb
.width
= fh
->width
;
594 buf
->vb
.height
= fh
->height
;
595 buf
->vb
.field
= field
;
599 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
601 if (0 != (rc
= videobuf_iolock(q
,&buf
->vb
,NULL
)))
606 buf
->bpl
= buf
->vb
.width
* buf
->fmt
->depth
>> 3;
607 switch (buf
->vb
.field
) {
609 cx88_risc_buffer(dev
->pci
, &buf
->risc
,
610 dma
->sglist
, 0, UNSET
,
611 buf
->bpl
, 0, buf
->vb
.height
);
613 case V4L2_FIELD_BOTTOM
:
614 cx88_risc_buffer(dev
->pci
, &buf
->risc
,
615 dma
->sglist
, UNSET
, 0,
616 buf
->bpl
, 0, buf
->vb
.height
);
618 case V4L2_FIELD_INTERLACED
:
619 cx88_risc_buffer(dev
->pci
, &buf
->risc
,
620 dma
->sglist
, 0, buf
->bpl
,
622 buf
->vb
.height
>> 1);
624 case V4L2_FIELD_SEQ_TB
:
625 cx88_risc_buffer(dev
->pci
, &buf
->risc
,
627 0, buf
->bpl
* (buf
->vb
.height
>> 1),
629 buf
->vb
.height
>> 1);
631 case V4L2_FIELD_SEQ_BT
:
632 cx88_risc_buffer(dev
->pci
, &buf
->risc
,
634 buf
->bpl
* (buf
->vb
.height
>> 1), 0,
636 buf
->vb
.height
>> 1);
642 dprintk(2,"[%p/%d] buffer_prepare - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
644 fh
->width
, fh
->height
, fh
->fmt
->depth
, fh
->fmt
->name
,
645 (unsigned long)buf
->risc
.dma
);
647 buf
->vb
.state
= VIDEOBUF_PREPARED
;
651 cx88_free_buffer(q
,buf
);
656 buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
658 struct cx88_buffer
*buf
= container_of(vb
,struct cx88_buffer
,vb
);
659 struct cx88_buffer
*prev
;
660 struct cx8800_fh
*fh
= vq
->priv_data
;
661 struct cx8800_dev
*dev
= fh
->dev
;
662 struct cx88_core
*core
= dev
->core
;
663 struct cx88_dmaqueue
*q
= &dev
->vidq
;
665 /* add jump to stopper */
666 buf
->risc
.jmp
[0] = cpu_to_le32(RISC_JUMP
| RISC_IRQ1
| RISC_CNT_INC
);
667 buf
->risc
.jmp
[1] = cpu_to_le32(q
->stopper
.dma
);
669 if (!list_empty(&q
->queued
)) {
670 list_add_tail(&buf
->vb
.queue
,&q
->queued
);
671 buf
->vb
.state
= VIDEOBUF_QUEUED
;
672 dprintk(2,"[%p/%d] buffer_queue - append to queued\n",
675 } else if (list_empty(&q
->active
)) {
676 list_add_tail(&buf
->vb
.queue
,&q
->active
);
677 start_video_dma(dev
, q
, buf
);
678 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
679 buf
->count
= q
->count
++;
680 mod_timer(&q
->timeout
, jiffies
+BUFFER_TIMEOUT
);
681 dprintk(2,"[%p/%d] buffer_queue - first active\n",
685 prev
= list_entry(q
->active
.prev
, struct cx88_buffer
, vb
.queue
);
686 if (prev
->vb
.width
== buf
->vb
.width
&&
687 prev
->vb
.height
== buf
->vb
.height
&&
688 prev
->fmt
== buf
->fmt
) {
689 list_add_tail(&buf
->vb
.queue
,&q
->active
);
690 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
691 buf
->count
= q
->count
++;
692 prev
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
693 dprintk(2,"[%p/%d] buffer_queue - append to active\n",
697 list_add_tail(&buf
->vb
.queue
,&q
->queued
);
698 buf
->vb
.state
= VIDEOBUF_QUEUED
;
699 dprintk(2,"[%p/%d] buffer_queue - first queued\n",
705 static void buffer_release(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
707 struct cx88_buffer
*buf
= container_of(vb
,struct cx88_buffer
,vb
);
709 cx88_free_buffer(q
,buf
);
712 static const struct videobuf_queue_ops cx8800_video_qops
= {
713 .buf_setup
= buffer_setup
,
714 .buf_prepare
= buffer_prepare
,
715 .buf_queue
= buffer_queue
,
716 .buf_release
= buffer_release
,
719 /* ------------------------------------------------------------------ */
722 /* ------------------------------------------------------------------ */
724 static struct videobuf_queue
* get_queue(struct cx8800_fh
*fh
)
727 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
729 case V4L2_BUF_TYPE_VBI_CAPTURE
:
737 static int get_ressource(struct cx8800_fh
*fh
)
740 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
741 return RESOURCE_VIDEO
;
742 case V4L2_BUF_TYPE_VBI_CAPTURE
:
750 static int video_open(struct file
*file
)
752 struct video_device
*vdev
= video_devdata(file
);
753 struct cx8800_dev
*dev
= video_drvdata(file
);
754 struct cx88_core
*core
= dev
->core
;
755 struct cx8800_fh
*fh
;
756 enum v4l2_buf_type type
= 0;
759 switch (vdev
->vfl_type
) {
760 case VFL_TYPE_GRABBER
:
761 type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
764 type
= V4L2_BUF_TYPE_VBI_CAPTURE
;
771 dprintk(1, "open dev=%s radio=%d type=%s\n",
772 video_device_node_name(vdev
), radio
, v4l2_type_names
[type
]);
774 /* allocate + initialize per filehandle data */
775 fh
= kzalloc(sizeof(*fh
),GFP_KERNEL
);
779 file
->private_data
= fh
;
785 fh
->fmt
= format_by_fourcc(V4L2_PIX_FMT_BGR24
);
787 mutex_lock(&core
->lock
);
789 videobuf_queue_sg_init(&fh
->vidq
, &cx8800_video_qops
,
790 &dev
->pci
->dev
, &dev
->slock
,
791 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
792 V4L2_FIELD_INTERLACED
,
793 sizeof(struct cx88_buffer
),
795 videobuf_queue_sg_init(&fh
->vbiq
, &cx8800_vbi_qops
,
796 &dev
->pci
->dev
, &dev
->slock
,
797 V4L2_BUF_TYPE_VBI_CAPTURE
,
799 sizeof(struct cx88_buffer
),
803 dprintk(1,"video_open: setting radio device\n");
804 cx_write(MO_GP3_IO
, core
->board
.radio
.gpio3
);
805 cx_write(MO_GP0_IO
, core
->board
.radio
.gpio0
);
806 cx_write(MO_GP1_IO
, core
->board
.radio
.gpio1
);
807 cx_write(MO_GP2_IO
, core
->board
.radio
.gpio2
);
808 if (core
->board
.radio
.audioroute
) {
809 if(core
->board
.audio_chip
&&
810 core
->board
.audio_chip
== V4L2_IDENT_WM8775
) {
811 call_all(core
, audio
, s_routing
,
812 core
->board
.radio
.audioroute
, 0, 0);
815 core
->tvaudio
= WW_I2SADC
;
816 cx88_set_tvaudio(core
);
819 core
->tvaudio
= WW_FM
;
820 cx88_set_tvaudio(core
);
821 cx88_set_stereo(core
,V4L2_TUNER_MODE_STEREO
,1);
823 call_all(core
, tuner
, s_radio
);
826 atomic_inc(&core
->users
);
827 mutex_unlock(&core
->lock
);
833 video_read(struct file
*file
, char __user
*data
, size_t count
, loff_t
*ppos
)
835 struct cx8800_fh
*fh
= file
->private_data
;
838 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
839 if (res_locked(fh
->dev
,RESOURCE_VIDEO
))
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
))
846 return videobuf_read_stream(&fh
->vbiq
, data
, count
, ppos
, 1,
847 file
->f_flags
& O_NONBLOCK
);
855 video_poll(struct file
*file
, struct poll_table_struct
*wait
)
857 struct cx8800_fh
*fh
= file
->private_data
;
858 struct cx88_buffer
*buf
;
859 unsigned int rc
= POLLERR
;
861 if (V4L2_BUF_TYPE_VBI_CAPTURE
== fh
->type
) {
862 if (!res_get(fh
->dev
,fh
,RESOURCE_VBI
))
864 return videobuf_poll_stream(file
, &fh
->vbiq
, wait
);
867 mutex_lock(&fh
->vidq
.vb_lock
);
868 if (res_check(fh
,RESOURCE_VIDEO
)) {
869 /* streaming capture */
870 if (list_empty(&fh
->vidq
.stream
))
872 buf
= list_entry(fh
->vidq
.stream
.next
,struct cx88_buffer
,vb
.stream
);
875 buf
= (struct cx88_buffer
*)fh
->vidq
.read_buf
;
879 poll_wait(file
, &buf
->vb
.done
, wait
);
880 if (buf
->vb
.state
== VIDEOBUF_DONE
||
881 buf
->vb
.state
== VIDEOBUF_ERROR
)
882 rc
= POLLIN
|POLLRDNORM
;
886 mutex_unlock(&fh
->vidq
.vb_lock
);
890 static int video_release(struct file
*file
)
892 struct cx8800_fh
*fh
= file
->private_data
;
893 struct cx8800_dev
*dev
= fh
->dev
;
895 /* turn off overlay */
896 if (res_check(fh
, RESOURCE_OVERLAY
)) {
898 res_free(dev
,fh
,RESOURCE_OVERLAY
);
901 /* stop video capture */
902 if (res_check(fh
, RESOURCE_VIDEO
)) {
903 videobuf_queue_cancel(&fh
->vidq
);
904 res_free(dev
,fh
,RESOURCE_VIDEO
);
906 if (fh
->vidq
.read_buf
) {
907 buffer_release(&fh
->vidq
,fh
->vidq
.read_buf
);
908 kfree(fh
->vidq
.read_buf
);
911 /* stop vbi capture */
912 if (res_check(fh
, RESOURCE_VBI
)) {
913 videobuf_stop(&fh
->vbiq
);
914 res_free(dev
,fh
,RESOURCE_VBI
);
917 videobuf_mmap_free(&fh
->vidq
);
918 videobuf_mmap_free(&fh
->vbiq
);
920 mutex_lock(&dev
->core
->lock
);
921 file
->private_data
= NULL
;
924 if(atomic_dec_and_test(&dev
->core
->users
))
925 call_all(dev
->core
, core
, s_power
, 0);
926 mutex_unlock(&dev
->core
->lock
);
932 video_mmap(struct file
*file
, struct vm_area_struct
* vma
)
934 struct cx8800_fh
*fh
= file
->private_data
;
936 return videobuf_mmap_mapper(get_queue(fh
), vma
);
939 /* ------------------------------------------------------------------ */
940 /* VIDEO CTRL IOCTLS */
942 int cx88_get_control (struct cx88_core
*core
, struct v4l2_control
*ctl
)
944 const struct cx88_ctrl
*c
= NULL
;
948 for (i
= 0; i
< CX8800_CTLS
; i
++)
949 if (cx8800_ctls
[i
].v
.id
== ctl
->id
)
951 if (unlikely(NULL
== c
))
954 value
= c
->sreg
? cx_sread(c
->sreg
) : cx_read(c
->reg
);
956 case V4L2_CID_AUDIO_BALANCE
:
957 ctl
->value
= ((value
& 0x7f) < 0x40) ? ((value
& 0x7f) + 0x40)
958 : (0x7f - (value
& 0x7f));
960 case V4L2_CID_AUDIO_VOLUME
:
961 ctl
->value
= 0x3f - (value
& 0x3f);
964 ctl
->value
= ((value
+ (c
->off
<< c
->shift
)) & c
->mask
) >> c
->shift
;
967 dprintk(1,"get_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
968 ctl
->id
, c
->v
.name
, ctl
->value
, c
->reg
,
969 value
,c
->mask
, c
->sreg
? " [shadowed]" : "");
972 EXPORT_SYMBOL(cx88_get_control
);
974 int cx88_set_control(struct cx88_core
*core
, struct v4l2_control
*ctl
)
976 const struct cx88_ctrl
*c
= NULL
;
980 for (i
= 0; i
< CX8800_CTLS
; i
++) {
981 if (cx8800_ctls
[i
].v
.id
== ctl
->id
) {
985 if (unlikely(NULL
== c
))
988 if (ctl
->value
< c
->v
.minimum
)
989 ctl
->value
= c
->v
.minimum
;
990 if (ctl
->value
> c
->v
.maximum
)
991 ctl
->value
= c
->v
.maximum
;
994 case V4L2_CID_AUDIO_BALANCE
:
995 value
= (ctl
->value
< 0x40) ? (0x7f - ctl
->value
) : (ctl
->value
- 0x40);
997 case V4L2_CID_AUDIO_VOLUME
:
998 value
= 0x3f - (ctl
->value
& 0x3f);
1000 case V4L2_CID_SATURATION
:
1001 /* special v_sat handling */
1003 value
= ((ctl
->value
- c
->off
) << c
->shift
) & c
->mask
;
1005 if (core
->tvnorm
& V4L2_STD_SECAM
) {
1006 /* For SECAM, both U and V sat should be equal */
1007 value
=value
<<8|value
;
1009 /* Keeps U Saturation proportional to V Sat */
1010 value
=(value
*0x5a)/0x7f<<8|value
;
1014 case V4L2_CID_CHROMA_AGC
:
1015 /* Do not allow chroma AGC to be enabled for SECAM */
1016 value
= ((ctl
->value
- c
->off
) << c
->shift
) & c
->mask
;
1017 if (core
->tvnorm
& V4L2_STD_SECAM
&& value
)
1021 value
= ((ctl
->value
- c
->off
) << c
->shift
) & c
->mask
;
1024 dprintk(1,"set_control id=0x%X(%s) ctrl=0x%02x, reg=0x%02x val=0x%02x (mask 0x%02x)%s\n",
1025 ctl
->id
, c
->v
.name
, ctl
->value
, c
->reg
, value
,
1026 mask
, c
->sreg
? " [shadowed]" : "");
1028 cx_sandor(c
->sreg
, c
->reg
, mask
, value
);
1030 cx_andor(c
->reg
, mask
, value
);
1034 EXPORT_SYMBOL(cx88_set_control
);
1036 static void init_controls(struct cx88_core
*core
)
1038 struct v4l2_control ctrl
;
1041 for (i
= 0; i
< CX8800_CTLS
; i
++) {
1042 ctrl
.id
=cx8800_ctls
[i
].v
.id
;
1043 ctrl
.value
=cx8800_ctls
[i
].v
.default_value
;
1045 cx88_set_control(core
, &ctrl
);
1049 /* ------------------------------------------------------------------ */
1052 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
1053 struct v4l2_format
*f
)
1055 struct cx8800_fh
*fh
= priv
;
1057 f
->fmt
.pix
.width
= fh
->width
;
1058 f
->fmt
.pix
.height
= fh
->height
;
1059 f
->fmt
.pix
.field
= fh
->vidq
.field
;
1060 f
->fmt
.pix
.pixelformat
= fh
->fmt
->fourcc
;
1061 f
->fmt
.pix
.bytesperline
=
1062 (f
->fmt
.pix
.width
* fh
->fmt
->depth
) >> 3;
1063 f
->fmt
.pix
.sizeimage
=
1064 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
1068 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
1069 struct v4l2_format
*f
)
1071 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1072 const struct cx8800_fmt
*fmt
;
1073 enum v4l2_field field
;
1074 unsigned int maxw
, maxh
;
1076 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
1080 field
= f
->fmt
.pix
.field
;
1081 maxw
= norm_maxw(core
->tvnorm
);
1082 maxh
= norm_maxh(core
->tvnorm
);
1084 if (V4L2_FIELD_ANY
== field
) {
1085 field
= (f
->fmt
.pix
.height
> maxh
/2)
1086 ? V4L2_FIELD_INTERLACED
1087 : V4L2_FIELD_BOTTOM
;
1091 case V4L2_FIELD_TOP
:
1092 case V4L2_FIELD_BOTTOM
:
1095 case V4L2_FIELD_INTERLACED
:
1101 f
->fmt
.pix
.field
= field
;
1102 v4l_bound_align_image(&f
->fmt
.pix
.width
, 48, maxw
, 2,
1103 &f
->fmt
.pix
.height
, 32, maxh
, 0, 0);
1104 f
->fmt
.pix
.bytesperline
=
1105 (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
1106 f
->fmt
.pix
.sizeimage
=
1107 f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
1112 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
1113 struct v4l2_format
*f
)
1115 struct cx8800_fh
*fh
= priv
;
1116 int err
= vidioc_try_fmt_vid_cap (file
,priv
,f
);
1120 fh
->fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
1121 fh
->width
= f
->fmt
.pix
.width
;
1122 fh
->height
= f
->fmt
.pix
.height
;
1123 fh
->vidq
.field
= f
->fmt
.pix
.field
;
1127 static int vidioc_querycap (struct file
*file
, void *priv
,
1128 struct v4l2_capability
*cap
)
1130 struct cx8800_dev
*dev
= ((struct cx8800_fh
*)priv
)->dev
;
1131 struct cx88_core
*core
= dev
->core
;
1133 strcpy(cap
->driver
, "cx8800");
1134 strlcpy(cap
->card
, core
->board
.name
, sizeof(cap
->card
));
1135 sprintf(cap
->bus_info
,"PCI:%s",pci_name(dev
->pci
));
1136 cap
->version
= CX88_VERSION_CODE
;
1138 V4L2_CAP_VIDEO_CAPTURE
|
1139 V4L2_CAP_READWRITE
|
1140 V4L2_CAP_STREAMING
|
1141 V4L2_CAP_VBI_CAPTURE
;
1142 if (UNSET
!= core
->board
.tuner_type
)
1143 cap
->capabilities
|= V4L2_CAP_TUNER
;
1147 static int vidioc_enum_fmt_vid_cap (struct file
*file
, void *priv
,
1148 struct v4l2_fmtdesc
*f
)
1150 if (unlikely(f
->index
>= ARRAY_SIZE(formats
)))
1153 strlcpy(f
->description
,formats
[f
->index
].name
,sizeof(f
->description
));
1154 f
->pixelformat
= formats
[f
->index
].fourcc
;
1159 static int vidioc_reqbufs (struct file
*file
, void *priv
, struct v4l2_requestbuffers
*p
)
1161 struct cx8800_fh
*fh
= priv
;
1162 return (videobuf_reqbufs(get_queue(fh
), p
));
1165 static int vidioc_querybuf (struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1167 struct cx8800_fh
*fh
= priv
;
1168 return (videobuf_querybuf(get_queue(fh
), p
));
1171 static int vidioc_qbuf (struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1173 struct cx8800_fh
*fh
= priv
;
1174 return (videobuf_qbuf(get_queue(fh
), p
));
1177 static int vidioc_dqbuf (struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1179 struct cx8800_fh
*fh
= priv
;
1180 return (videobuf_dqbuf(get_queue(fh
), p
,
1181 file
->f_flags
& O_NONBLOCK
));
1184 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1186 struct cx8800_fh
*fh
= priv
;
1187 struct cx8800_dev
*dev
= fh
->dev
;
1189 /* We should remember that this driver also supports teletext, */
1190 /* so we have to test if the v4l2_buf_type is VBI capture data. */
1191 if (unlikely((fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) &&
1192 (fh
->type
!= V4L2_BUF_TYPE_VBI_CAPTURE
)))
1195 if (unlikely(i
!= fh
->type
))
1198 if (unlikely(!res_get(dev
,fh
,get_ressource(fh
))))
1200 return videobuf_streamon(get_queue(fh
));
1203 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1205 struct cx8800_fh
*fh
= priv
;
1206 struct cx8800_dev
*dev
= fh
->dev
;
1209 if ((fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) &&
1210 (fh
->type
!= V4L2_BUF_TYPE_VBI_CAPTURE
))
1216 res
= get_ressource(fh
);
1217 err
= videobuf_streamoff(get_queue(fh
));
1220 res_free(dev
,fh
,res
);
1224 static int vidioc_s_std (struct file
*file
, void *priv
, v4l2_std_id
*tvnorms
)
1226 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1228 mutex_lock(&core
->lock
);
1229 cx88_set_tvnorm(core
,*tvnorms
);
1230 mutex_unlock(&core
->lock
);
1235 /* only one input in this sample driver */
1236 int cx88_enum_input (struct cx88_core
*core
,struct v4l2_input
*i
)
1238 static const char * const iname
[] = {
1239 [ CX88_VMUX_COMPOSITE1
] = "Composite1",
1240 [ CX88_VMUX_COMPOSITE2
] = "Composite2",
1241 [ CX88_VMUX_COMPOSITE3
] = "Composite3",
1242 [ CX88_VMUX_COMPOSITE4
] = "Composite4",
1243 [ CX88_VMUX_SVIDEO
] = "S-Video",
1244 [ CX88_VMUX_TELEVISION
] = "Television",
1245 [ CX88_VMUX_CABLE
] = "Cable TV",
1246 [ CX88_VMUX_DVB
] = "DVB",
1247 [ CX88_VMUX_DEBUG
] = "for debug only",
1249 unsigned int n
= i
->index
;
1253 if (0 == INPUT(n
).type
)
1255 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1256 strcpy(i
->name
,iname
[INPUT(n
).type
]);
1257 if ((CX88_VMUX_TELEVISION
== INPUT(n
).type
) ||
1258 (CX88_VMUX_CABLE
== INPUT(n
).type
)) {
1259 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1260 i
->std
= CX88_NORMS
;
1264 EXPORT_SYMBOL(cx88_enum_input
);
1266 static int vidioc_enum_input (struct file
*file
, void *priv
,
1267 struct v4l2_input
*i
)
1269 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1270 return cx88_enum_input (core
,i
);
1273 static int vidioc_g_input (struct file
*file
, void *priv
, unsigned int *i
)
1275 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1281 static int vidioc_s_input (struct file
*file
, void *priv
, unsigned int i
)
1283 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1288 mutex_lock(&core
->lock
);
1289 cx88_newstation(core
);
1290 cx88_video_mux(core
,i
);
1291 mutex_unlock(&core
->lock
);
1297 static int vidioc_queryctrl (struct file
*file
, void *priv
,
1298 struct v4l2_queryctrl
*qctrl
)
1300 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1302 qctrl
->id
= v4l2_ctrl_next(ctrl_classes
, qctrl
->id
);
1303 if (unlikely(qctrl
->id
== 0))
1305 return cx8800_ctrl_query(core
, qctrl
);
1308 static int vidioc_g_ctrl (struct file
*file
, void *priv
,
1309 struct v4l2_control
*ctl
)
1311 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1313 cx88_get_control(core
,ctl
);
1316 static int vidioc_s_ctrl (struct file
*file
, void *priv
,
1317 struct v4l2_control
*ctl
)
1319 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1321 cx88_set_control(core
,ctl
);
1324 static int vidioc_g_tuner (struct file
*file
, void *priv
,
1325 struct v4l2_tuner
*t
)
1327 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1330 if (unlikely(UNSET
== core
->board
.tuner_type
))
1335 strcpy(t
->name
, "Television");
1336 t
->type
= V4L2_TUNER_ANALOG_TV
;
1337 t
->capability
= V4L2_TUNER_CAP_NORM
;
1338 t
->rangehigh
= 0xffffffffUL
;
1340 cx88_get_stereo(core
,t
);
1341 reg
= cx_read(MO_DEVICE_STATUS
);
1342 t
->signal
= (reg
& (1<<5)) ? 0xffff : 0x0000;
1346 static int vidioc_s_tuner (struct file
*file
, void *priv
,
1347 struct v4l2_tuner
*t
)
1349 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1351 if (UNSET
== core
->board
.tuner_type
)
1356 cx88_set_stereo(core
, t
->audmode
, 1);
1360 static int vidioc_g_frequency (struct file
*file
, void *priv
,
1361 struct v4l2_frequency
*f
)
1363 struct cx8800_fh
*fh
= priv
;
1364 struct cx88_core
*core
= fh
->dev
->core
;
1366 if (unlikely(UNSET
== core
->board
.tuner_type
))
1369 /* f->type = fh->radio ? V4L2_TUNER_RADIO : V4L2_TUNER_ANALOG_TV; */
1370 f
->type
= fh
->radio
? V4L2_TUNER_RADIO
: V4L2_TUNER_ANALOG_TV
;
1371 f
->frequency
= core
->freq
;
1373 call_all(core
, tuner
, g_frequency
, f
);
1378 int cx88_set_freq (struct cx88_core
*core
,
1379 struct v4l2_frequency
*f
)
1381 if (unlikely(UNSET
== core
->board
.tuner_type
))
1383 if (unlikely(f
->tuner
!= 0))
1386 mutex_lock(&core
->lock
);
1387 core
->freq
= f
->frequency
;
1388 cx88_newstation(core
);
1389 call_all(core
, tuner
, s_frequency
, f
);
1391 /* When changing channels it is required to reset TVAUDIO */
1393 cx88_set_tvaudio(core
);
1395 mutex_unlock(&core
->lock
);
1399 EXPORT_SYMBOL(cx88_set_freq
);
1401 static int vidioc_s_frequency (struct file
*file
, void *priv
,
1402 struct v4l2_frequency
*f
)
1404 struct cx8800_fh
*fh
= priv
;
1405 struct cx88_core
*core
= fh
->dev
->core
;
1407 if (unlikely(0 == fh
->radio
&& f
->type
!= V4L2_TUNER_ANALOG_TV
))
1409 if (unlikely(1 == fh
->radio
&& f
->type
!= V4L2_TUNER_RADIO
))
1413 cx88_set_freq (core
,f
);
1416 #ifdef CONFIG_VIDEO_ADV_DEBUG
1417 static int vidioc_g_register (struct file
*file
, void *fh
,
1418 struct v4l2_dbg_register
*reg
)
1420 struct cx88_core
*core
= ((struct cx8800_fh
*)fh
)->dev
->core
;
1422 if (!v4l2_chip_match_host(®
->match
))
1424 /* cx2388x has a 24-bit register space */
1425 reg
->val
= cx_read(reg
->reg
& 0xffffff);
1430 static int vidioc_s_register (struct file
*file
, void *fh
,
1431 struct v4l2_dbg_register
*reg
)
1433 struct cx88_core
*core
= ((struct cx8800_fh
*)fh
)->dev
->core
;
1435 if (!v4l2_chip_match_host(®
->match
))
1437 cx_write(reg
->reg
& 0xffffff, reg
->val
);
1442 /* ----------------------------------------------------------- */
1443 /* RADIO ESPECIFIC IOCTLS */
1444 /* ----------------------------------------------------------- */
1446 static int radio_querycap (struct file
*file
, void *priv
,
1447 struct v4l2_capability
*cap
)
1449 struct cx8800_dev
*dev
= ((struct cx8800_fh
*)priv
)->dev
;
1450 struct cx88_core
*core
= dev
->core
;
1452 strcpy(cap
->driver
, "cx8800");
1453 strlcpy(cap
->card
, core
->board
.name
, sizeof(cap
->card
));
1454 sprintf(cap
->bus_info
,"PCI:%s", pci_name(dev
->pci
));
1455 cap
->version
= CX88_VERSION_CODE
;
1456 cap
->capabilities
= V4L2_CAP_TUNER
;
1460 static int radio_g_tuner (struct file
*file
, void *priv
,
1461 struct v4l2_tuner
*t
)
1463 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1465 if (unlikely(t
->index
> 0))
1468 strcpy(t
->name
, "Radio");
1469 t
->type
= V4L2_TUNER_RADIO
;
1471 call_all(core
, tuner
, g_tuner
, t
);
1475 static int radio_enum_input (struct file
*file
, void *priv
,
1476 struct v4l2_input
*i
)
1480 strcpy(i
->name
,"Radio");
1481 i
->type
= V4L2_INPUT_TYPE_TUNER
;
1486 static int radio_g_audio (struct file
*file
, void *priv
, struct v4l2_audio
*a
)
1488 if (unlikely(a
->index
))
1491 strcpy(a
->name
,"Radio");
1495 /* FIXME: Should add a standard for radio */
1497 static int radio_s_tuner (struct file
*file
, void *priv
,
1498 struct v4l2_tuner
*t
)
1500 struct cx88_core
*core
= ((struct cx8800_fh
*)priv
)->dev
->core
;
1505 call_all(core
, tuner
, s_tuner
, t
);
1510 static int radio_s_audio (struct file
*file
, void *fh
,
1511 struct v4l2_audio
*a
)
1516 static int radio_s_input (struct file
*file
, void *fh
, unsigned int i
)
1521 static int radio_queryctrl (struct file
*file
, void *priv
,
1522 struct v4l2_queryctrl
*c
)
1526 if (c
->id
< V4L2_CID_BASE
||
1527 c
->id
>= V4L2_CID_LASTP1
)
1529 if (c
->id
== V4L2_CID_AUDIO_MUTE
) {
1530 for (i
= 0; i
< CX8800_CTLS
; i
++) {
1531 if (cx8800_ctls
[i
].v
.id
== c
->id
)
1534 if (i
== CX8800_CTLS
)
1536 *c
= cx8800_ctls
[i
].v
;
1542 /* ----------------------------------------------------------- */
1544 static void cx8800_vid_timeout(unsigned long data
)
1546 struct cx8800_dev
*dev
= (struct cx8800_dev
*)data
;
1547 struct cx88_core
*core
= dev
->core
;
1548 struct cx88_dmaqueue
*q
= &dev
->vidq
;
1549 struct cx88_buffer
*buf
;
1550 unsigned long flags
;
1552 cx88_sram_channel_dump(core
, &cx88_sram_channels
[SRAM_CH21
]);
1554 cx_clear(MO_VID_DMACNTRL
, 0x11);
1555 cx_clear(VID_CAPTURE_CONTROL
, 0x06);
1557 spin_lock_irqsave(&dev
->slock
,flags
);
1558 while (!list_empty(&q
->active
)) {
1559 buf
= list_entry(q
->active
.next
, struct cx88_buffer
, vb
.queue
);
1560 list_del(&buf
->vb
.queue
);
1561 buf
->vb
.state
= VIDEOBUF_ERROR
;
1562 wake_up(&buf
->vb
.done
);
1563 printk("%s/0: [%p/%d] timeout - dma=0x%08lx\n", core
->name
,
1564 buf
, buf
->vb
.i
, (unsigned long)buf
->risc
.dma
);
1566 restart_video_queue(dev
,q
);
1567 spin_unlock_irqrestore(&dev
->slock
,flags
);
1570 static const char *cx88_vid_irqs
[32] = {
1571 "y_risci1", "u_risci1", "v_risci1", "vbi_risc1",
1572 "y_risci2", "u_risci2", "v_risci2", "vbi_risc2",
1573 "y_oflow", "u_oflow", "v_oflow", "vbi_oflow",
1574 "y_sync", "u_sync", "v_sync", "vbi_sync",
1575 "opc_err", "par_err", "rip_err", "pci_abort",
1578 static void cx8800_vid_irq(struct cx8800_dev
*dev
)
1580 struct cx88_core
*core
= dev
->core
;
1581 u32 status
, mask
, count
;
1583 status
= cx_read(MO_VID_INTSTAT
);
1584 mask
= cx_read(MO_VID_INTMSK
);
1585 if (0 == (status
& mask
))
1587 cx_write(MO_VID_INTSTAT
, status
);
1588 if (irq_debug
|| (status
& mask
& ~0xff))
1589 cx88_print_irqbits(core
->name
, "irq vid",
1590 cx88_vid_irqs
, ARRAY_SIZE(cx88_vid_irqs
),
1593 /* risc op code error */
1594 if (status
& (1 << 16)) {
1595 printk(KERN_WARNING
"%s/0: video risc op code error\n",core
->name
);
1596 cx_clear(MO_VID_DMACNTRL
, 0x11);
1597 cx_clear(VID_CAPTURE_CONTROL
, 0x06);
1598 cx88_sram_channel_dump(core
, &cx88_sram_channels
[SRAM_CH21
]);
1602 if (status
& 0x01) {
1603 spin_lock(&dev
->slock
);
1604 count
= cx_read(MO_VIDY_GPCNT
);
1605 cx88_wakeup(core
, &dev
->vidq
, count
);
1606 spin_unlock(&dev
->slock
);
1610 if (status
& 0x08) {
1611 spin_lock(&dev
->slock
);
1612 count
= cx_read(MO_VBI_GPCNT
);
1613 cx88_wakeup(core
, &dev
->vbiq
, count
);
1614 spin_unlock(&dev
->slock
);
1618 if (status
& 0x10) {
1619 dprintk(2,"stopper video\n");
1620 spin_lock(&dev
->slock
);
1621 restart_video_queue(dev
,&dev
->vidq
);
1622 spin_unlock(&dev
->slock
);
1626 if (status
& 0x80) {
1627 dprintk(2,"stopper vbi\n");
1628 spin_lock(&dev
->slock
);
1629 cx8800_restart_vbi_queue(dev
,&dev
->vbiq
);
1630 spin_unlock(&dev
->slock
);
1634 static irqreturn_t
cx8800_irq(int irq
, void *dev_id
)
1636 struct cx8800_dev
*dev
= dev_id
;
1637 struct cx88_core
*core
= dev
->core
;
1639 int loop
, handled
= 0;
1641 for (loop
= 0; loop
< 10; loop
++) {
1642 status
= cx_read(MO_PCI_INTSTAT
) &
1643 (core
->pci_irqmask
| PCI_INT_VIDINT
);
1646 cx_write(MO_PCI_INTSTAT
, status
);
1649 if (status
& core
->pci_irqmask
)
1650 cx88_core_irq(core
,status
);
1651 if (status
& PCI_INT_VIDINT
)
1652 cx8800_vid_irq(dev
);
1655 printk(KERN_WARNING
"%s/0: irq loop -- clearing mask\n",
1657 cx_write(MO_PCI_INTMSK
,0);
1661 return IRQ_RETVAL(handled
);
1664 /* ----------------------------------------------------------- */
1665 /* exported stuff */
1667 static const struct v4l2_file_operations video_fops
=
1669 .owner
= THIS_MODULE
,
1671 .release
= video_release
,
1675 .unlocked_ioctl
= video_ioctl2
,
1678 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
1679 .vidioc_querycap
= vidioc_querycap
,
1680 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1681 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1682 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1683 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1684 .vidioc_g_fmt_vbi_cap
= cx8800_vbi_fmt
,
1685 .vidioc_try_fmt_vbi_cap
= cx8800_vbi_fmt
,
1686 .vidioc_s_fmt_vbi_cap
= cx8800_vbi_fmt
,
1687 .vidioc_reqbufs
= vidioc_reqbufs
,
1688 .vidioc_querybuf
= vidioc_querybuf
,
1689 .vidioc_qbuf
= vidioc_qbuf
,
1690 .vidioc_dqbuf
= vidioc_dqbuf
,
1691 .vidioc_s_std
= vidioc_s_std
,
1692 .vidioc_enum_input
= vidioc_enum_input
,
1693 .vidioc_g_input
= vidioc_g_input
,
1694 .vidioc_s_input
= vidioc_s_input
,
1695 .vidioc_queryctrl
= vidioc_queryctrl
,
1696 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1697 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1698 .vidioc_streamon
= vidioc_streamon
,
1699 .vidioc_streamoff
= vidioc_streamoff
,
1700 .vidioc_g_tuner
= vidioc_g_tuner
,
1701 .vidioc_s_tuner
= vidioc_s_tuner
,
1702 .vidioc_g_frequency
= vidioc_g_frequency
,
1703 .vidioc_s_frequency
= vidioc_s_frequency
,
1704 #ifdef CONFIG_VIDEO_ADV_DEBUG
1705 .vidioc_g_register
= vidioc_g_register
,
1706 .vidioc_s_register
= vidioc_s_register
,
1710 static struct video_device cx8800_vbi_template
;
1712 static const struct video_device cx8800_video_template
= {
1713 .name
= "cx8800-video",
1714 .fops
= &video_fops
,
1715 .ioctl_ops
= &video_ioctl_ops
,
1716 .tvnorms
= CX88_NORMS
,
1717 .current_norm
= V4L2_STD_NTSC_M
,
1720 static const struct v4l2_file_operations radio_fops
=
1722 .owner
= THIS_MODULE
,
1724 .release
= video_release
,
1725 .unlocked_ioctl
= video_ioctl2
,
1728 static const struct v4l2_ioctl_ops radio_ioctl_ops
= {
1729 .vidioc_querycap
= radio_querycap
,
1730 .vidioc_g_tuner
= radio_g_tuner
,
1731 .vidioc_enum_input
= radio_enum_input
,
1732 .vidioc_g_audio
= radio_g_audio
,
1733 .vidioc_s_tuner
= radio_s_tuner
,
1734 .vidioc_s_audio
= radio_s_audio
,
1735 .vidioc_s_input
= radio_s_input
,
1736 .vidioc_queryctrl
= radio_queryctrl
,
1737 .vidioc_g_ctrl
= vidioc_g_ctrl
,
1738 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1739 .vidioc_g_frequency
= vidioc_g_frequency
,
1740 .vidioc_s_frequency
= vidioc_s_frequency
,
1741 #ifdef CONFIG_VIDEO_ADV_DEBUG
1742 .vidioc_g_register
= vidioc_g_register
,
1743 .vidioc_s_register
= vidioc_s_register
,
1747 static const struct video_device cx8800_radio_template
= {
1748 .name
= "cx8800-radio",
1749 .fops
= &radio_fops
,
1750 .ioctl_ops
= &radio_ioctl_ops
,
1753 /* ----------------------------------------------------------- */
1755 static void cx8800_unregister_video(struct cx8800_dev
*dev
)
1757 if (dev
->radio_dev
) {
1758 if (video_is_registered(dev
->radio_dev
))
1759 video_unregister_device(dev
->radio_dev
);
1761 video_device_release(dev
->radio_dev
);
1762 dev
->radio_dev
= NULL
;
1765 if (video_is_registered(dev
->vbi_dev
))
1766 video_unregister_device(dev
->vbi_dev
);
1768 video_device_release(dev
->vbi_dev
);
1769 dev
->vbi_dev
= NULL
;
1771 if (dev
->video_dev
) {
1772 if (video_is_registered(dev
->video_dev
))
1773 video_unregister_device(dev
->video_dev
);
1775 video_device_release(dev
->video_dev
);
1776 dev
->video_dev
= NULL
;
1780 static int __devinit
cx8800_initdev(struct pci_dev
*pci_dev
,
1781 const struct pci_device_id
*pci_id
)
1783 struct cx8800_dev
*dev
;
1784 struct cx88_core
*core
;
1788 dev
= kzalloc(sizeof(*dev
),GFP_KERNEL
);
1794 if (pci_enable_device(pci_dev
)) {
1798 core
= cx88_core_get(dev
->pci
);
1805 /* print pci info */
1806 pci_read_config_byte(pci_dev
, PCI_CLASS_REVISION
, &dev
->pci_rev
);
1807 pci_read_config_byte(pci_dev
, PCI_LATENCY_TIMER
, &dev
->pci_lat
);
1808 printk(KERN_INFO
"%s/0: found at %s, rev: %d, irq: %d, "
1809 "latency: %d, mmio: 0x%llx\n", core
->name
,
1810 pci_name(pci_dev
), dev
->pci_rev
, pci_dev
->irq
,
1811 dev
->pci_lat
,(unsigned long long)pci_resource_start(pci_dev
,0));
1813 pci_set_master(pci_dev
);
1814 if (!pci_dma_supported(pci_dev
,DMA_BIT_MASK(32))) {
1815 printk("%s/0: Oops: no 32bit PCI DMA ???\n",core
->name
);
1820 /* Initialize VBI template */
1821 memcpy( &cx8800_vbi_template
, &cx8800_video_template
,
1822 sizeof(cx8800_vbi_template
) );
1823 strcpy(cx8800_vbi_template
.name
,"cx8800-vbi");
1825 /* initialize driver struct */
1826 spin_lock_init(&dev
->slock
);
1827 core
->tvnorm
= cx8800_video_template
.current_norm
;
1829 /* init video dma queues */
1830 INIT_LIST_HEAD(&dev
->vidq
.active
);
1831 INIT_LIST_HEAD(&dev
->vidq
.queued
);
1832 dev
->vidq
.timeout
.function
= cx8800_vid_timeout
;
1833 dev
->vidq
.timeout
.data
= (unsigned long)dev
;
1834 init_timer(&dev
->vidq
.timeout
);
1835 cx88_risc_stopper(dev
->pci
,&dev
->vidq
.stopper
,
1836 MO_VID_DMACNTRL
,0x11,0x00);
1838 /* init vbi dma queues */
1839 INIT_LIST_HEAD(&dev
->vbiq
.active
);
1840 INIT_LIST_HEAD(&dev
->vbiq
.queued
);
1841 dev
->vbiq
.timeout
.function
= cx8800_vbi_timeout
;
1842 dev
->vbiq
.timeout
.data
= (unsigned long)dev
;
1843 init_timer(&dev
->vbiq
.timeout
);
1844 cx88_risc_stopper(dev
->pci
,&dev
->vbiq
.stopper
,
1845 MO_VID_DMACNTRL
,0x88,0x00);
1848 err
= request_irq(pci_dev
->irq
, cx8800_irq
,
1849 IRQF_SHARED
| IRQF_DISABLED
, core
->name
, dev
);
1851 printk(KERN_ERR
"%s/0: can't get IRQ %d\n",
1852 core
->name
,pci_dev
->irq
);
1855 cx_set(MO_PCI_INTMSK
, core
->pci_irqmask
);
1857 /* load and configure helper modules */
1859 if (core
->board
.audio_chip
== V4L2_IDENT_WM8775
)
1860 v4l2_i2c_new_subdev(&core
->v4l2_dev
, &core
->i2c_adap
,
1861 "wm8775", 0x36 >> 1, NULL
);
1863 if (core
->board
.audio_chip
== V4L2_IDENT_TVAUDIO
) {
1864 /* This probes for a tda9874 as is used on some
1865 Pixelview Ultra boards. */
1866 v4l2_i2c_new_subdev(&core
->v4l2_dev
, &core
->i2c_adap
,
1867 "tvaudio", 0, I2C_ADDRS(0xb0 >> 1));
1870 switch (core
->boardnr
) {
1871 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD
:
1872 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD
: {
1873 static const struct i2c_board_info rtc_info
= {
1874 I2C_BOARD_INFO("isl1208", 0x6f)
1877 request_module("rtc-isl1208");
1878 core
->i2c_rtc
= i2c_new_device(&core
->i2c_adap
, &rtc_info
);
1880 /* break intentionally omitted */
1881 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO
:
1882 request_module("ir-kbd-i2c");
1885 /* Sets device info at pci_dev */
1886 pci_set_drvdata(pci_dev
, dev
);
1888 /* initial device configuration */
1889 mutex_lock(&core
->lock
);
1890 cx88_set_tvnorm(core
, core
->tvnorm
);
1891 init_controls(core
);
1892 cx88_video_mux(core
, 0);
1894 /* register v4l devices */
1895 dev
->video_dev
= cx88_vdev_init(core
,dev
->pci
,
1896 &cx8800_video_template
,"video");
1897 video_set_drvdata(dev
->video_dev
, dev
);
1898 err
= video_register_device(dev
->video_dev
,VFL_TYPE_GRABBER
,
1899 video_nr
[core
->nr
]);
1901 printk(KERN_ERR
"%s/0: can't register video device\n",
1905 printk(KERN_INFO
"%s/0: registered device %s [v4l2]\n",
1906 core
->name
, video_device_node_name(dev
->video_dev
));
1908 dev
->vbi_dev
= cx88_vdev_init(core
,dev
->pci
,&cx8800_vbi_template
,"vbi");
1909 video_set_drvdata(dev
->vbi_dev
, dev
);
1910 err
= video_register_device(dev
->vbi_dev
,VFL_TYPE_VBI
,
1913 printk(KERN_ERR
"%s/0: can't register vbi device\n",
1917 printk(KERN_INFO
"%s/0: registered device %s\n",
1918 core
->name
, video_device_node_name(dev
->vbi_dev
));
1920 if (core
->board
.radio
.type
== CX88_RADIO
) {
1921 dev
->radio_dev
= cx88_vdev_init(core
,dev
->pci
,
1922 &cx8800_radio_template
,"radio");
1923 video_set_drvdata(dev
->radio_dev
, dev
);
1924 err
= video_register_device(dev
->radio_dev
,VFL_TYPE_RADIO
,
1925 radio_nr
[core
->nr
]);
1927 printk(KERN_ERR
"%s/0: can't register radio device\n",
1931 printk(KERN_INFO
"%s/0: registered device %s\n",
1932 core
->name
, video_device_node_name(dev
->radio_dev
));
1935 /* start tvaudio thread */
1936 if (core
->board
.tuner_type
!= TUNER_ABSENT
) {
1937 core
->kthread
= kthread_run(cx88_audio_thread
, core
, "cx88 tvaudio");
1938 if (IS_ERR(core
->kthread
)) {
1939 err
= PTR_ERR(core
->kthread
);
1940 printk(KERN_ERR
"%s/0: failed to create cx88 audio thread, err=%d\n",
1944 mutex_unlock(&core
->lock
);
1949 cx8800_unregister_video(dev
);
1950 free_irq(pci_dev
->irq
, dev
);
1951 mutex_unlock(&core
->lock
);
1953 cx88_core_put(core
,dev
->pci
);
1959 static void __devexit
cx8800_finidev(struct pci_dev
*pci_dev
)
1961 struct cx8800_dev
*dev
= pci_get_drvdata(pci_dev
);
1962 struct cx88_core
*core
= dev
->core
;
1965 if (core
->kthread
) {
1966 kthread_stop(core
->kthread
);
1967 core
->kthread
= NULL
;
1973 cx88_shutdown(core
); /* FIXME */
1974 pci_disable_device(pci_dev
);
1976 /* unregister stuff */
1978 free_irq(pci_dev
->irq
, dev
);
1979 cx8800_unregister_video(dev
);
1980 pci_set_drvdata(pci_dev
, NULL
);
1983 btcx_riscmem_free(dev
->pci
,&dev
->vidq
.stopper
);
1984 cx88_core_put(core
,dev
->pci
);
1989 static int cx8800_suspend(struct pci_dev
*pci_dev
, pm_message_t state
)
1991 struct cx8800_dev
*dev
= pci_get_drvdata(pci_dev
);
1992 struct cx88_core
*core
= dev
->core
;
1994 /* stop video+vbi capture */
1995 spin_lock(&dev
->slock
);
1996 if (!list_empty(&dev
->vidq
.active
)) {
1997 printk("%s/0: suspend video\n", core
->name
);
1998 stop_video_dma(dev
);
1999 del_timer(&dev
->vidq
.timeout
);
2001 if (!list_empty(&dev
->vbiq
.active
)) {
2002 printk("%s/0: suspend vbi\n", core
->name
);
2003 cx8800_stop_vbi_dma(dev
);
2004 del_timer(&dev
->vbiq
.timeout
);
2006 spin_unlock(&dev
->slock
);
2010 /* FIXME -- shutdown device */
2011 cx88_shutdown(core
);
2013 pci_save_state(pci_dev
);
2014 if (0 != pci_set_power_state(pci_dev
, pci_choose_state(pci_dev
, state
))) {
2015 pci_disable_device(pci_dev
);
2016 dev
->state
.disabled
= 1;
2021 static int cx8800_resume(struct pci_dev
*pci_dev
)
2023 struct cx8800_dev
*dev
= pci_get_drvdata(pci_dev
);
2024 struct cx88_core
*core
= dev
->core
;
2027 if (dev
->state
.disabled
) {
2028 err
=pci_enable_device(pci_dev
);
2030 printk(KERN_ERR
"%s/0: can't enable device\n",
2035 dev
->state
.disabled
= 0;
2037 err
= pci_set_power_state(pci_dev
, PCI_D0
);
2039 printk(KERN_ERR
"%s/0: can't set power state\n", core
->name
);
2040 pci_disable_device(pci_dev
);
2041 dev
->state
.disabled
= 1;
2045 pci_restore_state(pci_dev
);
2047 /* FIXME: re-initialize hardware */
2050 cx88_ir_start(core
);
2052 cx_set(MO_PCI_INTMSK
, core
->pci_irqmask
);
2054 /* restart video+vbi capture */
2055 spin_lock(&dev
->slock
);
2056 if (!list_empty(&dev
->vidq
.active
)) {
2057 printk("%s/0: resume video\n", core
->name
);
2058 restart_video_queue(dev
,&dev
->vidq
);
2060 if (!list_empty(&dev
->vbiq
.active
)) {
2061 printk("%s/0: resume vbi\n", core
->name
);
2062 cx8800_restart_vbi_queue(dev
,&dev
->vbiq
);
2064 spin_unlock(&dev
->slock
);
2070 /* ----------------------------------------------------------- */
2072 static const struct pci_device_id cx8800_pci_tbl
[] = {
2076 .subvendor
= PCI_ANY_ID
,
2077 .subdevice
= PCI_ANY_ID
,
2079 /* --- end of list --- */
2082 MODULE_DEVICE_TABLE(pci
, cx8800_pci_tbl
);
2084 static struct pci_driver cx8800_pci_driver
= {
2086 .id_table
= cx8800_pci_tbl
,
2087 .probe
= cx8800_initdev
,
2088 .remove
= __devexit_p(cx8800_finidev
),
2090 .suspend
= cx8800_suspend
,
2091 .resume
= cx8800_resume
,
2095 static int __init
cx8800_init(void)
2097 printk(KERN_INFO
"cx88/0: cx2388x v4l2 driver version %d.%d.%d loaded\n",
2098 (CX88_VERSION_CODE
>> 16) & 0xff,
2099 (CX88_VERSION_CODE
>> 8) & 0xff,
2100 CX88_VERSION_CODE
& 0xff);
2102 printk(KERN_INFO
"cx2388x: snapshot date %04d-%02d-%02d\n",
2103 SNAPSHOT
/10000, (SNAPSHOT
/100)%100, SNAPSHOT
%100);
2105 return pci_register_driver(&cx8800_pci_driver
);
2108 static void __exit
cx8800_fini(void)
2110 pci_unregister_driver(&cx8800_pci_driver
);
2113 module_init(cx8800_init
);
2114 module_exit(cx8800_fini
);
2116 /* ----------------------------------------------------------- */
2121 * 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