sun4i-csi: drop read/write, enable VB2_DMABUF
authorHans Verkuil <hverkuil-cisco@xs4all.nl>
Tue, 7 Jul 2020 13:32:59 +0000 (15:32 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sun, 19 Jul 2020 05:45:35 +0000 (07:45 +0200)
For no obvious reason VB2_DMABUF was not enabled. Add this.

Also both read and write file ops were set, but this was not enabled
in the vb2 io_modes or in the device_caps capabilities. Drop this.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Acked-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/sunxi/sun4i-csi/sun4i_dma.c
drivers/media/platform/sunxi/sun4i-csi/sun4i_v4l2.c

index 78fa1c535ac64fcaad51dd18b5432976f677ac16..3278746246aa488768c8828b2e7b7acb91287913 100644 (file)
@@ -413,7 +413,7 @@ int sun4i_csi_dma_register(struct sun4i_csi *csi, int irq)
 
        q->min_buffers_needed = 3;
        q->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
-       q->io_modes = VB2_MMAP;
+       q->io_modes = VB2_MMAP | VB2_DMABUF;
        q->lock = &csi->lock;
        q->drv_priv = csi;
        q->buf_struct_size = sizeof(struct sun4i_csi_buffer);
index 1721e5aee9c68ae1ceb10d1e1f8176894b629141..06bf0d1709049a2ad5ef2cf901f8367c18022cfb 100644 (file)
@@ -256,8 +256,6 @@ static const struct v4l2_file_operations sun4i_csi_fops = {
        .open           = sun4i_csi_open,
        .release        = sun4i_csi_release,
        .unlocked_ioctl = video_ioctl2,
-       .read           = vb2_fop_read,
-       .write          = vb2_fop_write,
        .poll           = vb2_fop_poll,
        .mmap           = vb2_fop_mmap,
 };