2 * Driver for the Conexant CX25821 PCIe bridge
4 * Copyright (C) 2009 Conexant Systems Inc.
5 * Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
6 * Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
7 * Parts adapted/taken from Eduardo Moscoso Rubino
8 * Copyright (C) 2009 Eduardo Moscoso Rubino <moscoso@TopoLogica.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29 #include "cx25821-video.h"
31 MODULE_DESCRIPTION("v4l2 driver module for cx25821 based TV cards");
32 MODULE_AUTHOR("Hiep Huynh <hiep.huynh@conexant.com>");
33 MODULE_LICENSE("GPL");
35 static unsigned int video_nr
[] = {[0 ... (CX25821_MAXBOARDS
- 1)] = UNSET
};
36 static unsigned int radio_nr
[] = {[0 ... (CX25821_MAXBOARDS
- 1)] = UNSET
};
38 module_param_array(video_nr
, int, NULL
, 0444);
39 module_param_array(radio_nr
, int, NULL
, 0444);
41 MODULE_PARM_DESC(video_nr
, "video device numbers");
42 MODULE_PARM_DESC(radio_nr
, "radio device numbers");
44 static unsigned int video_debug
= VIDEO_DEBUG
;
45 module_param(video_debug
, int, 0644);
46 MODULE_PARM_DESC(video_debug
, "enable debug messages [video]");
48 static unsigned int irq_debug
;
49 module_param(irq_debug
, int, 0644);
50 MODULE_PARM_DESC(irq_debug
, "enable debug messages [IRQ handler]");
52 unsigned int vid_limit
= 16;
53 module_param(vid_limit
, int, 0644);
54 MODULE_PARM_DESC(vid_limit
, "capture memory limit in megabytes");
56 static void cx25821_init_controls(struct cx25821_dev
*dev
, int chan_num
);
58 static const struct v4l2_file_operations video_fops
;
59 static const struct v4l2_ioctl_ops video_ioctl_ops
;
61 #define FORMAT_FLAGS_PACKED 0x01
63 struct cx25821_fmt formats
[] = {
65 .name
= "8 bpp, gray",
66 .fourcc
= V4L2_PIX_FMT_GREY
,
68 .flags
= FORMAT_FLAGS_PACKED
,
70 .name
= "4:1:1, packed, Y41P",
71 .fourcc
= V4L2_PIX_FMT_Y41P
,
73 .flags
= FORMAT_FLAGS_PACKED
,
75 .name
= "4:2:2, packed, YUYV",
76 .fourcc
= V4L2_PIX_FMT_YUYV
,
78 .flags
= FORMAT_FLAGS_PACKED
,
80 .name
= "4:2:2, packed, UYVY",
81 .fourcc
= V4L2_PIX_FMT_UYVY
,
83 .flags
= FORMAT_FLAGS_PACKED
,
86 .fourcc
= V4L2_PIX_FMT_YUV420
,
88 .flags
= FORMAT_FLAGS_PACKED
,
92 int cx25821_get_format_size(void)
94 return ARRAY_SIZE(formats
);
97 struct cx25821_fmt
*cx25821_format_by_fourcc(unsigned int fourcc
)
101 if (fourcc
== V4L2_PIX_FMT_Y41P
|| fourcc
== V4L2_PIX_FMT_YUV411P
)
104 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++)
105 if (formats
[i
].fourcc
== fourcc
)
108 pr_err("%s(0x%08x) NOT FOUND\n", __func__
, fourcc
);
112 void cx25821_dump_video_queue(struct cx25821_dev
*dev
,
113 struct cx25821_dmaqueue
*q
)
115 struct cx25821_buffer
*buf
;
116 struct list_head
*item
;
117 dprintk(1, "%s()\n", __func__
);
119 if (!list_empty(&q
->active
)) {
120 list_for_each(item
, &q
->active
)
121 buf
= list_entry(item
, struct cx25821_buffer
, vb
.queue
);
124 if (!list_empty(&q
->queued
)) {
125 list_for_each(item
, &q
->queued
)
126 buf
= list_entry(item
, struct cx25821_buffer
, vb
.queue
);
131 void cx25821_video_wakeup(struct cx25821_dev
*dev
, struct cx25821_dmaqueue
*q
,
134 struct cx25821_buffer
*buf
;
137 for (bc
= 0;; bc
++) {
138 if (list_empty(&q
->active
)) {
139 dprintk(1, "bc=%d (=0: active empty)\n", bc
);
143 buf
= list_entry(q
->active
.next
, struct cx25821_buffer
,
146 /* count comes from the hw and it is 16bit wide --
147 * this trick handles wrap-arounds correctly for
148 * up to 32767 buffers in flight... */
149 if ((s16
) (count
- buf
->count
) < 0)
152 do_gettimeofday(&buf
->vb
.ts
);
153 buf
->vb
.state
= VIDEOBUF_DONE
;
154 list_del(&buf
->vb
.queue
);
155 wake_up(&buf
->vb
.done
);
158 if (list_empty(&q
->active
))
159 del_timer(&q
->timeout
);
161 mod_timer(&q
->timeout
, jiffies
+ BUFFER_TIMEOUT
);
163 pr_err("%s: %d buffers handled (should be 1)\n", __func__
, bc
);
167 int cx25821_set_tvnorm(struct cx25821_dev
*dev
, v4l2_std_id norm
)
169 dprintk(1, "%s(norm = 0x%08x) name: [%s]\n",
170 __func__
, (unsigned int)norm
, v4l2_norm_to_name(norm
));
174 /* Tell the internal A/V decoder */
175 cx25821_call_all(dev
, core
, s_std
, norm
);
181 struct video_device
*cx25821_vdev_init(struct cx25821_dev
*dev
,
183 struct video_device
*template,
186 struct video_device
*vfd
;
187 dprintk(1, "%s()\n", __func__
);
189 vfd
= video_device_alloc();
193 vfd
->v4l2_dev
= &dev
->v4l2_dev
;
194 vfd
->release
= video_device_release
;
195 snprintf(vfd
->name
, sizeof(vfd
->name
), "%s %s (%s)", dev
->name
, type
,
196 cx25821_boards
[dev
->board
].name
);
197 video_set_drvdata(vfd
, dev
);
202 static int cx25821_ctrl_query(struct v4l2_queryctrl *qctrl)
206 if (qctrl->id < V4L2_CID_BASE || qctrl->id >= V4L2_CID_LASTP1)
208 for (i = 0; i < CX25821_CTLS; i++)
209 if (cx25821_ctls[i].v.id == qctrl->id)
211 if (i == CX25821_CTLS) {
215 *qctrl = cx25821_ctls[i].v;
220 /* resource management */
221 int cx25821_res_get(struct cx25821_dev
*dev
, struct cx25821_fh
*fh
,
224 dprintk(1, "%s()\n", __func__
);
225 if (fh
->resources
& bit
)
226 /* have it already allocated */
230 mutex_lock(&dev
->lock
);
231 if (dev
->channels
[fh
->channel_id
].resources
& bit
) {
232 /* no, someone else uses it */
233 mutex_unlock(&dev
->lock
);
236 /* it's free, grab it */
237 fh
->resources
|= bit
;
238 dev
->channels
[fh
->channel_id
].resources
|= bit
;
239 dprintk(1, "res: get %d\n", bit
);
240 mutex_unlock(&dev
->lock
);
244 int cx25821_res_check(struct cx25821_fh
*fh
, unsigned int bit
)
246 return fh
->resources
& bit
;
249 int cx25821_res_locked(struct cx25821_fh
*fh
, unsigned int bit
)
251 return fh
->dev
->channels
[fh
->channel_id
].resources
& bit
;
254 void cx25821_res_free(struct cx25821_dev
*dev
, struct cx25821_fh
*fh
,
257 BUG_ON((fh
->resources
& bits
) != bits
);
258 dprintk(1, "%s()\n", __func__
);
260 mutex_lock(&dev
->lock
);
261 fh
->resources
&= ~bits
;
262 dev
->channels
[fh
->channel_id
].resources
&= ~bits
;
263 dprintk(1, "res: put %d\n", bits
);
264 mutex_unlock(&dev
->lock
);
267 int cx25821_video_mux(struct cx25821_dev
*dev
, unsigned int input
)
269 struct v4l2_routing route
;
270 memset(&route
, 0, sizeof(route
));
272 dprintk(1, "%s(): video_mux: %d [vmux=%d, gpio=0x%x,0x%x,0x%x,0x%x]\n",
273 __func__
, input
, INPUT(input
)->vmux
, INPUT(input
)->gpio0
,
274 INPUT(input
)->gpio1
, INPUT(input
)->gpio2
, INPUT(input
)->gpio3
);
277 route
.input
= INPUT(input
)->vmux
;
279 /* Tell the internal A/V decoder */
280 cx25821_call_all(dev
, video
, s_routing
, INPUT(input
)->vmux
, 0, 0);
285 int cx25821_start_video_dma(struct cx25821_dev
*dev
,
286 struct cx25821_dmaqueue
*q
,
287 struct cx25821_buffer
*buf
,
288 struct sram_channel
*channel
)
292 /* setup fifo + format */
293 cx25821_sram_channel_setup(dev
, channel
, buf
->bpl
, buf
->risc
.dma
);
296 cx_write(channel
->gpcnt_ctl
, 3);
300 cx_set(PCI_INT_MSK
, cx_read(PCI_INT_MSK
) | (1 << channel
->i
));
301 cx_set(channel
->int_msk
, 0x11);
304 cx_write(channel
->dma_ctl
, 0x11); /* FIFO and RISC enable */
306 /* make sure upstream setting if any is reversed */
307 tmp
= cx_read(VID_CH_MODE_SEL
);
308 cx_write(VID_CH_MODE_SEL
, tmp
& 0xFFFFFE00);
313 int cx25821_restart_video_queue(struct cx25821_dev
*dev
,
314 struct cx25821_dmaqueue
*q
,
315 struct sram_channel
*channel
)
317 struct cx25821_buffer
*buf
, *prev
;
318 struct list_head
*item
;
320 if (!list_empty(&q
->active
)) {
321 buf
= list_entry(q
->active
.next
, struct cx25821_buffer
,
324 cx25821_start_video_dma(dev
, q
, buf
, channel
);
326 list_for_each(item
, &q
->active
) {
327 buf
= list_entry(item
, struct cx25821_buffer
, vb
.queue
);
328 buf
->count
= q
->count
++;
331 mod_timer(&q
->timeout
, jiffies
+ BUFFER_TIMEOUT
);
337 if (list_empty(&q
->queued
))
340 buf
= list_entry(q
->queued
.next
, struct cx25821_buffer
,
344 list_move_tail(&buf
->vb
.queue
, &q
->active
);
345 cx25821_start_video_dma(dev
, q
, buf
, channel
);
346 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
347 buf
->count
= q
->count
++;
348 mod_timer(&q
->timeout
, jiffies
+ BUFFER_TIMEOUT
);
349 } else if (prev
->vb
.width
== buf
->vb
.width
&&
350 prev
->vb
.height
== buf
->vb
.height
&&
351 prev
->fmt
== buf
->fmt
) {
352 list_move_tail(&buf
->vb
.queue
, &q
->active
);
353 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
354 buf
->count
= q
->count
++;
355 prev
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
356 prev
->risc
.jmp
[2] = cpu_to_le32(0); /* Bits 63 - 32 */
364 void cx25821_vid_timeout(unsigned long data
)
366 struct cx25821_data
*timeout_data
= (struct cx25821_data
*)data
;
367 struct cx25821_dev
*dev
= timeout_data
->dev
;
368 struct sram_channel
*channel
= timeout_data
->channel
;
369 struct cx25821_dmaqueue
*q
= &dev
->channels
[channel
->i
].vidq
;
370 struct cx25821_buffer
*buf
;
373 /* cx25821_sram_channel_dump(dev, channel); */
374 cx_clear(channel
->dma_ctl
, 0x11);
376 spin_lock_irqsave(&dev
->slock
, flags
);
377 while (!list_empty(&q
->active
)) {
378 buf
= list_entry(q
->active
.next
, struct cx25821_buffer
,
380 list_del(&buf
->vb
.queue
);
382 buf
->vb
.state
= VIDEOBUF_ERROR
;
383 wake_up(&buf
->vb
.done
);
386 cx25821_restart_video_queue(dev
, q
, channel
);
387 spin_unlock_irqrestore(&dev
->slock
, flags
);
390 int cx25821_video_irq(struct cx25821_dev
*dev
, int chan_num
, u32 status
)
395 struct sram_channel
*channel
= dev
->channels
[chan_num
].sram_channels
;
397 mask
= cx_read(channel
->int_msk
);
398 if (0 == (status
& mask
))
401 cx_write(channel
->int_stat
, status
);
403 /* risc op code error */
404 if (status
& (1 << 16)) {
405 pr_warn("%s, %s: video risc op code error\n",
406 dev
->name
, channel
->name
);
407 cx_clear(channel
->dma_ctl
, 0x11);
408 cx25821_sram_channel_dump(dev
, channel
);
412 if (status
& FLD_VID_DST_RISC1
) {
413 spin_lock(&dev
->slock
);
414 count
= cx_read(channel
->gpcnt
);
415 cx25821_video_wakeup(dev
, &dev
->channels
[channel
->i
].vidq
,
417 spin_unlock(&dev
->slock
);
423 dprintk(2, "stopper video\n");
424 spin_lock(&dev
->slock
);
425 cx25821_restart_video_queue(dev
,
426 &dev
->channels
[channel
->i
].vidq
, channel
);
427 spin_unlock(&dev
->slock
);
433 void cx25821_videoioctl_unregister(struct cx25821_dev
*dev
)
435 if (dev
->ioctl_dev
) {
436 if (video_is_registered(dev
->ioctl_dev
))
437 video_unregister_device(dev
->ioctl_dev
);
439 video_device_release(dev
->ioctl_dev
);
441 dev
->ioctl_dev
= NULL
;
445 void cx25821_video_unregister(struct cx25821_dev
*dev
, int chan_num
)
447 cx_clear(PCI_INT_MSK
, 1);
449 if (dev
->channels
[chan_num
].video_dev
) {
450 if (video_is_registered(dev
->channels
[chan_num
].video_dev
))
451 video_unregister_device(
452 dev
->channels
[chan_num
].video_dev
);
454 video_device_release(
455 dev
->channels
[chan_num
].video_dev
);
457 dev
->channels
[chan_num
].video_dev
= NULL
;
459 btcx_riscmem_free(dev
->pci
,
460 &dev
->channels
[chan_num
].vidq
.stopper
);
462 pr_warn("device %d released!\n", chan_num
);
467 int cx25821_video_register(struct cx25821_dev
*dev
)
472 struct video_device cx25821_video_device
= {
473 .name
= "cx25821-video",
476 .ioctl_ops
= &video_ioctl_ops
,
477 .tvnorms
= CX25821_NORMS
,
478 .current_norm
= V4L2_STD_NTSC_M
,
481 spin_lock_init(&dev
->slock
);
483 for (i
= 0; i
< MAX_VID_CHANNEL_NUM
- 1; ++i
) {
484 cx25821_init_controls(dev
, i
);
486 cx25821_risc_stopper(dev
->pci
, &dev
->channels
[i
].vidq
.stopper
,
487 dev
->channels
[i
].sram_channels
->dma_ctl
, 0x11, 0);
489 dev
->channels
[i
].sram_channels
= &cx25821_sram_channels
[i
];
490 dev
->channels
[i
].video_dev
= NULL
;
491 dev
->channels
[i
].resources
= 0;
493 cx_write(dev
->channels
[i
].sram_channels
->int_stat
, 0xffffffff);
495 INIT_LIST_HEAD(&dev
->channels
[i
].vidq
.active
);
496 INIT_LIST_HEAD(&dev
->channels
[i
].vidq
.queued
);
498 dev
->channels
[i
].timeout_data
.dev
= dev
;
499 dev
->channels
[i
].timeout_data
.channel
=
500 &cx25821_sram_channels
[i
];
501 dev
->channels
[i
].vidq
.timeout
.function
= cx25821_vid_timeout
;
502 dev
->channels
[i
].vidq
.timeout
.data
=
503 (unsigned long)&dev
->channels
[i
].timeout_data
;
504 init_timer(&dev
->channels
[i
].vidq
.timeout
);
506 /* register v4l devices */
507 dev
->channels
[i
].video_dev
= cx25821_vdev_init(dev
, dev
->pci
,
508 &cx25821_video_device
, "video");
510 err
= video_register_device(dev
->channels
[i
].video_dev
,
511 VFL_TYPE_GRABBER
, video_nr
[dev
->nr
]);
518 /* set PCI interrupt */
519 cx_set(PCI_INT_MSK
, 0xff);
521 /* initial device configuration */
522 mutex_lock(&dev
->lock
);
524 dev
->tvnorm
= cx25821_video_device
.current_norm
;
525 cx25821_set_tvnorm(dev
, dev
->tvnorm
);
527 mutex_unlock(&dev
->lock
);
532 cx25821_video_unregister(dev
, i
);
536 int cx25821_buffer_setup(struct videobuf_queue
*q
, unsigned int *count
,
539 struct cx25821_fh
*fh
= q
->priv_data
;
541 *size
= fh
->fmt
->depth
* fh
->width
* fh
->height
>> 3;
546 if (*size
* *count
> vid_limit
* 1024 * 1024)
547 *count
= (vid_limit
* 1024 * 1024) / *size
;
552 int cx25821_buffer_prepare(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
,
553 enum v4l2_field field
)
555 struct cx25821_fh
*fh
= q
->priv_data
;
556 struct cx25821_dev
*dev
= fh
->dev
;
557 struct cx25821_buffer
*buf
=
558 container_of(vb
, struct cx25821_buffer
, vb
);
559 int rc
, init_buffer
= 0;
560 u32 line0_offset
, line1_offset
;
561 struct videobuf_dmabuf
*dma
= videobuf_to_dma(&buf
->vb
);
562 int bpl_local
= LINE_SIZE_D1
;
563 int channel_opened
= fh
->channel_id
;
565 BUG_ON(NULL
== fh
->fmt
);
566 if (fh
->width
< 48 || fh
->width
> 720 ||
567 fh
->height
< 32 || fh
->height
> 576)
570 buf
->vb
.size
= (fh
->width
* fh
->height
* fh
->fmt
->depth
) >> 3;
572 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
)
575 if (buf
->fmt
!= fh
->fmt
||
576 buf
->vb
.width
!= fh
->width
||
577 buf
->vb
.height
!= fh
->height
|| buf
->vb
.field
!= field
) {
579 buf
->vb
.width
= fh
->width
;
580 buf
->vb
.height
= fh
->height
;
581 buf
->vb
.field
= field
;
585 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
587 rc
= videobuf_iolock(q
, &buf
->vb
, NULL
);
589 printk(KERN_DEBUG
pr_fmt("videobuf_iolock failed!\n"));
594 dprintk(1, "init_buffer=%d\n", init_buffer
);
598 channel_opened
= dev
->channel_opened
;
599 if (channel_opened
< 0 || channel_opened
> 7)
602 if (dev
->channels
[channel_opened
].pixel_formats
==
604 buf
->bpl
= (buf
->fmt
->depth
* buf
->vb
.width
) >> 3;
606 buf
->bpl
= (buf
->fmt
->depth
>> 3) * (buf
->vb
.width
);
608 if (dev
->channels
[channel_opened
].pixel_formats
==
610 bpl_local
= buf
->bpl
;
612 bpl_local
= buf
->bpl
; /* Default */
614 if (channel_opened
>= 0 && channel_opened
<= 7) {
615 if (dev
->channels
[channel_opened
]
616 .use_cif_resolution
) {
617 if (dev
->tvnorm
& V4L2_STD_PAL_BG
||
618 dev
->tvnorm
& V4L2_STD_PAL_DK
)
619 bpl_local
= 352 << 1;
621 bpl_local
= dev
->channels
[
628 switch (buf
->vb
.field
) {
630 cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
631 dma
->sglist
, 0, UNSET
,
632 buf
->bpl
, 0, buf
->vb
.height
);
634 case V4L2_FIELD_BOTTOM
:
635 cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
636 dma
->sglist
, UNSET
, 0,
637 buf
->bpl
, 0, buf
->vb
.height
);
639 case V4L2_FIELD_INTERLACED
:
640 /* All other formats are top field first */
642 line1_offset
= buf
->bpl
;
643 dprintk(1, "top field first\n");
645 cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
646 dma
->sglist
, line0_offset
,
647 bpl_local
, bpl_local
, bpl_local
,
648 buf
->vb
.height
>> 1);
650 case V4L2_FIELD_SEQ_TB
:
651 cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
653 0, buf
->bpl
* (buf
->vb
.height
>> 1),
654 buf
->bpl
, 0, buf
->vb
.height
>> 1);
656 case V4L2_FIELD_SEQ_BT
:
657 cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
659 buf
->bpl
* (buf
->vb
.height
>> 1), 0,
660 buf
->bpl
, 0, buf
->vb
.height
>> 1);
667 dprintk(2, "[%p/%d] buffer_prep - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
668 buf
, buf
->vb
.i
, fh
->width
, fh
->height
, fh
->fmt
->depth
,
669 fh
->fmt
->name
, (unsigned long)buf
->risc
.dma
);
671 buf
->vb
.state
= VIDEOBUF_PREPARED
;
676 cx25821_free_buffer(q
, buf
);
680 void cx25821_buffer_release(struct videobuf_queue
*q
,
681 struct videobuf_buffer
*vb
)
683 struct cx25821_buffer
*buf
=
684 container_of(vb
, struct cx25821_buffer
, vb
);
686 cx25821_free_buffer(q
, buf
);
689 struct videobuf_queue
*get_queue(struct cx25821_fh
*fh
)
692 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
700 int cx25821_get_resource(struct cx25821_fh
*fh
, int resource
)
703 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
711 int cx25821_video_mmap(struct file
*file
, struct vm_area_struct
*vma
)
713 struct cx25821_fh
*fh
= file
->private_data
;
715 return videobuf_mmap_mapper(get_queue(fh
), vma
);
719 static void buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
721 struct cx25821_buffer
*buf
=
722 container_of(vb
, struct cx25821_buffer
, vb
);
723 struct cx25821_buffer
*prev
;
724 struct cx25821_fh
*fh
= vq
->priv_data
;
725 struct cx25821_dev
*dev
= fh
->dev
;
726 struct cx25821_dmaqueue
*q
= &dev
->channels
[fh
->channel_id
].vidq
;
728 /* add jump to stopper */
729 buf
->risc
.jmp
[0] = cpu_to_le32(RISC_JUMP
| RISC_IRQ1
| RISC_CNT_INC
);
730 buf
->risc
.jmp
[1] = cpu_to_le32(q
->stopper
.dma
);
731 buf
->risc
.jmp
[2] = cpu_to_le32(0); /* bits 63-32 */
733 dprintk(2, "jmp to stopper (0x%x)\n", buf
->risc
.jmp
[1]);
735 if (!list_empty(&q
->queued
)) {
736 list_add_tail(&buf
->vb
.queue
, &q
->queued
);
737 buf
->vb
.state
= VIDEOBUF_QUEUED
;
738 dprintk(2, "[%p/%d] buffer_queue - append to queued\n", buf
,
741 } else if (list_empty(&q
->active
)) {
742 list_add_tail(&buf
->vb
.queue
, &q
->active
);
743 cx25821_start_video_dma(dev
, q
, buf
,
744 dev
->channels
[fh
->channel_id
].sram_channels
);
745 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
746 buf
->count
= q
->count
++;
747 mod_timer(&q
->timeout
, jiffies
+ BUFFER_TIMEOUT
);
748 dprintk(2, "[%p/%d] buffer_queue - first active, buf cnt = %d, q->count = %d\n",
749 buf
, buf
->vb
.i
, buf
->count
, q
->count
);
751 prev
= list_entry(q
->active
.prev
, struct cx25821_buffer
,
753 if (prev
->vb
.width
== buf
->vb
.width
754 && prev
->vb
.height
== buf
->vb
.height
755 && prev
->fmt
== buf
->fmt
) {
756 list_add_tail(&buf
->vb
.queue
, &q
->active
);
757 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
758 buf
->count
= q
->count
++;
759 prev
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
761 /* 64 bit bits 63-32 */
762 prev
->risc
.jmp
[2] = cpu_to_le32(0);
763 dprintk(2, "[%p/%d] buffer_queue - append to active, buf->count=%d\n",
764 buf
, buf
->vb
.i
, buf
->count
);
767 list_add_tail(&buf
->vb
.queue
, &q
->queued
);
768 buf
->vb
.state
= VIDEOBUF_QUEUED
;
769 dprintk(2, "[%p/%d] buffer_queue - first queued\n", buf
,
774 if (list_empty(&q
->active
))
775 dprintk(2, "active queue empty!\n");
778 static struct videobuf_queue_ops cx25821_video_qops
= {
779 .buf_setup
= cx25821_buffer_setup
,
780 .buf_prepare
= cx25821_buffer_prepare
,
781 .buf_queue
= buffer_queue
,
782 .buf_release
= cx25821_buffer_release
,
785 static int video_open(struct file
*file
)
787 struct video_device
*vdev
= video_devdata(file
);
788 struct cx25821_dev
*h
, *dev
= video_drvdata(file
);
789 struct cx25821_fh
*fh
;
790 struct list_head
*list
;
791 int minor
= video_devdata(file
)->minor
;
792 enum v4l2_buf_type type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
797 dprintk(1, "open dev=%s type=%s\n", video_device_node_name(vdev
),
798 v4l2_type_names
[type
]);
800 /* allocate + initialize per filehandle data */
801 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
805 mutex_lock(&cx25821_devlist_mutex
);
807 list_for_each(list
, &cx25821_devlist
)
809 h
= list_entry(list
, struct cx25821_dev
, devlist
);
811 for (i
= 0; i
< MAX_VID_CHANNEL_NUM
; i
++) {
812 if (h
->channels
[i
].video_dev
&&
813 h
->channels
[i
].video_dev
->minor
== minor
) {
816 type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
822 mutex_unlock(&cx25821_devlist_mutex
);
827 file
->private_data
= fh
;
831 fh
->channel_id
= ch_id
;
833 if (dev
->tvnorm
& V4L2_STD_PAL_BG
|| dev
->tvnorm
& V4L2_STD_PAL_DK
)
838 dev
->channel_opened
= fh
->channel_id
;
839 if (dev
->channels
[ch_id
].pixel_formats
== PIXEL_FRMT_411
)
840 pix_format
= V4L2_PIX_FMT_Y41P
;
842 pix_format
= V4L2_PIX_FMT_YUYV
;
843 fh
->fmt
= cx25821_format_by_fourcc(pix_format
);
845 v4l2_prio_open(&dev
->channels
[ch_id
].prio
, &fh
->prio
);
847 videobuf_queue_sg_init(&fh
->vidq
, &cx25821_video_qops
, &dev
->pci
->dev
,
848 &dev
->slock
, V4L2_BUF_TYPE_VIDEO_CAPTURE
,
849 V4L2_FIELD_INTERLACED
, sizeof(struct cx25821_buffer
),
852 dprintk(1, "post videobuf_queue_init()\n");
853 mutex_unlock(&cx25821_devlist_mutex
);
858 static ssize_t
video_read(struct file
*file
, char __user
* data
, size_t count
,
861 struct cx25821_fh
*fh
= file
->private_data
;
864 case V4L2_BUF_TYPE_VIDEO_CAPTURE
:
865 if (cx25821_res_locked(fh
, RESOURCE_VIDEO0
))
868 return videobuf_read_one(&fh
->vidq
, data
, count
, ppos
,
869 file
->f_flags
& O_NONBLOCK
);
877 static unsigned int video_poll(struct file
*file
,
878 struct poll_table_struct
*wait
)
880 struct cx25821_fh
*fh
= file
->private_data
;
881 struct cx25821_buffer
*buf
;
883 if (cx25821_res_check(fh
, RESOURCE_VIDEO0
)) {
884 /* streaming capture */
885 if (list_empty(&fh
->vidq
.stream
))
887 buf
= list_entry(fh
->vidq
.stream
.next
,
888 struct cx25821_buffer
, vb
.stream
);
891 buf
= (struct cx25821_buffer
*)fh
->vidq
.read_buf
;
896 poll_wait(file
, &buf
->vb
.done
, wait
);
897 if (buf
->vb
.state
== VIDEOBUF_DONE
|| buf
->vb
.state
== VIDEOBUF_ERROR
) {
898 if (buf
->vb
.state
== VIDEOBUF_DONE
) {
899 struct cx25821_dev
*dev
= fh
->dev
;
901 if (dev
&& dev
->channels
[fh
->channel_id
]
902 .use_cif_resolution
) {
903 u8 cam_id
= *((char *)buf
->vb
.baddr
+ 3);
904 memcpy((char *)buf
->vb
.baddr
,
905 (char *)buf
->vb
.baddr
+ (fh
->width
* 2),
907 *((char *)buf
->vb
.baddr
+ 3) = cam_id
;
911 return POLLIN
| POLLRDNORM
;
917 static int video_release(struct file
*file
)
919 struct cx25821_fh
*fh
= file
->private_data
;
920 struct cx25821_dev
*dev
= fh
->dev
;
922 /* stop the risc engine and fifo */
923 cx_write(channel0
->dma_ctl
, 0); /* FIFO and RISC disable */
925 /* stop video capture */
926 if (cx25821_res_check(fh
, RESOURCE_VIDEO0
)) {
927 videobuf_queue_cancel(&fh
->vidq
);
928 cx25821_res_free(dev
, fh
, RESOURCE_VIDEO0
);
931 if (fh
->vidq
.read_buf
) {
932 cx25821_buffer_release(&fh
->vidq
, fh
->vidq
.read_buf
);
933 kfree(fh
->vidq
.read_buf
);
936 videobuf_mmap_free(&fh
->vidq
);
938 v4l2_prio_close(&dev
->channels
[fh
->channel_id
].prio
, fh
->prio
);
939 file
->private_data
= NULL
;
945 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
947 struct cx25821_fh
*fh
= priv
;
948 struct cx25821_dev
*dev
= fh
->dev
;
950 if (unlikely(fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
))
953 if (unlikely(i
!= fh
->type
))
956 if (unlikely(!cx25821_res_get(dev
, fh
, cx25821_get_resource(fh
,
960 return videobuf_streamon(get_queue(fh
));
963 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
965 struct cx25821_fh
*fh
= priv
;
966 struct cx25821_dev
*dev
= fh
->dev
;
969 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
974 res
= cx25821_get_resource(fh
, RESOURCE_VIDEO0
);
975 err
= videobuf_streamoff(get_queue(fh
));
978 cx25821_res_free(dev
, fh
, res
);
982 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
983 struct v4l2_format
*f
)
985 struct cx25821_fh
*fh
= priv
;
986 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
987 struct v4l2_mbus_framefmt mbus_fmt
;
989 int pix_format
= PIXEL_FRMT_422
;
992 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
998 dprintk(2, "%s()\n", __func__
);
999 err
= cx25821_vidioc_try_fmt_vid_cap(file
, priv
, f
);
1004 fh
->fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
1005 fh
->vidq
.field
= f
->fmt
.pix
.field
;
1007 /* check if width and height is valid based on set standard */
1008 if (cx25821_is_valid_width(f
->fmt
.pix
.width
, dev
->tvnorm
))
1009 fh
->width
= f
->fmt
.pix
.width
;
1011 if (cx25821_is_valid_height(f
->fmt
.pix
.height
, dev
->tvnorm
))
1012 fh
->height
= f
->fmt
.pix
.height
;
1014 if (f
->fmt
.pix
.pixelformat
== V4L2_PIX_FMT_Y41P
)
1015 pix_format
= PIXEL_FRMT_411
;
1016 else if (f
->fmt
.pix
.pixelformat
== V4L2_PIX_FMT_YUYV
)
1017 pix_format
= PIXEL_FRMT_422
;
1021 cx25821_set_pixel_format(dev
, SRAM_CH00
, pix_format
);
1023 /* check if cif resolution */
1024 if (fh
->width
== 320 || fh
->width
== 352)
1025 dev
->channels
[fh
->channel_id
].use_cif_resolution
= 1;
1027 dev
->channels
[fh
->channel_id
].use_cif_resolution
= 0;
1029 dev
->channels
[fh
->channel_id
].cif_width
= fh
->width
;
1030 medusa_set_resolution(dev
, fh
->width
, SRAM_CH00
);
1032 dprintk(2, "%s(): width=%d height=%d field=%d\n", __func__
, fh
->width
,
1033 fh
->height
, fh
->vidq
.field
);
1034 v4l2_fill_mbus_format(&mbus_fmt
, &f
->fmt
.pix
, V4L2_MBUS_FMT_FIXED
);
1035 cx25821_call_all(dev
, video
, s_mbus_fmt
, &mbus_fmt
);
1040 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1043 struct cx25821_fh
*fh
= priv
;
1044 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1046 ret_val
= videobuf_dqbuf(get_queue(fh
), p
, file
->f_flags
& O_NONBLOCK
);
1048 p
->sequence
= dev
->channels
[fh
->channel_id
].vidq
.count
;
1053 static int vidioc_log_status(struct file
*file
, void *priv
)
1055 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1056 struct cx25821_fh
*fh
= priv
;
1059 struct sram_channel
*sram_ch
= dev
->channels
[fh
->channel_id
]
1063 snprintf(name
, sizeof(name
), "%s/2", dev
->name
);
1064 pr_info("%s/2: ============ START LOG STATUS ============\n",
1066 cx25821_call_all(dev
, core
, log_status
);
1067 tmp
= cx_read(sram_ch
->dma_ctl
);
1068 pr_info("Video input 0 is %s\n",
1069 (tmp
& 0x11) ? "streaming" : "stopped");
1070 pr_info("%s/2: ============= END LOG STATUS =============\n",
1075 static int vidioc_s_ctrl(struct file
*file
, void *priv
,
1076 struct v4l2_control
*ctl
)
1078 struct cx25821_fh
*fh
= priv
;
1079 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1083 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1089 return cx25821_set_control(dev
, ctl
, fh
->channel_id
);
1093 int cx25821_vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
1094 struct v4l2_format
*f
)
1096 struct cx25821_fh
*fh
= priv
;
1098 f
->fmt
.pix
.width
= fh
->width
;
1099 f
->fmt
.pix
.height
= fh
->height
;
1100 f
->fmt
.pix
.field
= fh
->vidq
.field
;
1101 f
->fmt
.pix
.pixelformat
= fh
->fmt
->fourcc
;
1102 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fh
->fmt
->depth
) >> 3;
1103 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
1108 int cx25821_vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
1109 struct v4l2_format
*f
)
1111 struct cx25821_fmt
*fmt
;
1112 enum v4l2_field field
;
1113 unsigned int maxw
, maxh
;
1115 fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
1119 field
= f
->fmt
.pix
.field
;
1123 if (V4L2_FIELD_ANY
== field
) {
1124 if (f
->fmt
.pix
.height
> maxh
/ 2)
1125 field
= V4L2_FIELD_INTERLACED
;
1127 field
= V4L2_FIELD_TOP
;
1131 case V4L2_FIELD_TOP
:
1132 case V4L2_FIELD_BOTTOM
:
1135 case V4L2_FIELD_INTERLACED
:
1141 f
->fmt
.pix
.field
= field
;
1142 if (f
->fmt
.pix
.height
< 32)
1143 f
->fmt
.pix
.height
= 32;
1144 if (f
->fmt
.pix
.height
> maxh
)
1145 f
->fmt
.pix
.height
= maxh
;
1146 if (f
->fmt
.pix
.width
< 48)
1147 f
->fmt
.pix
.width
= 48;
1148 if (f
->fmt
.pix
.width
> maxw
)
1149 f
->fmt
.pix
.width
= maxw
;
1150 f
->fmt
.pix
.width
&= ~0x03;
1151 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
1152 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
1157 int cx25821_vidioc_querycap(struct file
*file
, void *priv
,
1158 struct v4l2_capability
*cap
)
1160 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1162 strcpy(cap
->driver
, "cx25821");
1163 strlcpy(cap
->card
, cx25821_boards
[dev
->board
].name
, sizeof(cap
->card
));
1164 sprintf(cap
->bus_info
, "PCIe:%s", pci_name(dev
->pci
));
1165 cap
->version
= CX25821_VERSION_CODE
;
1166 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_READWRITE
|
1168 if (UNSET
!= dev
->tuner_type
)
1169 cap
->capabilities
|= V4L2_CAP_TUNER
;
1173 int cx25821_vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
1174 struct v4l2_fmtdesc
*f
)
1176 if (unlikely(f
->index
>= ARRAY_SIZE(formats
)))
1179 strlcpy(f
->description
, formats
[f
->index
].name
, sizeof(f
->description
));
1180 f
->pixelformat
= formats
[f
->index
].fourcc
;
1185 int cx25821_vidioc_reqbufs(struct file
*file
, void *priv
,
1186 struct v4l2_requestbuffers
*p
)
1188 struct cx25821_fh
*fh
= priv
;
1189 return videobuf_reqbufs(get_queue(fh
), p
);
1192 int cx25821_vidioc_querybuf(struct file
*file
, void *priv
,
1193 struct v4l2_buffer
*p
)
1195 struct cx25821_fh
*fh
= priv
;
1196 return videobuf_querybuf(get_queue(fh
), p
);
1199 int cx25821_vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1201 struct cx25821_fh
*fh
= priv
;
1202 return videobuf_qbuf(get_queue(fh
), p
);
1205 int cx25821_vidioc_g_priority(struct file
*file
, void *f
, enum v4l2_priority
*p
)
1207 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)f
)->dev
;
1208 struct cx25821_fh
*fh
= f
;
1210 *p
= v4l2_prio_max(&dev
->channels
[fh
->channel_id
].prio
);
1215 int cx25821_vidioc_s_priority(struct file
*file
, void *f
,
1216 enum v4l2_priority prio
)
1218 struct cx25821_fh
*fh
= f
;
1219 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)f
)->dev
;
1221 return v4l2_prio_change(&dev
->channels
[fh
->channel_id
].prio
, &fh
->prio
,
1226 int cx25821_vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id
* tvnorms
)
1228 struct cx25821_fh
*fh
= priv
;
1229 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1232 dprintk(1, "%s()\n", __func__
);
1235 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1241 if (dev
->tvnorm
== *tvnorms
)
1244 mutex_lock(&dev
->lock
);
1245 cx25821_set_tvnorm(dev
, *tvnorms
);
1246 mutex_unlock(&dev
->lock
);
1248 medusa_set_videostandard(dev
);
1254 int cx25821_enum_input(struct cx25821_dev
*dev
, struct v4l2_input
*i
)
1256 static const char * const iname
[] = {
1257 [CX25821_VMUX_COMPOSITE
] = "Composite",
1258 [CX25821_VMUX_SVIDEO
] = "S-Video",
1259 [CX25821_VMUX_DEBUG
] = "for debug only",
1262 dprintk(1, "%s()\n", __func__
);
1268 if (0 == INPUT(n
)->type
)
1271 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
1272 strcpy(i
->name
, iname
[INPUT(n
)->type
]);
1274 i
->std
= CX25821_NORMS
;
1278 int cx25821_vidioc_enum_input(struct file
*file
, void *priv
,
1279 struct v4l2_input
*i
)
1281 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1282 dprintk(1, "%s()\n", __func__
);
1283 return cx25821_enum_input(dev
, i
);
1286 int cx25821_vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1288 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1291 dprintk(1, "%s(): returns %d\n", __func__
, *i
);
1295 int cx25821_vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1297 struct cx25821_fh
*fh
= priv
;
1298 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1301 dprintk(1, "%s(%d)\n", __func__
, i
);
1304 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1310 if (i
>= CX25821_NR_INPUT
) {
1311 dprintk(1, "%s(): -EINVAL\n", __func__
);
1315 mutex_lock(&dev
->lock
);
1316 cx25821_video_mux(dev
, i
);
1317 mutex_unlock(&dev
->lock
);
1322 int cx25821_vidioc_g_frequency(struct file
*file
, void *priv
,
1323 struct v4l2_frequency
*f
)
1325 struct cx25821_fh
*fh
= priv
;
1326 struct cx25821_dev
*dev
= fh
->dev
;
1328 f
->frequency
= dev
->freq
;
1330 cx25821_call_all(dev
, tuner
, g_frequency
, f
);
1335 int cx25821_set_freq(struct cx25821_dev
*dev
, struct v4l2_frequency
*f
)
1337 mutex_lock(&dev
->lock
);
1338 dev
->freq
= f
->frequency
;
1340 cx25821_call_all(dev
, tuner
, s_frequency
, f
);
1342 /* When changing channels it is required to reset TVAUDIO */
1345 mutex_unlock(&dev
->lock
);
1350 int cx25821_vidioc_s_frequency(struct file
*file
, void *priv
,
1351 struct v4l2_frequency
*f
)
1353 struct cx25821_fh
*fh
= priv
;
1354 struct cx25821_dev
*dev
;
1359 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1364 pr_err("Invalid fh pointer!\n");
1368 return cx25821_set_freq(dev
, f
);
1372 #ifdef CONFIG_VIDEO_ADV_DEBUG
1373 int cx25821_vidioc_g_register(struct file
*file
, void *fh
,
1374 struct v4l2_dbg_register
*reg
)
1376 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)fh
)->dev
;
1378 if (!v4l2_chip_match_host(®
->match
))
1381 cx25821_call_all(dev
, core
, g_register
, reg
);
1386 int cx25821_vidioc_s_register(struct file
*file
, void *fh
,
1387 struct v4l2_dbg_register
*reg
)
1389 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)fh
)->dev
;
1391 if (!v4l2_chip_match_host(®
->match
))
1394 cx25821_call_all(dev
, core
, s_register
, reg
);
1402 int cx25821_vidioc_g_tuner(struct file
*file
, void *priv
, struct v4l2_tuner
*t
)
1404 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1406 if (unlikely(UNSET
== dev
->tuner_type
))
1411 strcpy(t
->name
, "Television");
1412 t
->type
= V4L2_TUNER_ANALOG_TV
;
1413 t
->capability
= V4L2_TUNER_CAP_NORM
;
1414 t
->rangehigh
= 0xffffffffUL
;
1416 t
->signal
= 0xffff; /* LOCKED */
1420 int cx25821_vidioc_s_tuner(struct file
*file
, void *priv
, struct v4l2_tuner
*t
)
1422 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1423 struct cx25821_fh
*fh
= priv
;
1427 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1433 dprintk(1, "%s()\n", __func__
);
1434 if (UNSET
== dev
->tuner_type
)
1443 /*****************************************************************************/
1444 static const struct v4l2_queryctrl no_ctl
= {
1446 .flags
= V4L2_CTRL_FLAG_DISABLED
,
1449 static struct v4l2_queryctrl cx25821_ctls
[] = {
1452 .id
= V4L2_CID_BRIGHTNESS
,
1453 .name
= "Brightness",
1457 .default_value
= 6200,
1458 .type
= V4L2_CTRL_TYPE_INTEGER
,
1460 .id
= V4L2_CID_CONTRAST
,
1465 .default_value
= 5000,
1466 .type
= V4L2_CTRL_TYPE_INTEGER
,
1468 .id
= V4L2_CID_SATURATION
,
1469 .name
= "Saturation",
1473 .default_value
= 5000,
1474 .type
= V4L2_CTRL_TYPE_INTEGER
,
1481 .default_value
= 5000,
1482 .type
= V4L2_CTRL_TYPE_INTEGER
,
1485 static const int CX25821_CTLS
= ARRAY_SIZE(cx25821_ctls
);
1487 static int cx25821_ctrl_query(struct v4l2_queryctrl
*qctrl
)
1491 if (qctrl
->id
< V4L2_CID_BASE
|| qctrl
->id
>= V4L2_CID_LASTP1
)
1493 for (i
= 0; i
< CX25821_CTLS
; i
++)
1494 if (cx25821_ctls
[i
].id
== qctrl
->id
)
1496 if (i
== CX25821_CTLS
) {
1500 *qctrl
= cx25821_ctls
[i
];
1504 int cx25821_vidioc_queryctrl(struct file
*file
, void *priv
,
1505 struct v4l2_queryctrl
*qctrl
)
1507 return cx25821_ctrl_query(qctrl
);
1510 /* ------------------------------------------------------------------ */
1511 /* VIDEO CTRL IOCTLS */
1513 static const struct v4l2_queryctrl
*ctrl_by_id(unsigned int id
)
1517 for (i
= 0; i
< CX25821_CTLS
; i
++)
1518 if (cx25821_ctls
[i
].id
== id
)
1519 return cx25821_ctls
+ i
;
1523 int cx25821_vidioc_g_ctrl(struct file
*file
, void *priv
,
1524 struct v4l2_control
*ctl
)
1526 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1527 struct cx25821_fh
*fh
= priv
;
1529 const struct v4l2_queryctrl
*ctrl
;
1531 ctrl
= ctrl_by_id(ctl
->id
);
1536 case V4L2_CID_BRIGHTNESS
:
1537 ctl
->value
= dev
->channels
[fh
->channel_id
].ctl_bright
;
1540 ctl
->value
= dev
->channels
[fh
->channel_id
].ctl_hue
;
1542 case V4L2_CID_CONTRAST
:
1543 ctl
->value
= dev
->channels
[fh
->channel_id
].ctl_contrast
;
1545 case V4L2_CID_SATURATION
:
1546 ctl
->value
= dev
->channels
[fh
->channel_id
].ctl_saturation
;
1552 int cx25821_set_control(struct cx25821_dev
*dev
,
1553 struct v4l2_control
*ctl
, int chan_num
)
1556 const struct v4l2_queryctrl
*ctrl
;
1560 ctrl
= ctrl_by_id(ctl
->id
);
1565 switch (ctrl
->type
) {
1566 case V4L2_CTRL_TYPE_BOOLEAN
:
1567 case V4L2_CTRL_TYPE_MENU
:
1568 case V4L2_CTRL_TYPE_INTEGER
:
1569 if (ctl
->value
< ctrl
->minimum
)
1570 ctl
->value
= ctrl
->minimum
;
1571 if (ctl
->value
> ctrl
->maximum
)
1572 ctl
->value
= ctrl
->maximum
;
1579 case V4L2_CID_BRIGHTNESS
:
1580 dev
->channels
[chan_num
].ctl_bright
= ctl
->value
;
1581 medusa_set_brightness(dev
, ctl
->value
, chan_num
);
1584 dev
->channels
[chan_num
].ctl_hue
= ctl
->value
;
1585 medusa_set_hue(dev
, ctl
->value
, chan_num
);
1587 case V4L2_CID_CONTRAST
:
1588 dev
->channels
[chan_num
].ctl_contrast
= ctl
->value
;
1589 medusa_set_contrast(dev
, ctl
->value
, chan_num
);
1591 case V4L2_CID_SATURATION
:
1592 dev
->channels
[chan_num
].ctl_saturation
= ctl
->value
;
1593 medusa_set_saturation(dev
, ctl
->value
, chan_num
);
1602 static void cx25821_init_controls(struct cx25821_dev
*dev
, int chan_num
)
1604 struct v4l2_control ctrl
;
1606 for (i
= 0; i
< CX25821_CTLS
; i
++) {
1607 ctrl
.id
= cx25821_ctls
[i
].id
;
1608 ctrl
.value
= cx25821_ctls
[i
].default_value
;
1610 cx25821_set_control(dev
, &ctrl
, chan_num
);
1614 int cx25821_vidioc_cropcap(struct file
*file
, void *priv
,
1615 struct v4l2_cropcap
*cropcap
)
1617 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1619 if (cropcap
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1621 cropcap
->bounds
.top
= 0;
1622 cropcap
->bounds
.left
= 0;
1623 cropcap
->bounds
.width
= 720;
1624 cropcap
->bounds
.height
= dev
->tvnorm
== V4L2_STD_PAL_BG
? 576 : 480;
1625 cropcap
->pixelaspect
.numerator
=
1626 dev
->tvnorm
== V4L2_STD_PAL_BG
? 59 : 10;
1627 cropcap
->pixelaspect
.denominator
=
1628 dev
->tvnorm
== V4L2_STD_PAL_BG
? 54 : 11;
1629 cropcap
->defrect
= cropcap
->bounds
;
1633 int cx25821_vidioc_s_crop(struct file
*file
, void *priv
, struct v4l2_crop
*crop
)
1635 struct cx25821_dev
*dev
= ((struct cx25821_fh
*)priv
)->dev
;
1636 struct cx25821_fh
*fh
= priv
;
1640 err
= v4l2_prio_check(&dev
->channels
[fh
->channel_id
].prio
,
1645 /* cx25821_vidioc_s_crop not supported */
1649 int cx25821_vidioc_g_crop(struct file
*file
, void *priv
, struct v4l2_crop
*crop
)
1651 /* cx25821_vidioc_g_crop not supported */
1655 int cx25821_vidioc_querystd(struct file
*file
, void *priv
, v4l2_std_id
* norm
)
1657 /* medusa does not support video standard sensing of current input */
1658 *norm
= CX25821_NORMS
;
1663 int cx25821_is_valid_width(u32 width
, v4l2_std_id tvnorm
)
1665 if (tvnorm
== V4L2_STD_PAL_BG
) {
1666 if (width
== 352 || width
== 720)
1672 if (tvnorm
== V4L2_STD_NTSC_M
) {
1673 if (width
== 320 || width
== 352 || width
== 720)
1681 int cx25821_is_valid_height(u32 height
, v4l2_std_id tvnorm
)
1683 if (tvnorm
== V4L2_STD_PAL_BG
) {
1684 if (height
== 576 || height
== 288)
1690 if (tvnorm
== V4L2_STD_NTSC_M
) {
1691 if (height
== 480 || height
== 240)
1700 static long video_ioctl_upstream9(struct file
*file
, unsigned int cmd
,
1703 struct cx25821_fh
*fh
= file
->private_data
;
1704 struct cx25821_dev
*dev
= fh
->dev
;
1706 struct upstream_user_struct
*data_from_user
;
1708 data_from_user
= (struct upstream_user_struct
*)arg
;
1710 if (!data_from_user
) {
1711 pr_err("%s(): Upstream data is INVALID. Returning\n", __func__
);
1715 command
= data_from_user
->command
;
1717 if (command
!= UPSTREAM_START_VIDEO
&& command
!= UPSTREAM_STOP_VIDEO
)
1720 dev
->input_filename
= data_from_user
->input_filename
;
1721 dev
->input_audiofilename
= data_from_user
->input_filename
;
1722 dev
->vid_stdname
= data_from_user
->vid_stdname
;
1723 dev
->pixel_format
= data_from_user
->pixel_format
;
1724 dev
->channel_select
= data_from_user
->channel_select
;
1725 dev
->command
= data_from_user
->command
;
1728 case UPSTREAM_START_VIDEO
:
1729 cx25821_start_upstream_video_ch1(dev
, data_from_user
);
1732 case UPSTREAM_STOP_VIDEO
:
1733 cx25821_stop_upstream_video_ch1(dev
);
1740 static long video_ioctl_upstream10(struct file
*file
, unsigned int cmd
,
1743 struct cx25821_fh
*fh
= file
->private_data
;
1744 struct cx25821_dev
*dev
= fh
->dev
;
1746 struct upstream_user_struct
*data_from_user
;
1748 data_from_user
= (struct upstream_user_struct
*)arg
;
1750 if (!data_from_user
) {
1751 pr_err("%s(): Upstream data is INVALID. Returning\n", __func__
);
1755 command
= data_from_user
->command
;
1757 if (command
!= UPSTREAM_START_VIDEO
&& command
!= UPSTREAM_STOP_VIDEO
)
1760 dev
->input_filename_ch2
= data_from_user
->input_filename
;
1761 dev
->input_audiofilename
= data_from_user
->input_filename
;
1762 dev
->vid_stdname_ch2
= data_from_user
->vid_stdname
;
1763 dev
->pixel_format_ch2
= data_from_user
->pixel_format
;
1764 dev
->channel_select_ch2
= data_from_user
->channel_select
;
1765 dev
->command_ch2
= data_from_user
->command
;
1768 case UPSTREAM_START_VIDEO
:
1769 cx25821_start_upstream_video_ch2(dev
, data_from_user
);
1772 case UPSTREAM_STOP_VIDEO
:
1773 cx25821_stop_upstream_video_ch2(dev
);
1780 static long video_ioctl_upstream11(struct file
*file
, unsigned int cmd
,
1783 struct cx25821_fh
*fh
= file
->private_data
;
1784 struct cx25821_dev
*dev
= fh
->dev
;
1786 struct upstream_user_struct
*data_from_user
;
1788 data_from_user
= (struct upstream_user_struct
*)arg
;
1790 if (!data_from_user
) {
1791 pr_err("%s(): Upstream data is INVALID. Returning\n", __func__
);
1795 command
= data_from_user
->command
;
1797 if (command
!= UPSTREAM_START_AUDIO
&& command
!= UPSTREAM_STOP_AUDIO
)
1800 dev
->input_filename
= data_from_user
->input_filename
;
1801 dev
->input_audiofilename
= data_from_user
->input_filename
;
1802 dev
->vid_stdname
= data_from_user
->vid_stdname
;
1803 dev
->pixel_format
= data_from_user
->pixel_format
;
1804 dev
->channel_select
= data_from_user
->channel_select
;
1805 dev
->command
= data_from_user
->command
;
1808 case UPSTREAM_START_AUDIO
:
1809 cx25821_start_upstream_audio(dev
, data_from_user
);
1812 case UPSTREAM_STOP_AUDIO
:
1813 cx25821_stop_upstream_audio(dev
);
1820 static long video_ioctl_set(struct file
*file
, unsigned int cmd
,
1823 struct cx25821_fh
*fh
= file
->private_data
;
1824 struct cx25821_dev
*dev
= fh
->dev
;
1825 struct downstream_user_struct
*data_from_user
;
1828 int selected_channel
= 0;
1835 data_from_user
= (struct downstream_user_struct
*)arg
;
1837 if (!data_from_user
) {
1838 pr_err("%s(): User data is INVALID. Returning\n", __func__
);
1842 command
= data_from_user
->command
;
1844 if (command
!= SET_VIDEO_STD
&& command
!= SET_PIXEL_FORMAT
1845 && command
!= ENABLE_CIF_RESOLUTION
&& command
!= REG_READ
1846 && command
!= REG_WRITE
&& command
!= MEDUSA_READ
1847 && command
!= MEDUSA_WRITE
) {
1853 if (!strcmp(data_from_user
->vid_stdname
, "PAL"))
1854 dev
->tvnorm
= V4L2_STD_PAL_BG
;
1856 dev
->tvnorm
= V4L2_STD_NTSC_M
;
1857 medusa_set_videostandard(dev
);
1860 case SET_PIXEL_FORMAT
:
1861 selected_channel
= data_from_user
->decoder_select
;
1862 pix_format
= data_from_user
->pixel_format
;
1864 if (!(selected_channel
<= 7 && selected_channel
>= 0)) {
1865 selected_channel
-= 4;
1866 selected_channel
= selected_channel
% 8;
1869 if (selected_channel
>= 0)
1870 cx25821_set_pixel_format(dev
, selected_channel
,
1875 case ENABLE_CIF_RESOLUTION
:
1876 selected_channel
= data_from_user
->decoder_select
;
1877 cif_enable
= data_from_user
->cif_resolution_enable
;
1878 cif_width
= data_from_user
->cif_width
;
1881 if (dev
->tvnorm
& V4L2_STD_PAL_BG
1882 || dev
->tvnorm
& V4L2_STD_PAL_DK
) {
1886 if (cif_width
!= 320 && cif_width
!= 352)
1891 if (!(selected_channel
<= 7 && selected_channel
>= 0)) {
1892 selected_channel
-= 4;
1893 selected_channel
= selected_channel
% 8;
1896 if (selected_channel
<= 7 && selected_channel
>= 0) {
1897 dev
->channels
[selected_channel
].use_cif_resolution
=
1899 dev
->channels
[selected_channel
].cif_width
= width
;
1901 for (i
= 0; i
< VID_CHANNEL_NUM
; i
++) {
1902 dev
->channels
[i
].use_cif_resolution
=
1904 dev
->channels
[i
].cif_width
= width
;
1908 medusa_set_resolution(dev
, width
, selected_channel
);
1911 data_from_user
->reg_data
= cx_read(data_from_user
->reg_address
);
1914 cx_write(data_from_user
->reg_address
, data_from_user
->reg_data
);
1917 value
= cx25821_i2c_read(&dev
->i2c_bus
[0],
1918 (u16
) data_from_user
->reg_address
,
1919 &data_from_user
->reg_data
);
1922 cx25821_i2c_write(&dev
->i2c_bus
[0],
1923 (u16
) data_from_user
->reg_address
,
1924 data_from_user
->reg_data
);
1931 static long cx25821_video_ioctl(struct file
*file
,
1932 unsigned int cmd
, unsigned long arg
)
1936 struct cx25821_fh
*fh
= file
->private_data
;
1938 /* check to see if it's the video upstream */
1939 if (fh
->channel_id
== SRAM_CH09
) {
1940 ret
= video_ioctl_upstream9(file
, cmd
, arg
);
1942 } else if (fh
->channel_id
== SRAM_CH10
) {
1943 ret
= video_ioctl_upstream10(file
, cmd
, arg
);
1945 } else if (fh
->channel_id
== SRAM_CH11
) {
1946 ret
= video_ioctl_upstream11(file
, cmd
, arg
);
1947 ret
= video_ioctl_set(file
, cmd
, arg
);
1951 return video_ioctl2(file
, cmd
, arg
);
1954 /* exported stuff */
1955 static const struct v4l2_file_operations video_fops
= {
1956 .owner
= THIS_MODULE
,
1958 .release
= video_release
,
1961 .mmap
= cx25821_video_mmap
,
1962 .ioctl
= cx25821_video_ioctl
,
1965 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
1966 .vidioc_querycap
= cx25821_vidioc_querycap
,
1967 .vidioc_enum_fmt_vid_cap
= cx25821_vidioc_enum_fmt_vid_cap
,
1968 .vidioc_g_fmt_vid_cap
= cx25821_vidioc_g_fmt_vid_cap
,
1969 .vidioc_try_fmt_vid_cap
= cx25821_vidioc_try_fmt_vid_cap
,
1970 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1971 .vidioc_reqbufs
= cx25821_vidioc_reqbufs
,
1972 .vidioc_querybuf
= cx25821_vidioc_querybuf
,
1973 .vidioc_qbuf
= cx25821_vidioc_qbuf
,
1974 .vidioc_dqbuf
= vidioc_dqbuf
,
1976 .vidioc_s_std
= cx25821_vidioc_s_std
,
1977 .vidioc_querystd
= cx25821_vidioc_querystd
,
1979 .vidioc_cropcap
= cx25821_vidioc_cropcap
,
1980 .vidioc_s_crop
= cx25821_vidioc_s_crop
,
1981 .vidioc_g_crop
= cx25821_vidioc_g_crop
,
1982 .vidioc_enum_input
= cx25821_vidioc_enum_input
,
1983 .vidioc_g_input
= cx25821_vidioc_g_input
,
1984 .vidioc_s_input
= cx25821_vidioc_s_input
,
1985 .vidioc_g_ctrl
= cx25821_vidioc_g_ctrl
,
1986 .vidioc_s_ctrl
= vidioc_s_ctrl
,
1987 .vidioc_queryctrl
= cx25821_vidioc_queryctrl
,
1988 .vidioc_streamon
= vidioc_streamon
,
1989 .vidioc_streamoff
= vidioc_streamoff
,
1990 .vidioc_log_status
= vidioc_log_status
,
1991 .vidioc_g_priority
= cx25821_vidioc_g_priority
,
1992 .vidioc_s_priority
= cx25821_vidioc_s_priority
,
1994 .vidioc_g_tuner
= cx25821_vidioc_g_tuner
,
1995 .vidioc_s_tuner
= cx25821_vidioc_s_tuner
,
1996 .vidioc_g_frequency
= cx25821_vidioc_g_frequency
,
1997 .vidioc_s_frequency
= cx25821_vidioc_s_frequency
,
1999 #ifdef CONFIG_VIDEO_ADV_DEBUG
2000 .vidioc_g_register
= cx25821_vidioc_g_register
,
2001 .vidioc_s_register
= cx25821_vidioc_s_register
,
2005 struct video_device cx25821_videoioctl_template
= {
2006 .name
= "cx25821-videoioctl",
2007 .fops
= &video_fops
,
2008 .ioctl_ops
= &video_ioctl_ops
,
2009 .tvnorms
= CX25821_NORMS
,
2010 .current_norm
= V4L2_STD_NTSC_M
,