Commit b517f562 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab

media: imx: capture: Move queue and ctrl handler init to init function

Move the initialization of the vb2 queue and the control handler to the
imx_media_capture_device_init() function. There's no need to delay them
until the registration time.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: default avatarRui Miguel Silva <rmfrfs@gmail.com>
Reviewed-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent cf56ac08
...@@ -725,7 +725,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev) ...@@ -725,7 +725,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev)
struct v4l2_subdev *sd = priv->src_sd; struct v4l2_subdev *sd = priv->src_sd;
struct v4l2_device *v4l2_dev = sd->v4l2_dev; struct v4l2_device *v4l2_dev = sd->v4l2_dev;
struct video_device *vfd = vdev->vfd; struct video_device *vfd = vdev->vfd;
struct vb2_queue *vq = &priv->q;
struct v4l2_subdev_format fmt_src; struct v4l2_subdev_format fmt_src;
int ret; int ret;
...@@ -740,25 +739,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev) ...@@ -740,25 +739,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev)
return ret; return ret;
} }
vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
vq->io_modes = VB2_MMAP | VB2_DMABUF;
vq->drv_priv = priv;
vq->buf_struct_size = sizeof(struct imx_media_buffer);
vq->ops = &capture_qops;
vq->mem_ops = &vb2_dma_contig_memops;
vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
vq->lock = &priv->mutex;
vq->min_buffers_needed = 2;
vq->dev = priv->dev;
ret = vb2_queue_init(vq);
if (ret) {
dev_err(priv->dev, "vb2_queue_init failed\n");
goto unreg;
}
INIT_LIST_HEAD(&priv->ready_q);
/* create the link from the src_sd devnode pad to device node */ /* create the link from the src_sd devnode pad to device node */
ret = media_create_pad_link(&sd->entity, priv->src_sd_pad, ret = media_create_pad_link(&sd->entity, priv->src_sd_pad,
&vfd->entity, 0, 0); &vfd->entity, 0, 0);
...@@ -787,8 +767,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev) ...@@ -787,8 +767,6 @@ int imx_media_capture_device_register(struct imx_media_video_dev *vdev)
dev_info(priv->dev, "Registered %s as /dev/%s\n", vfd->name, dev_info(priv->dev, "Registered %s as /dev/%s\n", vfd->name,
video_device_node_name(vfd)); video_device_node_name(vfd));
vfd->ctrl_handler = &priv->ctrl_hdlr;
/* add vdev to the video device list */ /* add vdev to the video device list */
imx_media_add_video_device(priv->md, vdev); imx_media_add_video_device(priv->md, vdev);
...@@ -815,6 +793,7 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd, ...@@ -815,6 +793,7 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd,
{ {
struct capture_priv *priv; struct capture_priv *priv;
struct video_device *vfd; struct video_device *vfd;
struct vb2_queue *vq;
int ret; int ret;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
...@@ -826,8 +805,10 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd, ...@@ -826,8 +805,10 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd,
priv->dev = dev; priv->dev = dev;
mutex_init(&priv->mutex); mutex_init(&priv->mutex);
INIT_LIST_HEAD(&priv->ready_q);
spin_lock_init(&priv->q_lock); spin_lock_init(&priv->q_lock);
/* Allocate and initialize the video device. */
snprintf(capture_videodev.name, sizeof(capture_videodev.name), snprintf(capture_videodev.name, sizeof(capture_videodev.name),
"%s capture", src_sd->name); "%s capture", src_sd->name);
...@@ -838,8 +819,12 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd, ...@@ -838,8 +819,12 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd,
*vfd = capture_videodev; *vfd = capture_videodev;
vfd->lock = &priv->mutex; vfd->lock = &priv->mutex;
vfd->queue = &priv->q; vfd->queue = &priv->q;
video_set_drvdata(vfd, priv);
priv->vdev.vfd = vfd; priv->vdev.vfd = vfd;
INIT_LIST_HEAD(&priv->vdev.list);
/* Initialize the video device pad. */
priv->vdev_pad.flags = MEDIA_PAD_FL_SINK; priv->vdev_pad.flags = MEDIA_PAD_FL_SINK;
ret = media_entity_pads_init(&vfd->entity, 1, &priv->vdev_pad); ret = media_entity_pads_init(&vfd->entity, 1, &priv->vdev_pad);
if (ret) { if (ret) {
...@@ -847,11 +832,29 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd, ...@@ -847,11 +832,29 @@ imx_media_capture_device_init(struct device *dev, struct v4l2_subdev *src_sd,
return ERR_PTR(ret); return ERR_PTR(ret);
} }
INIT_LIST_HEAD(&priv->vdev.list); /* Initialize the vb2 queue. */
vq = &priv->q;
vq->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
vq->io_modes = VB2_MMAP | VB2_DMABUF;
vq->drv_priv = priv;
vq->buf_struct_size = sizeof(struct imx_media_buffer);
vq->ops = &capture_qops;
vq->mem_ops = &vb2_dma_contig_memops;
vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
vq->lock = &priv->mutex;
vq->min_buffers_needed = 2;
vq->dev = priv->dev;
video_set_drvdata(vfd, priv); ret = vb2_queue_init(vq);
if (ret) {
dev_err(priv->dev, "vb2_queue_init failed\n");
video_device_release(vfd);
return ERR_PTR(ret);
}
/* Initialize the control handler. */
v4l2_ctrl_handler_init(&priv->ctrl_hdlr, 0); v4l2_ctrl_handler_init(&priv->ctrl_hdlr, 0);
vfd->ctrl_handler = &priv->ctrl_hdlr;
return &priv->vdev; return &priv->vdev;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment