2 * Analog Devices video capture driver
4 * Copyright (c) 2011 Analog Devices Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/completion.h>
21 #include <linux/delay.h>
22 #include <linux/errno.h>
24 #include <linux/i2c.h>
25 #include <linux/init.h>
26 #include <linux/interrupt.h>
29 #include <linux/module.h>
30 #include <linux/platform_device.h>
31 #include <linux/slab.h>
32 #include <linux/time.h>
33 #include <linux/types.h>
35 #include <media/v4l2-common.h>
36 #include <media/v4l2-ctrls.h>
37 #include <media/v4l2-device.h>
38 #include <media/v4l2-ioctl.h>
39 #include <media/videobuf2-dma-contig.h>
43 #include <media/blackfin/bfin_capture.h>
44 #include <media/blackfin/ppi.h>
46 #define CAPTURE_DRV_NAME "bfin_capture"
52 int bpp
; /* bits per pixel */
53 int dlen
; /* data length for ppi in bits */
57 struct vb2_v4l2_buffer vb
;
58 struct list_head list
;
62 /* capture device instance */
63 struct v4l2_device v4l2_dev
;
64 /* v4l2 control handler */
65 struct v4l2_ctrl_handler ctrl_handler
;
66 /* device node data */
67 struct video_device video_dev
;
68 /* sub device instance */
69 struct v4l2_subdev
*sd
;
71 struct bfin_capture_config
*cfg
;
75 unsigned int cur_input
;
76 /* current selected standard */
78 /* current selected dv_timings */
79 struct v4l2_dv_timings dv_timings
;
80 /* used to store pixel format */
81 struct v4l2_pix_format fmt
;
84 /* data length for ppi in bits */
86 /* used to store sensor supported format */
87 struct bcap_format
*sensor_formats
;
88 /* number of sensor formats array */
89 int num_sensor_formats
;
90 /* pointing to current video buffer */
91 struct bcap_buffer
*cur_frm
;
92 /* buffer queue used in videobuf2 */
93 struct vb2_queue buffer_queue
;
94 /* allocator-specific contexts for each plane */
95 struct vb2_alloc_ctx
*alloc_ctx
;
96 /* queue of filled frames */
97 struct list_head dma_queue
;
98 /* used in videobuf2 callback */
100 /* used to access capture device */
102 /* used to wait ppi to complete one transfer */
103 struct completion comp
;
104 /* prepare to stop */
106 /* vb2 buffer sequence counter */
110 static const struct bcap_format bcap_formats
[] = {
112 .desc
= "YCbCr 4:2:2 Interleaved UYVY",
113 .pixelformat
= V4L2_PIX_FMT_UYVY
,
114 .mbus_code
= MEDIA_BUS_FMT_UYVY8_2X8
,
119 .desc
= "YCbCr 4:2:2 Interleaved YUYV",
120 .pixelformat
= V4L2_PIX_FMT_YUYV
,
121 .mbus_code
= MEDIA_BUS_FMT_YUYV8_2X8
,
126 .desc
= "YCbCr 4:2:2 Interleaved UYVY",
127 .pixelformat
= V4L2_PIX_FMT_UYVY
,
128 .mbus_code
= MEDIA_BUS_FMT_UYVY8_1X16
,
134 .pixelformat
= V4L2_PIX_FMT_RGB565
,
135 .mbus_code
= MEDIA_BUS_FMT_RGB565_2X8_LE
,
141 .pixelformat
= V4L2_PIX_FMT_RGB444
,
142 .mbus_code
= MEDIA_BUS_FMT_RGB444_2X8_PADHI_LE
,
148 #define BCAP_MAX_FMTS ARRAY_SIZE(bcap_formats)
150 static irqreturn_t
bcap_isr(int irq
, void *dev_id
);
152 static struct bcap_buffer
*to_bcap_vb(struct vb2_v4l2_buffer
*vb
)
154 return container_of(vb
, struct bcap_buffer
, vb
);
157 static int bcap_init_sensor_formats(struct bcap_device
*bcap_dev
)
159 struct v4l2_subdev_mbus_code_enum code
= {
160 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
162 struct bcap_format
*sf
;
163 unsigned int num_formats
= 0;
166 while (!v4l2_subdev_call(bcap_dev
->sd
, pad
,
167 enum_mbus_code
, NULL
, &code
)) {
174 sf
= kzalloc(num_formats
* sizeof(*sf
), GFP_KERNEL
);
178 for (i
= 0; i
< num_formats
; i
++) {
180 v4l2_subdev_call(bcap_dev
->sd
, pad
,
181 enum_mbus_code
, NULL
, &code
);
182 for (j
= 0; j
< BCAP_MAX_FMTS
; j
++)
183 if (code
.code
== bcap_formats
[j
].mbus_code
)
185 if (j
== BCAP_MAX_FMTS
) {
186 /* we don't allow this sensor working with our bridge */
190 sf
[i
] = bcap_formats
[j
];
192 bcap_dev
->sensor_formats
= sf
;
193 bcap_dev
->num_sensor_formats
= num_formats
;
197 static void bcap_free_sensor_formats(struct bcap_device
*bcap_dev
)
199 bcap_dev
->num_sensor_formats
= 0;
200 kfree(bcap_dev
->sensor_formats
);
201 bcap_dev
->sensor_formats
= NULL
;
204 static int bcap_queue_setup(struct vb2_queue
*vq
,
205 unsigned int *nbuffers
, unsigned int *nplanes
,
206 unsigned int sizes
[], void *alloc_ctxs
[])
208 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vq
);
210 if (vq
->num_buffers
+ *nbuffers
< 2)
212 alloc_ctxs
[0] = bcap_dev
->alloc_ctx
;
215 return sizes
[0] < bcap_dev
->fmt
.sizeimage
? -EINVAL
: 0;
218 sizes
[0] = bcap_dev
->fmt
.sizeimage
;
223 static int bcap_buffer_prepare(struct vb2_buffer
*vb
)
225 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
226 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vb
->vb2_queue
);
227 unsigned long size
= bcap_dev
->fmt
.sizeimage
;
229 if (vb2_plane_size(vb
, 0) < size
) {
230 v4l2_err(&bcap_dev
->v4l2_dev
, "buffer too small (%lu < %lu)\n",
231 vb2_plane_size(vb
, 0), size
);
234 vb2_set_plane_payload(vb
, 0, size
);
236 vbuf
->field
= bcap_dev
->fmt
.field
;
241 static void bcap_buffer_queue(struct vb2_buffer
*vb
)
243 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
244 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vb
->vb2_queue
);
245 struct bcap_buffer
*buf
= to_bcap_vb(vbuf
);
248 spin_lock_irqsave(&bcap_dev
->lock
, flags
);
249 list_add_tail(&buf
->list
, &bcap_dev
->dma_queue
);
250 spin_unlock_irqrestore(&bcap_dev
->lock
, flags
);
253 static void bcap_buffer_cleanup(struct vb2_buffer
*vb
)
255 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
256 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vb
->vb2_queue
);
257 struct bcap_buffer
*buf
= to_bcap_vb(vbuf
);
260 spin_lock_irqsave(&bcap_dev
->lock
, flags
);
261 list_del_init(&buf
->list
);
262 spin_unlock_irqrestore(&bcap_dev
->lock
, flags
);
265 static int bcap_start_streaming(struct vb2_queue
*vq
, unsigned int count
)
267 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vq
);
268 struct ppi_if
*ppi
= bcap_dev
->ppi
;
269 struct bcap_buffer
*buf
, *tmp
;
270 struct ppi_params params
;
274 /* enable streamon on the sub device */
275 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_stream
, 1);
276 if (ret
&& (ret
!= -ENOIOCTLCMD
)) {
277 v4l2_err(&bcap_dev
->v4l2_dev
, "stream on failed in subdev\n");
282 params
.width
= bcap_dev
->fmt
.width
;
283 params
.height
= bcap_dev
->fmt
.height
;
284 params
.bpp
= bcap_dev
->bpp
;
285 params
.dlen
= bcap_dev
->dlen
;
286 params
.ppi_control
= bcap_dev
->cfg
->ppi_control
;
287 params
.int_mask
= bcap_dev
->cfg
->int_mask
;
288 if (bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
].capabilities
289 & V4L2_IN_CAP_DV_TIMINGS
) {
290 struct v4l2_bt_timings
*bt
= &bcap_dev
->dv_timings
.bt
;
292 params
.hdelay
= bt
->hsync
+ bt
->hbackporch
;
293 params
.vdelay
= bt
->vsync
+ bt
->vbackporch
;
294 params
.line
= V4L2_DV_BT_FRAME_WIDTH(bt
);
295 params
.frame
= V4L2_DV_BT_FRAME_HEIGHT(bt
);
296 } else if (bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
].capabilities
300 if (bcap_dev
->std
& V4L2_STD_525_60
) {
310 params
.line
= params
.width
+ bcap_dev
->cfg
->blank_pixels
;
311 params
.frame
= params
.height
;
313 ret
= ppi
->ops
->set_params(ppi
, ¶ms
);
315 v4l2_err(&bcap_dev
->v4l2_dev
,
316 "Error in setting ppi params\n");
320 /* attach ppi DMA irq handler */
321 ret
= ppi
->ops
->attach_irq(ppi
, bcap_isr
);
323 v4l2_err(&bcap_dev
->v4l2_dev
,
324 "Error in attaching interrupt handler\n");
328 bcap_dev
->sequence
= 0;
330 reinit_completion(&bcap_dev
->comp
);
331 bcap_dev
->stop
= false;
333 /* get the next frame from the dma queue */
334 bcap_dev
->cur_frm
= list_entry(bcap_dev
->dma_queue
.next
,
335 struct bcap_buffer
, list
);
336 /* remove buffer from the dma queue */
337 list_del_init(&bcap_dev
->cur_frm
->list
);
338 addr
= vb2_dma_contig_plane_dma_addr(&bcap_dev
->cur_frm
->vb
.vb2_buf
,
340 /* update DMA address */
341 ppi
->ops
->update_addr(ppi
, (unsigned long)addr
);
343 ppi
->ops
->start(ppi
);
348 list_for_each_entry_safe(buf
, tmp
, &bcap_dev
->dma_queue
, list
) {
349 list_del(&buf
->list
);
350 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_QUEUED
);
356 static void bcap_stop_streaming(struct vb2_queue
*vq
)
358 struct bcap_device
*bcap_dev
= vb2_get_drv_priv(vq
);
359 struct ppi_if
*ppi
= bcap_dev
->ppi
;
362 bcap_dev
->stop
= true;
363 wait_for_completion(&bcap_dev
->comp
);
365 ppi
->ops
->detach_irq(ppi
);
366 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_stream
, 0);
367 if (ret
&& (ret
!= -ENOIOCTLCMD
))
368 v4l2_err(&bcap_dev
->v4l2_dev
,
369 "stream off failed in subdev\n");
371 /* release all active buffers */
372 if (bcap_dev
->cur_frm
)
373 vb2_buffer_done(&bcap_dev
->cur_frm
->vb
.vb2_buf
,
374 VB2_BUF_STATE_ERROR
);
376 while (!list_empty(&bcap_dev
->dma_queue
)) {
377 bcap_dev
->cur_frm
= list_entry(bcap_dev
->dma_queue
.next
,
378 struct bcap_buffer
, list
);
379 list_del_init(&bcap_dev
->cur_frm
->list
);
380 vb2_buffer_done(&bcap_dev
->cur_frm
->vb
.vb2_buf
,
381 VB2_BUF_STATE_ERROR
);
385 static struct vb2_ops bcap_video_qops
= {
386 .queue_setup
= bcap_queue_setup
,
387 .buf_prepare
= bcap_buffer_prepare
,
388 .buf_cleanup
= bcap_buffer_cleanup
,
389 .buf_queue
= bcap_buffer_queue
,
390 .wait_prepare
= vb2_ops_wait_prepare
,
391 .wait_finish
= vb2_ops_wait_finish
,
392 .start_streaming
= bcap_start_streaming
,
393 .stop_streaming
= bcap_stop_streaming
,
396 static irqreturn_t
bcap_isr(int irq
, void *dev_id
)
398 struct ppi_if
*ppi
= dev_id
;
399 struct bcap_device
*bcap_dev
= ppi
->priv
;
400 struct vb2_v4l2_buffer
*vbuf
= &bcap_dev
->cur_frm
->vb
;
401 struct vb2_buffer
*vb
= &vbuf
->vb2_buf
;
404 spin_lock(&bcap_dev
->lock
);
406 if (!list_empty(&bcap_dev
->dma_queue
)) {
407 vb
->timestamp
= ktime_get_ns();
409 vb2_buffer_done(vb
, VB2_BUF_STATE_ERROR
);
412 vbuf
->sequence
= bcap_dev
->sequence
++;
413 vb2_buffer_done(vb
, VB2_BUF_STATE_DONE
);
415 bcap_dev
->cur_frm
= list_entry(bcap_dev
->dma_queue
.next
,
416 struct bcap_buffer
, list
);
417 list_del_init(&bcap_dev
->cur_frm
->list
);
419 /* clear error flag, we will get a new frame */
426 if (bcap_dev
->stop
) {
427 complete(&bcap_dev
->comp
);
429 addr
= vb2_dma_contig_plane_dma_addr(
430 &bcap_dev
->cur_frm
->vb
.vb2_buf
, 0);
431 ppi
->ops
->update_addr(ppi
, (unsigned long)addr
);
432 ppi
->ops
->start(ppi
);
435 spin_unlock(&bcap_dev
->lock
);
440 static int bcap_querystd(struct file
*file
, void *priv
, v4l2_std_id
*std
)
442 struct bcap_device
*bcap_dev
= video_drvdata(file
);
443 struct v4l2_input input
;
445 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
446 if (!(input
.capabilities
& V4L2_IN_CAP_STD
))
449 return v4l2_subdev_call(bcap_dev
->sd
, video
, querystd
, std
);
452 static int bcap_g_std(struct file
*file
, void *priv
, v4l2_std_id
*std
)
454 struct bcap_device
*bcap_dev
= video_drvdata(file
);
455 struct v4l2_input input
;
457 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
458 if (!(input
.capabilities
& V4L2_IN_CAP_STD
))
461 *std
= bcap_dev
->std
;
465 static int bcap_s_std(struct file
*file
, void *priv
, v4l2_std_id std
)
467 struct bcap_device
*bcap_dev
= video_drvdata(file
);
468 struct v4l2_input input
;
471 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
472 if (!(input
.capabilities
& V4L2_IN_CAP_STD
))
475 if (vb2_is_busy(&bcap_dev
->buffer_queue
))
478 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_std
, std
);
486 static int bcap_enum_dv_timings(struct file
*file
, void *priv
,
487 struct v4l2_enum_dv_timings
*timings
)
489 struct bcap_device
*bcap_dev
= video_drvdata(file
);
490 struct v4l2_input input
;
492 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
493 if (!(input
.capabilities
& V4L2_IN_CAP_DV_TIMINGS
))
498 return v4l2_subdev_call(bcap_dev
->sd
, pad
,
499 enum_dv_timings
, timings
);
502 static int bcap_query_dv_timings(struct file
*file
, void *priv
,
503 struct v4l2_dv_timings
*timings
)
505 struct bcap_device
*bcap_dev
= video_drvdata(file
);
506 struct v4l2_input input
;
508 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
509 if (!(input
.capabilities
& V4L2_IN_CAP_DV_TIMINGS
))
512 return v4l2_subdev_call(bcap_dev
->sd
, video
,
513 query_dv_timings
, timings
);
516 static int bcap_g_dv_timings(struct file
*file
, void *priv
,
517 struct v4l2_dv_timings
*timings
)
519 struct bcap_device
*bcap_dev
= video_drvdata(file
);
520 struct v4l2_input input
;
522 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
523 if (!(input
.capabilities
& V4L2_IN_CAP_DV_TIMINGS
))
526 *timings
= bcap_dev
->dv_timings
;
530 static int bcap_s_dv_timings(struct file
*file
, void *priv
,
531 struct v4l2_dv_timings
*timings
)
533 struct bcap_device
*bcap_dev
= video_drvdata(file
);
534 struct v4l2_input input
;
537 input
= bcap_dev
->cfg
->inputs
[bcap_dev
->cur_input
];
538 if (!(input
.capabilities
& V4L2_IN_CAP_DV_TIMINGS
))
541 if (vb2_is_busy(&bcap_dev
->buffer_queue
))
544 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_dv_timings
, timings
);
548 bcap_dev
->dv_timings
= *timings
;
552 static int bcap_enum_input(struct file
*file
, void *priv
,
553 struct v4l2_input
*input
)
555 struct bcap_device
*bcap_dev
= video_drvdata(file
);
556 struct bfin_capture_config
*config
= bcap_dev
->cfg
;
560 if (input
->index
>= config
->num_inputs
)
563 *input
= config
->inputs
[input
->index
];
564 /* get input status */
565 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, g_input_status
, &status
);
567 input
->status
= status
;
571 static int bcap_g_input(struct file
*file
, void *priv
, unsigned int *index
)
573 struct bcap_device
*bcap_dev
= video_drvdata(file
);
575 *index
= bcap_dev
->cur_input
;
579 static int bcap_s_input(struct file
*file
, void *priv
, unsigned int index
)
581 struct bcap_device
*bcap_dev
= video_drvdata(file
);
582 struct bfin_capture_config
*config
= bcap_dev
->cfg
;
583 struct bcap_route
*route
;
586 if (vb2_is_busy(&bcap_dev
->buffer_queue
))
589 if (index
>= config
->num_inputs
)
592 route
= &config
->routes
[index
];
593 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_routing
,
594 route
->input
, route
->output
, 0);
595 if ((ret
< 0) && (ret
!= -ENOIOCTLCMD
)) {
596 v4l2_err(&bcap_dev
->v4l2_dev
, "Failed to set input\n");
599 bcap_dev
->cur_input
= index
;
600 /* if this route has specific config, update ppi control */
601 if (route
->ppi_control
)
602 config
->ppi_control
= route
->ppi_control
;
606 static int bcap_try_format(struct bcap_device
*bcap
,
607 struct v4l2_pix_format
*pixfmt
,
608 struct bcap_format
*bcap_fmt
)
610 struct bcap_format
*sf
= bcap
->sensor_formats
;
611 struct bcap_format
*fmt
= NULL
;
612 struct v4l2_subdev_pad_config pad_cfg
;
613 struct v4l2_subdev_format format
= {
614 .which
= V4L2_SUBDEV_FORMAT_TRY
,
618 for (i
= 0; i
< bcap
->num_sensor_formats
; i
++) {
620 if (pixfmt
->pixelformat
== fmt
->pixelformat
)
623 if (i
== bcap
->num_sensor_formats
)
626 v4l2_fill_mbus_format(&format
.format
, pixfmt
, fmt
->mbus_code
);
627 ret
= v4l2_subdev_call(bcap
->sd
, pad
, set_fmt
, &pad_cfg
,
631 v4l2_fill_pix_format(pixfmt
, &format
.format
);
633 for (i
= 0; i
< bcap
->num_sensor_formats
; i
++) {
635 if (format
.format
.code
== fmt
->mbus_code
)
640 pixfmt
->bytesperline
= pixfmt
->width
* fmt
->bpp
/ 8;
641 pixfmt
->sizeimage
= pixfmt
->bytesperline
* pixfmt
->height
;
645 static int bcap_enum_fmt_vid_cap(struct file
*file
, void *priv
,
646 struct v4l2_fmtdesc
*fmt
)
648 struct bcap_device
*bcap_dev
= video_drvdata(file
);
649 struct bcap_format
*sf
= bcap_dev
->sensor_formats
;
651 if (fmt
->index
>= bcap_dev
->num_sensor_formats
)
654 fmt
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
655 strlcpy(fmt
->description
,
657 sizeof(fmt
->description
));
658 fmt
->pixelformat
= sf
[fmt
->index
].pixelformat
;
662 static int bcap_try_fmt_vid_cap(struct file
*file
, void *priv
,
663 struct v4l2_format
*fmt
)
665 struct bcap_device
*bcap_dev
= video_drvdata(file
);
666 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
668 return bcap_try_format(bcap_dev
, pixfmt
, NULL
);
671 static int bcap_g_fmt_vid_cap(struct file
*file
, void *priv
,
672 struct v4l2_format
*fmt
)
674 struct bcap_device
*bcap_dev
= video_drvdata(file
);
676 fmt
->fmt
.pix
= bcap_dev
->fmt
;
680 static int bcap_s_fmt_vid_cap(struct file
*file
, void *priv
,
681 struct v4l2_format
*fmt
)
683 struct bcap_device
*bcap_dev
= video_drvdata(file
);
684 struct v4l2_subdev_format format
= {
685 .which
= V4L2_SUBDEV_FORMAT_ACTIVE
,
687 struct bcap_format bcap_fmt
;
688 struct v4l2_pix_format
*pixfmt
= &fmt
->fmt
.pix
;
691 if (vb2_is_busy(&bcap_dev
->buffer_queue
))
694 /* see if format works */
695 ret
= bcap_try_format(bcap_dev
, pixfmt
, &bcap_fmt
);
699 v4l2_fill_mbus_format(&format
.format
, pixfmt
, bcap_fmt
.mbus_code
);
700 ret
= v4l2_subdev_call(bcap_dev
->sd
, pad
, set_fmt
, NULL
, &format
);
703 bcap_dev
->fmt
= *pixfmt
;
704 bcap_dev
->bpp
= bcap_fmt
.bpp
;
705 bcap_dev
->dlen
= bcap_fmt
.dlen
;
709 static int bcap_querycap(struct file
*file
, void *priv
,
710 struct v4l2_capability
*cap
)
712 struct bcap_device
*bcap_dev
= video_drvdata(file
);
714 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
715 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
716 strlcpy(cap
->driver
, CAPTURE_DRV_NAME
, sizeof(cap
->driver
));
717 strlcpy(cap
->bus_info
, "Blackfin Platform", sizeof(cap
->bus_info
));
718 strlcpy(cap
->card
, bcap_dev
->cfg
->card_name
, sizeof(cap
->card
));
722 static int bcap_g_parm(struct file
*file
, void *fh
,
723 struct v4l2_streamparm
*a
)
725 struct bcap_device
*bcap_dev
= video_drvdata(file
);
727 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
729 return v4l2_subdev_call(bcap_dev
->sd
, video
, g_parm
, a
);
732 static int bcap_s_parm(struct file
*file
, void *fh
,
733 struct v4l2_streamparm
*a
)
735 struct bcap_device
*bcap_dev
= video_drvdata(file
);
737 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
739 return v4l2_subdev_call(bcap_dev
->sd
, video
, s_parm
, a
);
742 static int bcap_log_status(struct file
*file
, void *priv
)
744 struct bcap_device
*bcap_dev
= video_drvdata(file
);
745 /* status for sub devices */
746 v4l2_device_call_all(&bcap_dev
->v4l2_dev
, 0, core
, log_status
);
750 static const struct v4l2_ioctl_ops bcap_ioctl_ops
= {
751 .vidioc_querycap
= bcap_querycap
,
752 .vidioc_g_fmt_vid_cap
= bcap_g_fmt_vid_cap
,
753 .vidioc_enum_fmt_vid_cap
= bcap_enum_fmt_vid_cap
,
754 .vidioc_s_fmt_vid_cap
= bcap_s_fmt_vid_cap
,
755 .vidioc_try_fmt_vid_cap
= bcap_try_fmt_vid_cap
,
756 .vidioc_enum_input
= bcap_enum_input
,
757 .vidioc_g_input
= bcap_g_input
,
758 .vidioc_s_input
= bcap_s_input
,
759 .vidioc_querystd
= bcap_querystd
,
760 .vidioc_s_std
= bcap_s_std
,
761 .vidioc_g_std
= bcap_g_std
,
762 .vidioc_s_dv_timings
= bcap_s_dv_timings
,
763 .vidioc_g_dv_timings
= bcap_g_dv_timings
,
764 .vidioc_query_dv_timings
= bcap_query_dv_timings
,
765 .vidioc_enum_dv_timings
= bcap_enum_dv_timings
,
766 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
767 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
768 .vidioc_querybuf
= vb2_ioctl_querybuf
,
769 .vidioc_qbuf
= vb2_ioctl_qbuf
,
770 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
771 .vidioc_expbuf
= vb2_ioctl_expbuf
,
772 .vidioc_streamon
= vb2_ioctl_streamon
,
773 .vidioc_streamoff
= vb2_ioctl_streamoff
,
774 .vidioc_g_parm
= bcap_g_parm
,
775 .vidioc_s_parm
= bcap_s_parm
,
776 .vidioc_log_status
= bcap_log_status
,
779 static struct v4l2_file_operations bcap_fops
= {
780 .owner
= THIS_MODULE
,
781 .open
= v4l2_fh_open
,
782 .release
= vb2_fop_release
,
783 .unlocked_ioctl
= video_ioctl2
,
784 .mmap
= vb2_fop_mmap
,
786 .get_unmapped_area
= vb2_fop_get_unmapped_area
,
791 static int bcap_probe(struct platform_device
*pdev
)
793 struct bcap_device
*bcap_dev
;
794 struct video_device
*vfd
;
795 struct i2c_adapter
*i2c_adap
;
796 struct bfin_capture_config
*config
;
798 struct bcap_route
*route
;
801 config
= pdev
->dev
.platform_data
;
802 if (!config
|| !config
->num_inputs
) {
803 v4l2_err(pdev
->dev
.driver
, "Unable to get board config\n");
807 bcap_dev
= kzalloc(sizeof(*bcap_dev
), GFP_KERNEL
);
809 v4l2_err(pdev
->dev
.driver
, "Unable to alloc bcap_dev\n");
813 bcap_dev
->cfg
= config
;
815 bcap_dev
->ppi
= ppi_create_instance(pdev
, config
->ppi_info
);
816 if (!bcap_dev
->ppi
) {
817 v4l2_err(pdev
->dev
.driver
, "Unable to create ppi\n");
821 bcap_dev
->ppi
->priv
= bcap_dev
;
823 bcap_dev
->alloc_ctx
= vb2_dma_contig_init_ctx(&pdev
->dev
);
824 if (IS_ERR(bcap_dev
->alloc_ctx
)) {
825 ret
= PTR_ERR(bcap_dev
->alloc_ctx
);
829 vfd
= &bcap_dev
->video_dev
;
830 /* initialize field of video device */
831 vfd
->release
= video_device_release_empty
;
832 vfd
->fops
= &bcap_fops
;
833 vfd
->ioctl_ops
= &bcap_ioctl_ops
;
835 vfd
->v4l2_dev
= &bcap_dev
->v4l2_dev
;
836 strncpy(vfd
->name
, CAPTURE_DRV_NAME
, sizeof(vfd
->name
));
838 ret
= v4l2_device_register(&pdev
->dev
, &bcap_dev
->v4l2_dev
);
840 v4l2_err(pdev
->dev
.driver
,
841 "Unable to register v4l2 device\n");
842 goto err_cleanup_ctx
;
844 v4l2_info(&bcap_dev
->v4l2_dev
, "v4l2 device registered\n");
846 bcap_dev
->v4l2_dev
.ctrl_handler
= &bcap_dev
->ctrl_handler
;
847 ret
= v4l2_ctrl_handler_init(&bcap_dev
->ctrl_handler
, 0);
849 v4l2_err(&bcap_dev
->v4l2_dev
,
850 "Unable to init control handler\n");
854 spin_lock_init(&bcap_dev
->lock
);
855 /* initialize queue */
856 q
= &bcap_dev
->buffer_queue
;
857 q
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
858 q
->io_modes
= VB2_MMAP
| VB2_DMABUF
;
859 q
->drv_priv
= bcap_dev
;
860 q
->buf_struct_size
= sizeof(struct bcap_buffer
);
861 q
->ops
= &bcap_video_qops
;
862 q
->mem_ops
= &vb2_dma_contig_memops
;
863 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
864 q
->lock
= &bcap_dev
->mutex
;
865 q
->min_buffers_needed
= 1;
867 ret
= vb2_queue_init(q
);
869 goto err_free_handler
;
871 mutex_init(&bcap_dev
->mutex
);
872 init_completion(&bcap_dev
->comp
);
874 /* init video dma queues */
875 INIT_LIST_HEAD(&bcap_dev
->dma_queue
);
877 vfd
->lock
= &bcap_dev
->mutex
;
880 /* register video device */
881 ret
= video_register_device(&bcap_dev
->video_dev
, VFL_TYPE_GRABBER
, -1);
883 v4l2_err(&bcap_dev
->v4l2_dev
,
884 "Unable to register video device\n");
885 goto err_free_handler
;
887 video_set_drvdata(&bcap_dev
->video_dev
, bcap_dev
);
888 v4l2_info(&bcap_dev
->v4l2_dev
, "video device registered as: %s\n",
889 video_device_node_name(vfd
));
891 /* load up the subdevice */
892 i2c_adap
= i2c_get_adapter(config
->i2c_adapter_id
);
894 v4l2_err(&bcap_dev
->v4l2_dev
,
895 "Unable to find i2c adapter\n");
900 bcap_dev
->sd
= v4l2_i2c_new_subdev_board(&bcap_dev
->v4l2_dev
,
907 /* update tvnorms from the sub devices */
908 for (i
= 0; i
< config
->num_inputs
; i
++)
909 vfd
->tvnorms
|= config
->inputs
[i
].std
;
911 v4l2_err(&bcap_dev
->v4l2_dev
,
912 "Unable to register sub device\n");
917 v4l2_info(&bcap_dev
->v4l2_dev
, "v4l2 sub device registered\n");
920 * explicitly set input, otherwise some boards
921 * may not work at the state as we expected
923 route
= &config
->routes
[0];
924 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, s_routing
,
925 route
->input
, route
->output
, 0);
926 if ((ret
< 0) && (ret
!= -ENOIOCTLCMD
)) {
927 v4l2_err(&bcap_dev
->v4l2_dev
, "Failed to set input\n");
930 bcap_dev
->cur_input
= 0;
931 /* if this route has specific config, update ppi control */
932 if (route
->ppi_control
)
933 config
->ppi_control
= route
->ppi_control
;
935 /* now we can probe the default state */
936 if (config
->inputs
[0].capabilities
& V4L2_IN_CAP_STD
) {
938 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
, g_std
, &std
);
940 v4l2_err(&bcap_dev
->v4l2_dev
,
941 "Unable to get std\n");
946 if (config
->inputs
[0].capabilities
& V4L2_IN_CAP_DV_TIMINGS
) {
947 struct v4l2_dv_timings dv_timings
;
948 ret
= v4l2_subdev_call(bcap_dev
->sd
, video
,
949 g_dv_timings
, &dv_timings
);
951 v4l2_err(&bcap_dev
->v4l2_dev
,
952 "Unable to get dv timings\n");
955 bcap_dev
->dv_timings
= dv_timings
;
957 ret
= bcap_init_sensor_formats(bcap_dev
);
959 v4l2_err(&bcap_dev
->v4l2_dev
,
960 "Unable to create sensor formats table\n");
965 video_unregister_device(&bcap_dev
->video_dev
);
967 v4l2_ctrl_handler_free(&bcap_dev
->ctrl_handler
);
969 v4l2_device_unregister(&bcap_dev
->v4l2_dev
);
971 vb2_dma_contig_cleanup_ctx(bcap_dev
->alloc_ctx
);
973 ppi_delete_instance(bcap_dev
->ppi
);
979 static int bcap_remove(struct platform_device
*pdev
)
981 struct v4l2_device
*v4l2_dev
= platform_get_drvdata(pdev
);
982 struct bcap_device
*bcap_dev
= container_of(v4l2_dev
,
983 struct bcap_device
, v4l2_dev
);
985 bcap_free_sensor_formats(bcap_dev
);
986 video_unregister_device(&bcap_dev
->video_dev
);
987 v4l2_ctrl_handler_free(&bcap_dev
->ctrl_handler
);
988 v4l2_device_unregister(v4l2_dev
);
989 vb2_dma_contig_cleanup_ctx(bcap_dev
->alloc_ctx
);
990 ppi_delete_instance(bcap_dev
->ppi
);
995 static struct platform_driver bcap_driver
= {
997 .name
= CAPTURE_DRV_NAME
,
1000 .remove
= bcap_remove
,
1002 module_platform_driver(bcap_driver
);
1004 MODULE_DESCRIPTION("Analog Devices blackfin video capture driver");
1005 MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>");
1006 MODULE_LICENSE("GPL v2");