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 v4l2_get_timestamp(&buf->vb.timestamp);
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, const void *parg,
145 unsigned int *num_buffers, unsigned int *num_planes,
146 unsigned int sizes[], void *alloc_ctxs[])
148 const struct v4l2_format *fmt = parg;
149 struct cx25821_channel *chan = q->drv_priv;
150 unsigned size = (chan->fmt->depth * chan->width * chan->height) >> 3;
152 if (fmt && fmt->fmt.pix.sizeimage < size)
156 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : size;
157 alloc_ctxs[0] = chan->dev->alloc_ctx;
161 static int cx25821_buffer_prepare(struct vb2_buffer *vb)
163 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
164 struct cx25821_channel *chan = vb->vb2_queue->drv_priv;
165 struct cx25821_dev *dev = chan->dev;
166 struct cx25821_buffer *buf =
167 container_of(vbuf, struct cx25821_buffer, vb);
168 struct sg_table *sgt = vb2_dma_sg_plane_desc(vb, 0);
170 int bpl_local = LINE_SIZE_D1;
173 if (chan->pixel_formats == PIXEL_FRMT_411)
174 buf->bpl = (chan->fmt->depth * chan->width) >> 3;
176 buf->bpl = (chan->fmt->depth >> 3) * chan->width;
178 if (vb2_plane_size(vb, 0) < chan->height * buf->bpl)
180 vb2_set_plane_payload(vb, 0, chan->height * buf->bpl);
181 buf->vb.field = chan->field;
183 if (chan->pixel_formats == PIXEL_FRMT_411) {
184 bpl_local = buf->bpl;
186 bpl_local = buf->bpl; /* Default */
188 if (chan->use_cif_resolution) {
189 if (dev->tvnorm & V4L2_STD_625_50)
190 bpl_local = 352 << 1;
192 bpl_local = chan->cif_width << 1;
196 switch (chan->field) {
198 ret = cx25821_risc_buffer(dev->pci, &buf->risc,
200 buf->bpl, 0, chan->height);
202 case V4L2_FIELD_BOTTOM:
203 ret = cx25821_risc_buffer(dev->pci, &buf->risc,
205 buf->bpl, 0, chan->height);
207 case V4L2_FIELD_INTERLACED:
208 /* All other formats are top field first */
210 dprintk(1, "top field first\n");
212 ret = cx25821_risc_buffer(dev->pci, &buf->risc,
213 sgt->sgl, line0_offset,
214 bpl_local, bpl_local, bpl_local,
217 case V4L2_FIELD_SEQ_TB:
218 ret = cx25821_risc_buffer(dev->pci, &buf->risc,
220 0, buf->bpl * (chan->height >> 1),
221 buf->bpl, 0, chan->height >> 1);
223 case V4L2_FIELD_SEQ_BT:
224 ret = cx25821_risc_buffer(dev->pci, &buf->risc,
226 buf->bpl * (chan->height >> 1), 0,
227 buf->bpl, 0, chan->height >> 1);
235 dprintk(2, "[%p/%d] buffer_prep - %dx%d %dbpp \"%s\" - dma=0x%08lx\n",
236 buf, buf->vb.vb2_buf.index, chan->width, chan->height,
237 chan->fmt->depth, chan->fmt->name,
238 (unsigned long)buf->risc.dma);
243 static void cx25821_buffer_finish(struct vb2_buffer *vb)
245 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
246 struct cx25821_buffer *buf =
247 container_of(vbuf, struct cx25821_buffer, vb);
248 struct cx25821_channel *chan = vb->vb2_queue->drv_priv;
249 struct cx25821_dev *dev = chan->dev;
251 cx25821_free_buffer(dev, buf);
254 static void cx25821_buffer_queue(struct vb2_buffer *vb)
256 struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
257 struct cx25821_buffer *buf =
258 container_of(vbuf, struct cx25821_buffer, vb);
259 struct cx25821_channel *chan = vb->vb2_queue->drv_priv;
260 struct cx25821_dev *dev = chan->dev;
261 struct cx25821_buffer *prev;
262 struct cx25821_dmaqueue *q = &dev->channels[chan->id].dma_vidq;
264 buf->risc.cpu[1] = cpu_to_le32(buf->risc.dma + 12);
265 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_CNT_INC);
266 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma + 12);
267 buf->risc.jmp[2] = cpu_to_le32(0); /* bits 63-32 */
269 if (list_empty(&q->active)) {
270 list_add_tail(&buf->queue, &q->active);
272 buf->risc.cpu[0] |= cpu_to_le32(RISC_IRQ1);
273 prev = list_entry(q->active.prev, struct cx25821_buffer,
275 list_add_tail(&buf->queue, &q->active);
276 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
280 static int cx25821_start_streaming(struct vb2_queue *q, unsigned int count)
282 struct cx25821_channel *chan = q->drv_priv;
283 struct cx25821_dev *dev = chan->dev;
284 struct cx25821_dmaqueue *dmaq = &dev->channels[chan->id].dma_vidq;
285 struct cx25821_buffer *buf = list_entry(dmaq->active.next,
286 struct cx25821_buffer, queue);
289 cx25821_start_video_dma(dev, dmaq, buf, chan->sram_channels);
293 static void cx25821_stop_streaming(struct vb2_queue *q)
295 struct cx25821_channel *chan = q->drv_priv;
296 struct cx25821_dev *dev = chan->dev;
297 struct cx25821_dmaqueue *dmaq = &dev->channels[chan->id].dma_vidq;
300 cx_write(chan->sram_channels->dma_ctl, 0); /* FIFO and RISC disable */
301 spin_lock_irqsave(&dev->slock, flags);
302 while (!list_empty(&dmaq->active)) {
303 struct cx25821_buffer *buf = list_entry(dmaq->active.next,
304 struct cx25821_buffer, queue);
306 list_del(&buf->queue);
307 vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
309 spin_unlock_irqrestore(&dev->slock, flags);
312 static struct vb2_ops cx25821_video_qops = {
313 .queue_setup = cx25821_queue_setup,
314 .buf_prepare = cx25821_buffer_prepare,
315 .buf_finish = cx25821_buffer_finish,
316 .buf_queue = cx25821_buffer_queue,
317 .wait_prepare = vb2_ops_wait_prepare,
318 .wait_finish = vb2_ops_wait_finish,
319 .start_streaming = cx25821_start_streaming,
320 .stop_streaming = cx25821_stop_streaming,
325 static int cx25821_vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
326 struct v4l2_fmtdesc *f)
328 if (unlikely(f->index >= ARRAY_SIZE(formats)))
331 strlcpy(f->description, formats[f->index].name, sizeof(f->description));
332 f->pixelformat = formats[f->index].fourcc;
337 static int cx25821_vidioc_g_fmt_vid_cap(struct file *file, void *priv,
338 struct v4l2_format *f)
340 struct cx25821_channel *chan = video_drvdata(file);
342 f->fmt.pix.width = chan->width;
343 f->fmt.pix.height = chan->height;
344 f->fmt.pix.field = chan->field;
345 f->fmt.pix.pixelformat = chan->fmt->fourcc;
346 f->fmt.pix.bytesperline = (chan->width * chan->fmt->depth) >> 3;
347 f->fmt.pix.sizeimage = chan->height * f->fmt.pix.bytesperline;
348 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
353 static int cx25821_vidioc_try_fmt_vid_cap(struct file *file, void *priv,
354 struct v4l2_format *f)
356 struct cx25821_channel *chan = video_drvdata(file);
357 struct cx25821_dev *dev = chan->dev;
358 const struct cx25821_fmt *fmt;
359 enum v4l2_field field = f->fmt.pix.field;
363 fmt = cx25821_format_by_fourcc(f->fmt.pix.pixelformat);
366 maxh = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480;
368 w = f->fmt.pix.width;
369 if (field != V4L2_FIELD_BOTTOM)
370 field = V4L2_FIELD_TOP;
373 f->fmt.pix.height = maxh / 4;
374 } else if (w < 720) {
376 f->fmt.pix.height = maxh / 2;
379 f->fmt.pix.height = maxh;
380 field = V4L2_FIELD_INTERLACED;
382 f->fmt.pix.field = field;
383 f->fmt.pix.width = w;
384 f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
385 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
386 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
391 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
392 struct v4l2_format *f)
394 struct cx25821_channel *chan = video_drvdata(file);
395 struct cx25821_dev *dev = chan->dev;
396 int pix_format = PIXEL_FRMT_422;
399 err = cx25821_vidioc_try_fmt_vid_cap(file, priv, f);
404 chan->fmt = cx25821_format_by_fourcc(f->fmt.pix.pixelformat);
405 chan->field = f->fmt.pix.field;
406 chan->width = f->fmt.pix.width;
407 chan->height = f->fmt.pix.height;
409 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_Y41P)
410 pix_format = PIXEL_FRMT_411;
412 pix_format = PIXEL_FRMT_422;
414 cx25821_set_pixel_format(dev, SRAM_CH00, pix_format);
416 /* check if cif resolution */
417 if (chan->width == 320 || chan->width == 352)
418 chan->use_cif_resolution = 1;
420 chan->use_cif_resolution = 0;
422 chan->cif_width = chan->width;
423 medusa_set_resolution(dev, chan->width, SRAM_CH00);
427 static int vidioc_log_status(struct file *file, void *priv)
429 struct cx25821_channel *chan = video_drvdata(file);
430 struct cx25821_dev *dev = chan->dev;
431 const struct sram_channel *sram_ch = chan->sram_channels;
434 tmp = cx_read(sram_ch->dma_ctl);
435 pr_info("Video input 0 is %s\n",
436 (tmp & 0x11) ? "streaming" : "stopped");
441 static int cx25821_vidioc_querycap(struct file *file, void *priv,
442 struct v4l2_capability *cap)
444 struct cx25821_channel *chan = video_drvdata(file);
445 struct cx25821_dev *dev = chan->dev;
446 const u32 cap_input = V4L2_CAP_VIDEO_CAPTURE |
447 V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
448 const u32 cap_output = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_READWRITE;
450 strcpy(cap->driver, "cx25821");
451 strlcpy(cap->card, cx25821_boards[dev->board].name, sizeof(cap->card));
452 sprintf(cap->bus_info, "PCIe:%s", pci_name(dev->pci));
453 if (chan->id >= VID_CHANNEL_NUM)
454 cap->device_caps = cap_output;
456 cap->device_caps = cap_input;
457 cap->capabilities = cap_input | cap_output | V4L2_CAP_DEVICE_CAPS;
461 static int cx25821_vidioc_g_std(struct file *file, void *priv, v4l2_std_id *tvnorms)
463 struct cx25821_channel *chan = video_drvdata(file);
465 *tvnorms = chan->dev->tvnorm;
469 static int cx25821_vidioc_s_std(struct file *file, void *priv,
472 struct cx25821_channel *chan = video_drvdata(file);
473 struct cx25821_dev *dev = chan->dev;
475 if (dev->tvnorm == tvnorms)
478 dev->tvnorm = tvnorms;
480 chan->height = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480;
482 medusa_set_videostandard(dev);
487 static int cx25821_vidioc_enum_input(struct file *file, void *priv,
488 struct v4l2_input *i)
493 i->type = V4L2_INPUT_TYPE_CAMERA;
494 i->std = CX25821_NORMS;
495 strcpy(i->name, "Composite");
499 static int cx25821_vidioc_g_input(struct file *file, void *priv, unsigned int *i)
505 static int cx25821_vidioc_s_input(struct file *file, void *priv, unsigned int i)
507 return i ? -EINVAL : 0;
510 static int cx25821_s_ctrl(struct v4l2_ctrl *ctrl)
512 struct cx25821_channel *chan =
513 container_of(ctrl->handler, struct cx25821_channel, hdl);
514 struct cx25821_dev *dev = chan->dev;
517 case V4L2_CID_BRIGHTNESS:
518 medusa_set_brightness(dev, ctrl->val, chan->id);
521 medusa_set_hue(dev, ctrl->val, chan->id);
523 case V4L2_CID_CONTRAST:
524 medusa_set_contrast(dev, ctrl->val, chan->id);
526 case V4L2_CID_SATURATION:
527 medusa_set_saturation(dev, ctrl->val, chan->id);
535 static int cx25821_vidioc_enum_output(struct file *file, void *priv,
536 struct v4l2_output *o)
541 o->type = V4L2_INPUT_TYPE_CAMERA;
542 o->std = CX25821_NORMS;
543 strcpy(o->name, "Composite");
547 static int cx25821_vidioc_g_output(struct file *file, void *priv, unsigned int *o)
553 static int cx25821_vidioc_s_output(struct file *file, void *priv, unsigned int o)
555 return o ? -EINVAL : 0;
558 static int cx25821_vidioc_try_fmt_vid_out(struct file *file, void *priv,
559 struct v4l2_format *f)
561 struct cx25821_channel *chan = video_drvdata(file);
562 struct cx25821_dev *dev = chan->dev;
563 const struct cx25821_fmt *fmt;
565 fmt = cx25821_format_by_fourcc(f->fmt.pix.pixelformat);
568 f->fmt.pix.width = 720;
569 f->fmt.pix.height = (dev->tvnorm & V4L2_STD_625_50) ? 576 : 480;
570 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
571 f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
572 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
573 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
577 static int vidioc_s_fmt_vid_out(struct file *file, void *priv,
578 struct v4l2_format *f)
580 struct cx25821_channel *chan = video_drvdata(file);
583 err = cx25821_vidioc_try_fmt_vid_out(file, priv, f);
588 chan->fmt = cx25821_format_by_fourcc(f->fmt.pix.pixelformat);
589 chan->field = f->fmt.pix.field;
590 chan->width = f->fmt.pix.width;
591 chan->height = f->fmt.pix.height;
592 if (f->fmt.pix.pixelformat == V4L2_PIX_FMT_Y41P)
593 chan->pixel_formats = PIXEL_FRMT_411;
595 chan->pixel_formats = PIXEL_FRMT_422;
599 static const struct v4l2_ctrl_ops cx25821_ctrl_ops = {
600 .s_ctrl = cx25821_s_ctrl,
603 static const struct v4l2_file_operations video_fops = {
604 .owner = THIS_MODULE,
605 .open = v4l2_fh_open,
606 .release = vb2_fop_release,
607 .read = vb2_fop_read,
608 .poll = vb2_fop_poll,
609 .unlocked_ioctl = video_ioctl2,
610 .mmap = vb2_fop_mmap,
613 static const struct v4l2_ioctl_ops video_ioctl_ops = {
614 .vidioc_querycap = cx25821_vidioc_querycap,
615 .vidioc_enum_fmt_vid_cap = cx25821_vidioc_enum_fmt_vid_cap,
616 .vidioc_g_fmt_vid_cap = cx25821_vidioc_g_fmt_vid_cap,
617 .vidioc_try_fmt_vid_cap = cx25821_vidioc_try_fmt_vid_cap,
618 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
619 .vidioc_reqbufs = vb2_ioctl_reqbufs,
620 .vidioc_prepare_buf = vb2_ioctl_prepare_buf,
621 .vidioc_create_bufs = vb2_ioctl_create_bufs,
622 .vidioc_querybuf = vb2_ioctl_querybuf,
623 .vidioc_qbuf = vb2_ioctl_qbuf,
624 .vidioc_dqbuf = vb2_ioctl_dqbuf,
625 .vidioc_streamon = vb2_ioctl_streamon,
626 .vidioc_streamoff = vb2_ioctl_streamoff,
627 .vidioc_g_std = cx25821_vidioc_g_std,
628 .vidioc_s_std = cx25821_vidioc_s_std,
629 .vidioc_enum_input = cx25821_vidioc_enum_input,
630 .vidioc_g_input = cx25821_vidioc_g_input,
631 .vidioc_s_input = cx25821_vidioc_s_input,
632 .vidioc_log_status = vidioc_log_status,
633 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
634 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
637 static const struct video_device cx25821_video_device = {
638 .name = "cx25821-video",
640 .release = video_device_release_empty,
642 .ioctl_ops = &video_ioctl_ops,
643 .tvnorms = CX25821_NORMS,
646 static const struct v4l2_file_operations video_out_fops = {
647 .owner = THIS_MODULE,
648 .open = v4l2_fh_open,
649 .release = vb2_fop_release,
650 .write = vb2_fop_write,
651 .poll = vb2_fop_poll,
652 .unlocked_ioctl = video_ioctl2,
653 .mmap = vb2_fop_mmap,
656 static const struct v4l2_ioctl_ops video_out_ioctl_ops = {
657 .vidioc_querycap = cx25821_vidioc_querycap,
658 .vidioc_enum_fmt_vid_out = cx25821_vidioc_enum_fmt_vid_cap,
659 .vidioc_g_fmt_vid_out = cx25821_vidioc_g_fmt_vid_cap,
660 .vidioc_try_fmt_vid_out = cx25821_vidioc_try_fmt_vid_out,
661 .vidioc_s_fmt_vid_out = vidioc_s_fmt_vid_out,
662 .vidioc_g_std = cx25821_vidioc_g_std,
663 .vidioc_s_std = cx25821_vidioc_s_std,
664 .vidioc_enum_output = cx25821_vidioc_enum_output,
665 .vidioc_g_output = cx25821_vidioc_g_output,
666 .vidioc_s_output = cx25821_vidioc_s_output,
667 .vidioc_log_status = vidioc_log_status,
670 static const struct video_device cx25821_video_out_device = {
671 .name = "cx25821-video",
672 .fops = &video_out_fops,
673 .release = video_device_release_empty,
675 .ioctl_ops = &video_out_ioctl_ops,
676 .tvnorms = CX25821_NORMS,
679 void cx25821_video_unregister(struct cx25821_dev *dev, int chan_num)
681 cx_clear(PCI_INT_MSK, 1);
683 if (video_is_registered(&dev->channels[chan_num].vdev)) {
684 video_unregister_device(&dev->channels[chan_num].vdev);
685 v4l2_ctrl_handler_free(&dev->channels[chan_num].hdl);
689 int cx25821_video_register(struct cx25821_dev *dev)
694 /* initial device configuration */
695 dev->tvnorm = V4L2_STD_NTSC_M;
697 spin_lock_init(&dev->slock);
699 for (i = 0; i < MAX_VID_CAP_CHANNEL_NUM - 1; ++i) {
700 struct cx25821_channel *chan = &dev->channels[i];
701 struct video_device *vdev = &chan->vdev;
702 struct v4l2_ctrl_handler *hdl = &chan->hdl;
704 bool is_output = i > SRAM_CH08;
706 if (i == SRAM_CH08) /* audio channel */
710 v4l2_ctrl_handler_init(hdl, 4);
711 v4l2_ctrl_new_std(hdl, &cx25821_ctrl_ops,
712 V4L2_CID_BRIGHTNESS, 0, 10000, 1, 6200);
713 v4l2_ctrl_new_std(hdl, &cx25821_ctrl_ops,
714 V4L2_CID_CONTRAST, 0, 10000, 1, 5000);
715 v4l2_ctrl_new_std(hdl, &cx25821_ctrl_ops,
716 V4L2_CID_SATURATION, 0, 10000, 1, 5000);
717 v4l2_ctrl_new_std(hdl, &cx25821_ctrl_ops,
718 V4L2_CID_HUE, 0, 10000, 1, 5000);
723 err = v4l2_ctrl_handler_setup(hdl);
727 chan->out = &dev->vid_out_data[i - SRAM_CH09];
728 chan->out->chan = chan;
731 chan->sram_channels = &cx25821_sram_channels[i];
733 chan->field = V4L2_FIELD_INTERLACED;
734 if (dev->tvnorm & V4L2_STD_625_50)
739 if (chan->pixel_formats == PIXEL_FRMT_411)
740 chan->fmt = cx25821_format_by_fourcc(V4L2_PIX_FMT_Y41P);
742 chan->fmt = cx25821_format_by_fourcc(V4L2_PIX_FMT_YUYV);
744 cx_write(chan->sram_channels->int_stat, 0xffffffff);
746 INIT_LIST_HEAD(&chan->dma_vidq.active);
750 q->type = is_output ? V4L2_BUF_TYPE_VIDEO_OUTPUT :
751 V4L2_BUF_TYPE_VIDEO_CAPTURE;
752 q->io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF;
753 q->io_modes |= is_output ? VB2_WRITE : VB2_READ;
754 q->gfp_flags = GFP_DMA32;
755 q->min_buffers_needed = 2;
757 q->buf_struct_size = sizeof(struct cx25821_buffer);
758 q->ops = &cx25821_video_qops;
759 q->mem_ops = &vb2_dma_sg_memops;
760 q->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
761 q->lock = &dev->lock;
764 err = vb2_queue_init(q);
769 /* register v4l devices */
770 *vdev = is_output ? cx25821_video_out_device : cx25821_video_device;
771 vdev->v4l2_dev = &dev->v4l2_dev;
773 vdev->ctrl_handler = hdl;
775 vdev->vfl_dir = VFL_DIR_TX;
776 vdev->lock = &dev->lock;
778 snprintf(vdev->name, sizeof(vdev->name), "%s #%d", dev->name, i);
779 video_set_drvdata(vdev, chan);
781 err = video_register_device(vdev, VFL_TYPE_GRABBER,
788 /* set PCI interrupt */
789 cx_set(PCI_INT_MSK, 0xff);
795 cx25821_video_unregister(dev, i--);