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> cx25821 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
};
37 module_param_array(video_nr
, int, NULL
, 0444);
39 MODULE_PARM_DESC(video_nr
, "video device numbers");
41 static unsigned int video_debug
= VIDEO_DEBUG
;
42 module_param(video_debug
, int, 0644);
43 MODULE_PARM_DESC(video_debug
, "enable debug messages [video]");
45 static unsigned int irq_debug
;
46 module_param(irq_debug
, int, 0644);
47 MODULE_PARM_DESC(irq_debug
, "enable debug messages [IRQ handler]");
49 #define FORMAT_FLAGS_PACKED 0x01
51 static const struct cx25821_fmt formats
[] = {
53 .name
= "4:1:1, packed, Y41P",
54 .fourcc
= V4L2_PIX_FMT_Y41P
,
56 .flags
= FORMAT_FLAGS_PACKED
,
58 .name
= "4:2:2, packed, YUYV",
59 .fourcc
= V4L2_PIX_FMT_YUYV
,
61 .flags
= FORMAT_FLAGS_PACKED
,
65 static const struct cx25821_fmt
*cx25821_format_by_fourcc(unsigned int fourcc
)
69 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++)
70 if (formats
[i
].fourcc
== fourcc
)
75 int cx25821_start_video_dma(struct cx25821_dev
*dev
,
76 struct cx25821_dmaqueue
*q
,
77 struct cx25821_buffer
*buf
,
78 const struct sram_channel
*channel
)
82 /* setup fifo + format */
83 cx25821_sram_channel_setup(dev
, channel
, buf
->bpl
, buf
->risc
.dma
);
86 cx_write(channel
->gpcnt_ctl
, 3);
89 cx_set(PCI_INT_MSK
, cx_read(PCI_INT_MSK
) | (1 << channel
->i
));
90 cx_set(channel
->int_msk
, 0x11);
93 cx_write(channel
->dma_ctl
, 0x11); /* FIFO and RISC enable */
95 /* make sure upstream setting if any is reversed */
96 tmp
= cx_read(VID_CH_MODE_SEL
);
97 cx_write(VID_CH_MODE_SEL
, tmp
& 0xFFFFFE00);
102 int cx25821_video_irq(struct cx25821_dev
*dev
, int chan_num
, u32 status
)
106 const struct sram_channel
*channel
= dev
->channels
[chan_num
].sram_channels
;
108 mask
= cx_read(channel
->int_msk
);
109 if (0 == (status
& mask
))
112 cx_write(channel
->int_stat
, status
);
114 /* risc op code error */
115 if (status
& (1 << 16)) {
116 pr_warn("%s, %s: video risc op code error\n",
117 dev
->name
, channel
->name
);
118 cx_clear(channel
->dma_ctl
, 0x11);
119 cx25821_sram_channel_dump(dev
, channel
);
123 if (status
& FLD_VID_DST_RISC1
) {
124 struct cx25821_dmaqueue
*dmaq
=
125 &dev
->channels
[channel
->i
].dma_vidq
;
126 struct cx25821_buffer
*buf
;
128 spin_lock(&dev
->slock
);
129 if (!list_empty(&dmaq
->active
)) {
130 buf
= list_entry(dmaq
->active
.next
,
131 struct cx25821_buffer
, queue
);
133 buf
->vb
.vb2_buf
.timestamp
= ktime_get_ns();
134 buf
->vb
.sequence
= dmaq
->count
++;
135 list_del(&buf
->queue
);
136 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_DONE
);
138 spin_unlock(&dev
->slock
);
144 static int cx25821_queue_setup(struct vb2_queue
*q
,
145 unsigned int *num_buffers
, unsigned int *num_planes
,
146 unsigned int sizes
[], struct device
*alloc_devs
[])
148 struct cx25821_channel
*chan
= q
->drv_priv
;
149 unsigned size
= (chan
->fmt
->depth
* chan
->width
* chan
->height
) >> 3;
152 return sizes
[0] < size
? -EINVAL
: 0;
159 static int cx25821_buffer_prepare(struct vb2_buffer
*vb
)
161 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
162 struct cx25821_channel
*chan
= vb
->vb2_queue
->drv_priv
;
163 struct cx25821_dev
*dev
= chan
->dev
;
164 struct cx25821_buffer
*buf
=
165 container_of(vbuf
, struct cx25821_buffer
, vb
);
166 struct sg_table
*sgt
= vb2_dma_sg_plane_desc(vb
, 0);
168 int bpl_local
= LINE_SIZE_D1
;
171 if (chan
->pixel_formats
== PIXEL_FRMT_411
)
172 buf
->bpl
= (chan
->fmt
->depth
* chan
->width
) >> 3;
174 buf
->bpl
= (chan
->fmt
->depth
>> 3) * chan
->width
;
176 if (vb2_plane_size(vb
, 0) < chan
->height
* buf
->bpl
)
178 vb2_set_plane_payload(vb
, 0, chan
->height
* buf
->bpl
);
179 buf
->vb
.field
= chan
->field
;
181 if (chan
->pixel_formats
== PIXEL_FRMT_411
) {
182 bpl_local
= buf
->bpl
;
184 bpl_local
= buf
->bpl
; /* Default */
186 if (chan
->use_cif_resolution
) {
187 if (dev
->tvnorm
& V4L2_STD_625_50
)
188 bpl_local
= 352 << 1;
190 bpl_local
= chan
->cif_width
<< 1;
194 switch (chan
->field
) {
196 ret
= cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
198 buf
->bpl
, 0, chan
->height
);
200 case V4L2_FIELD_BOTTOM
:
201 ret
= cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
203 buf
->bpl
, 0, chan
->height
);
205 case V4L2_FIELD_INTERLACED
:
206 /* All other formats are top field first */
208 dprintk(1, "top field first\n");
210 ret
= cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
211 sgt
->sgl
, line0_offset
,
212 bpl_local
, bpl_local
, bpl_local
,
215 case V4L2_FIELD_SEQ_TB
:
216 ret
= cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
218 0, buf
->bpl
* (chan
->height
>> 1),
219 buf
->bpl
, 0, chan
->height
>> 1);
221 case V4L2_FIELD_SEQ_BT
:
222 ret
= cx25821_risc_buffer(dev
->pci
, &buf
->risc
,
224 buf
->bpl
* (chan
->height
>> 1), 0,
225 buf
->bpl
, 0, chan
->height
>> 1);
233 dprintk(2, "[%p/%d] buffer_prep - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
234 buf
, buf
->vb
.vb2_buf
.index
, chan
->width
, chan
->height
,
235 chan
->fmt
->depth
, chan
->fmt
->name
,
236 (unsigned long)buf
->risc
.dma
);
241 static void cx25821_buffer_finish(struct vb2_buffer
*vb
)
243 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
244 struct cx25821_buffer
*buf
=
245 container_of(vbuf
, struct cx25821_buffer
, vb
);
246 struct cx25821_channel
*chan
= vb
->vb2_queue
->drv_priv
;
247 struct cx25821_dev
*dev
= chan
->dev
;
249 cx25821_free_buffer(dev
, buf
);
252 static void cx25821_buffer_queue(struct vb2_buffer
*vb
)
254 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
255 struct cx25821_buffer
*buf
=
256 container_of(vbuf
, struct cx25821_buffer
, vb
);
257 struct cx25821_channel
*chan
= vb
->vb2_queue
->drv_priv
;
258 struct cx25821_dev
*dev
= chan
->dev
;
259 struct cx25821_buffer
*prev
;
260 struct cx25821_dmaqueue
*q
= &dev
->channels
[chan
->id
].dma_vidq
;
262 buf
->risc
.cpu
[1] = cpu_to_le32(buf
->risc
.dma
+ 12);
263 buf
->risc
.jmp
[0] = cpu_to_le32(RISC_JUMP
| RISC_CNT_INC
);
264 buf
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
+ 12);
265 buf
->risc
.jmp
[2] = cpu_to_le32(0); /* bits 63-32 */
267 if (list_empty(&q
->active
)) {
268 list_add_tail(&buf
->queue
, &q
->active
);
270 buf
->risc
.cpu
[0] |= cpu_to_le32(RISC_IRQ1
);
271 prev
= list_entry(q
->active
.prev
, struct cx25821_buffer
,
273 list_add_tail(&buf
->queue
, &q
->active
);
274 prev
->risc
.jmp
[1] = cpu_to_le32(buf
->risc
.dma
);
278 static int cx25821_start_streaming(struct vb2_queue
*q
, unsigned int count
)
280 struct cx25821_channel
*chan
= q
->drv_priv
;
281 struct cx25821_dev
*dev
= chan
->dev
;
282 struct cx25821_dmaqueue
*dmaq
= &dev
->channels
[chan
->id
].dma_vidq
;
283 struct cx25821_buffer
*buf
= list_entry(dmaq
->active
.next
,
284 struct cx25821_buffer
, queue
);
287 cx25821_start_video_dma(dev
, dmaq
, buf
, chan
->sram_channels
);
291 static void cx25821_stop_streaming(struct vb2_queue
*q
)
293 struct cx25821_channel
*chan
= q
->drv_priv
;
294 struct cx25821_dev
*dev
= chan
->dev
;
295 struct cx25821_dmaqueue
*dmaq
= &dev
->channels
[chan
->id
].dma_vidq
;
298 cx_write(chan
->sram_channels
->dma_ctl
, 0); /* FIFO and RISC disable */
299 spin_lock_irqsave(&dev
->slock
, flags
);
300 while (!list_empty(&dmaq
->active
)) {
301 struct cx25821_buffer
*buf
= list_entry(dmaq
->active
.next
,
302 struct cx25821_buffer
, queue
);
304 list_del(&buf
->queue
);
305 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
307 spin_unlock_irqrestore(&dev
->slock
, flags
);
310 static const struct vb2_ops cx25821_video_qops
= {
311 .queue_setup
= cx25821_queue_setup
,
312 .buf_prepare
= cx25821_buffer_prepare
,
313 .buf_finish
= cx25821_buffer_finish
,
314 .buf_queue
= cx25821_buffer_queue
,
315 .wait_prepare
= vb2_ops_wait_prepare
,
316 .wait_finish
= vb2_ops_wait_finish
,
317 .start_streaming
= cx25821_start_streaming
,
318 .stop_streaming
= cx25821_stop_streaming
,
323 static int cx25821_vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
324 struct v4l2_fmtdesc
*f
)
326 if (unlikely(f
->index
>= ARRAY_SIZE(formats
)))
329 strlcpy(f
->description
, formats
[f
->index
].name
, sizeof(f
->description
));
330 f
->pixelformat
= formats
[f
->index
].fourcc
;
335 static int cx25821_vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
336 struct v4l2_format
*f
)
338 struct cx25821_channel
*chan
= video_drvdata(file
);
340 f
->fmt
.pix
.width
= chan
->width
;
341 f
->fmt
.pix
.height
= chan
->height
;
342 f
->fmt
.pix
.field
= chan
->field
;
343 f
->fmt
.pix
.pixelformat
= chan
->fmt
->fourcc
;
344 f
->fmt
.pix
.bytesperline
= (chan
->width
* chan
->fmt
->depth
) >> 3;
345 f
->fmt
.pix
.sizeimage
= chan
->height
* f
->fmt
.pix
.bytesperline
;
346 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
351 static int cx25821_vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
352 struct v4l2_format
*f
)
354 struct cx25821_channel
*chan
= video_drvdata(file
);
355 struct cx25821_dev
*dev
= chan
->dev
;
356 const struct cx25821_fmt
*fmt
;
357 enum v4l2_field field
= f
->fmt
.pix
.field
;
361 fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
364 maxh
= (dev
->tvnorm
& V4L2_STD_625_50
) ? 576 : 480;
366 w
= f
->fmt
.pix
.width
;
367 if (field
!= V4L2_FIELD_BOTTOM
)
368 field
= V4L2_FIELD_TOP
;
371 f
->fmt
.pix
.height
= maxh
/ 4;
372 } else if (w
< 720) {
374 f
->fmt
.pix
.height
= maxh
/ 2;
377 f
->fmt
.pix
.height
= maxh
;
378 field
= V4L2_FIELD_INTERLACED
;
380 f
->fmt
.pix
.field
= field
;
381 f
->fmt
.pix
.width
= w
;
382 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
383 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
384 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
389 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
390 struct v4l2_format
*f
)
392 struct cx25821_channel
*chan
= video_drvdata(file
);
393 struct cx25821_dev
*dev
= chan
->dev
;
394 int pix_format
= PIXEL_FRMT_422
;
397 err
= cx25821_vidioc_try_fmt_vid_cap(file
, priv
, f
);
402 chan
->fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
403 chan
->field
= f
->fmt
.pix
.field
;
404 chan
->width
= f
->fmt
.pix
.width
;
405 chan
->height
= f
->fmt
.pix
.height
;
407 if (f
->fmt
.pix
.pixelformat
== V4L2_PIX_FMT_Y41P
)
408 pix_format
= PIXEL_FRMT_411
;
410 pix_format
= PIXEL_FRMT_422
;
412 cx25821_set_pixel_format(dev
, SRAM_CH00
, pix_format
);
414 /* check if cif resolution */
415 if (chan
->width
== 320 || chan
->width
== 352)
416 chan
->use_cif_resolution
= 1;
418 chan
->use_cif_resolution
= 0;
420 chan
->cif_width
= chan
->width
;
421 medusa_set_resolution(dev
, chan
->width
, SRAM_CH00
);
425 static int vidioc_log_status(struct file
*file
, void *priv
)
427 struct cx25821_channel
*chan
= video_drvdata(file
);
428 struct cx25821_dev
*dev
= chan
->dev
;
429 const struct sram_channel
*sram_ch
= chan
->sram_channels
;
432 tmp
= cx_read(sram_ch
->dma_ctl
);
433 pr_info("Video input 0 is %s\n",
434 (tmp
& 0x11) ? "streaming" : "stopped");
439 static int cx25821_vidioc_querycap(struct file
*file
, void *priv
,
440 struct v4l2_capability
*cap
)
442 struct cx25821_channel
*chan
= video_drvdata(file
);
443 struct cx25821_dev
*dev
= chan
->dev
;
444 const u32 cap_input
= V4L2_CAP_VIDEO_CAPTURE
|
445 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
;
446 const u32 cap_output
= V4L2_CAP_VIDEO_OUTPUT
| V4L2_CAP_READWRITE
;
448 strcpy(cap
->driver
, "cx25821");
449 strlcpy(cap
->card
, cx25821_boards
[dev
->board
].name
, sizeof(cap
->card
));
450 sprintf(cap
->bus_info
, "PCIe:%s", pci_name(dev
->pci
));
451 if (chan
->id
>= VID_CHANNEL_NUM
)
452 cap
->device_caps
= cap_output
;
454 cap
->device_caps
= cap_input
;
455 cap
->capabilities
= cap_input
| cap_output
| V4L2_CAP_DEVICE_CAPS
;
459 static int cx25821_vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*tvnorms
)
461 struct cx25821_channel
*chan
= video_drvdata(file
);
463 *tvnorms
= chan
->dev
->tvnorm
;
467 static int cx25821_vidioc_s_std(struct file
*file
, void *priv
,
470 struct cx25821_channel
*chan
= video_drvdata(file
);
471 struct cx25821_dev
*dev
= chan
->dev
;
473 if (dev
->tvnorm
== tvnorms
)
476 dev
->tvnorm
= tvnorms
;
478 chan
->height
= (dev
->tvnorm
& V4L2_STD_625_50
) ? 576 : 480;
480 medusa_set_videostandard(dev
);
485 static int cx25821_vidioc_enum_input(struct file
*file
, void *priv
,
486 struct v4l2_input
*i
)
491 i
->type
= V4L2_INPUT_TYPE_CAMERA
;
492 i
->std
= CX25821_NORMS
;
493 strcpy(i
->name
, "Composite");
497 static int cx25821_vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
503 static int cx25821_vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
505 return i
? -EINVAL
: 0;
508 static int cx25821_s_ctrl(struct v4l2_ctrl
*ctrl
)
510 struct cx25821_channel
*chan
=
511 container_of(ctrl
->handler
, struct cx25821_channel
, hdl
);
512 struct cx25821_dev
*dev
= chan
->dev
;
515 case V4L2_CID_BRIGHTNESS
:
516 medusa_set_brightness(dev
, ctrl
->val
, chan
->id
);
519 medusa_set_hue(dev
, ctrl
->val
, chan
->id
);
521 case V4L2_CID_CONTRAST
:
522 medusa_set_contrast(dev
, ctrl
->val
, chan
->id
);
524 case V4L2_CID_SATURATION
:
525 medusa_set_saturation(dev
, ctrl
->val
, chan
->id
);
533 static int cx25821_vidioc_enum_output(struct file
*file
, void *priv
,
534 struct v4l2_output
*o
)
539 o
->type
= V4L2_INPUT_TYPE_CAMERA
;
540 o
->std
= CX25821_NORMS
;
541 strcpy(o
->name
, "Composite");
545 static int cx25821_vidioc_g_output(struct file
*file
, void *priv
, unsigned int *o
)
551 static int cx25821_vidioc_s_output(struct file
*file
, void *priv
, unsigned int o
)
553 return o
? -EINVAL
: 0;
556 static int cx25821_vidioc_try_fmt_vid_out(struct file
*file
, void *priv
,
557 struct v4l2_format
*f
)
559 struct cx25821_channel
*chan
= video_drvdata(file
);
560 struct cx25821_dev
*dev
= chan
->dev
;
561 const struct cx25821_fmt
*fmt
;
563 fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
566 f
->fmt
.pix
.width
= 720;
567 f
->fmt
.pix
.height
= (dev
->tvnorm
& V4L2_STD_625_50
) ? 576 : 480;
568 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
569 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
570 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
571 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
575 static int vidioc_s_fmt_vid_out(struct file
*file
, void *priv
,
576 struct v4l2_format
*f
)
578 struct cx25821_channel
*chan
= video_drvdata(file
);
581 err
= cx25821_vidioc_try_fmt_vid_out(file
, priv
, f
);
586 chan
->fmt
= cx25821_format_by_fourcc(f
->fmt
.pix
.pixelformat
);
587 chan
->field
= f
->fmt
.pix
.field
;
588 chan
->width
= f
->fmt
.pix
.width
;
589 chan
->height
= f
->fmt
.pix
.height
;
590 if (f
->fmt
.pix
.pixelformat
== V4L2_PIX_FMT_Y41P
)
591 chan
->pixel_formats
= PIXEL_FRMT_411
;
593 chan
->pixel_formats
= PIXEL_FRMT_422
;
597 static const struct v4l2_ctrl_ops cx25821_ctrl_ops
= {
598 .s_ctrl
= cx25821_s_ctrl
,
601 static const struct v4l2_file_operations video_fops
= {
602 .owner
= THIS_MODULE
,
603 .open
= v4l2_fh_open
,
604 .release
= vb2_fop_release
,
605 .read
= vb2_fop_read
,
606 .poll
= vb2_fop_poll
,
607 .unlocked_ioctl
= video_ioctl2
,
608 .mmap
= vb2_fop_mmap
,
611 static const struct v4l2_ioctl_ops video_ioctl_ops
= {
612 .vidioc_querycap
= cx25821_vidioc_querycap
,
613 .vidioc_enum_fmt_vid_cap
= cx25821_vidioc_enum_fmt_vid_cap
,
614 .vidioc_g_fmt_vid_cap
= cx25821_vidioc_g_fmt_vid_cap
,
615 .vidioc_try_fmt_vid_cap
= cx25821_vidioc_try_fmt_vid_cap
,
616 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
617 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
618 .vidioc_prepare_buf
= vb2_ioctl_prepare_buf
,
619 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
620 .vidioc_querybuf
= vb2_ioctl_querybuf
,
621 .vidioc_qbuf
= vb2_ioctl_qbuf
,
622 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
623 .vidioc_streamon
= vb2_ioctl_streamon
,
624 .vidioc_streamoff
= vb2_ioctl_streamoff
,
625 .vidioc_g_std
= cx25821_vidioc_g_std
,
626 .vidioc_s_std
= cx25821_vidioc_s_std
,
627 .vidioc_enum_input
= cx25821_vidioc_enum_input
,
628 .vidioc_g_input
= cx25821_vidioc_g_input
,
629 .vidioc_s_input
= cx25821_vidioc_s_input
,
630 .vidioc_log_status
= vidioc_log_status
,
631 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
632 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
635 static const struct video_device cx25821_video_device
= {
636 .name
= "cx25821-video",
638 .release
= video_device_release_empty
,
640 .ioctl_ops
= &video_ioctl_ops
,
641 .tvnorms
= CX25821_NORMS
,
644 static const struct v4l2_file_operations video_out_fops
= {
645 .owner
= THIS_MODULE
,
646 .open
= v4l2_fh_open
,
647 .release
= vb2_fop_release
,
648 .write
= vb2_fop_write
,
649 .poll
= vb2_fop_poll
,
650 .unlocked_ioctl
= video_ioctl2
,
651 .mmap
= vb2_fop_mmap
,
654 static const struct v4l2_ioctl_ops video_out_ioctl_ops
= {
655 .vidioc_querycap
= cx25821_vidioc_querycap
,
656 .vidioc_enum_fmt_vid_out
= cx25821_vidioc_enum_fmt_vid_cap
,
657 .vidioc_g_fmt_vid_out
= cx25821_vidioc_g_fmt_vid_cap
,
658 .vidioc_try_fmt_vid_out
= cx25821_vidioc_try_fmt_vid_out
,
659 .vidioc_s_fmt_vid_out
= vidioc_s_fmt_vid_out
,
660 .vidioc_g_std
= cx25821_vidioc_g_std
,
661 .vidioc_s_std
= cx25821_vidioc_s_std
,
662 .vidioc_enum_output
= cx25821_vidioc_enum_output
,
663 .vidioc_g_output
= cx25821_vidioc_g_output
,
664 .vidioc_s_output
= cx25821_vidioc_s_output
,
665 .vidioc_log_status
= vidioc_log_status
,
668 static const struct video_device cx25821_video_out_device
= {
669 .name
= "cx25821-video",
670 .fops
= &video_out_fops
,
671 .release
= video_device_release_empty
,
673 .ioctl_ops
= &video_out_ioctl_ops
,
674 .tvnorms
= CX25821_NORMS
,
677 void cx25821_video_unregister(struct cx25821_dev
*dev
, int chan_num
)
679 cx_clear(PCI_INT_MSK
, 1);
681 if (video_is_registered(&dev
->channels
[chan_num
].vdev
)) {
682 video_unregister_device(&dev
->channels
[chan_num
].vdev
);
683 v4l2_ctrl_handler_free(&dev
->channels
[chan_num
].hdl
);
687 int cx25821_video_register(struct cx25821_dev
*dev
)
692 /* initial device configuration */
693 dev
->tvnorm
= V4L2_STD_NTSC_M
;
695 spin_lock_init(&dev
->slock
);
697 for (i
= 0; i
< MAX_VID_CAP_CHANNEL_NUM
- 1; ++i
) {
698 struct cx25821_channel
*chan
= &dev
->channels
[i
];
699 struct video_device
*vdev
= &chan
->vdev
;
700 struct v4l2_ctrl_handler
*hdl
= &chan
->hdl
;
702 bool is_output
= i
> SRAM_CH08
;
704 if (i
== SRAM_CH08
) /* audio channel */
708 v4l2_ctrl_handler_init(hdl
, 4);
709 v4l2_ctrl_new_std(hdl
, &cx25821_ctrl_ops
,
710 V4L2_CID_BRIGHTNESS
, 0, 10000, 1, 6200);
711 v4l2_ctrl_new_std(hdl
, &cx25821_ctrl_ops
,
712 V4L2_CID_CONTRAST
, 0, 10000, 1, 5000);
713 v4l2_ctrl_new_std(hdl
, &cx25821_ctrl_ops
,
714 V4L2_CID_SATURATION
, 0, 10000, 1, 5000);
715 v4l2_ctrl_new_std(hdl
, &cx25821_ctrl_ops
,
716 V4L2_CID_HUE
, 0, 10000, 1, 5000);
721 err
= v4l2_ctrl_handler_setup(hdl
);
725 chan
->out
= &dev
->vid_out_data
[i
- SRAM_CH09
];
726 chan
->out
->chan
= chan
;
729 chan
->sram_channels
= &cx25821_sram_channels
[i
];
731 chan
->field
= V4L2_FIELD_INTERLACED
;
732 if (dev
->tvnorm
& V4L2_STD_625_50
)
737 if (chan
->pixel_formats
== PIXEL_FRMT_411
)
738 chan
->fmt
= cx25821_format_by_fourcc(V4L2_PIX_FMT_Y41P
);
740 chan
->fmt
= cx25821_format_by_fourcc(V4L2_PIX_FMT_YUYV
);
742 cx_write(chan
->sram_channels
->int_stat
, 0xffffffff);
744 INIT_LIST_HEAD(&chan
->dma_vidq
.active
);
748 q
->type
= is_output
? V4L2_BUF_TYPE_VIDEO_OUTPUT
:
749 V4L2_BUF_TYPE_VIDEO_CAPTURE
;
750 q
->io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
;
751 q
->io_modes
|= is_output
? VB2_WRITE
: VB2_READ
;
752 q
->gfp_flags
= GFP_DMA32
;
753 q
->min_buffers_needed
= 2;
755 q
->buf_struct_size
= sizeof(struct cx25821_buffer
);
756 q
->ops
= &cx25821_video_qops
;
757 q
->mem_ops
= &vb2_dma_sg_memops
;
758 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
759 q
->lock
= &dev
->lock
;
760 q
->dev
= &dev
->pci
->dev
;
763 err
= vb2_queue_init(q
);
768 /* register v4l devices */
769 *vdev
= is_output
? cx25821_video_out_device
: cx25821_video_device
;
770 vdev
->v4l2_dev
= &dev
->v4l2_dev
;
772 vdev
->ctrl_handler
= hdl
;
774 vdev
->vfl_dir
= VFL_DIR_TX
;
775 vdev
->lock
= &dev
->lock
;
777 snprintf(vdev
->name
, sizeof(vdev
->name
), "%s #%d", dev
->name
, i
);
778 video_set_drvdata(vdev
, chan
);
780 err
= video_register_device(vdev
, VFL_TYPE_GRABBER
,
787 /* set PCI interrupt */
788 cx_set(PCI_INT_MSK
, 0xff);
794 cx25821_video_unregister(dev
, i
--);