From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>,
"Helen Koike" <helen.koike@collabora.com>,
"Hans Verkuil" <hverkuil@xs4all.nl>,
linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
"Niklas Söderlund" <niklas.soderlund+renesas@ragnatech.se>
Subject: Re: [PATCH v4 3/3] staging/intel-ipu3: Make use of V4L2_CAP_IO_MC
Date: Wed, 11 Mar 2020 03:12:19 +0200 [thread overview]
Message-ID: <20200311011219.GE4871@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20200309135318.GV5379@paasikivi.fi.intel.com>
Hello,
On Mon, Mar 09, 2020 at 03:53:18PM +0200, Sakari Ailus wrote:
> On Fri, Mar 06, 2020 at 05:39:35PM +0100, Niklas Söderlund wrote:
> > From: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> >
> > Set the V4L2_CAP_IO_MC capability flag and remove the driver specific
> > vidioc_enum_{input,output}, vidioc_g_{input,output} and
> > vidioc_s_{input,output} callbacks.
> >
> > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> > ---
> > drivers/staging/media/ipu3/ipu3-v4l2.c | 60 +-------------------------
> > 1 file changed, 2 insertions(+), 58 deletions(-)
> >
> > diff --git a/drivers/staging/media/ipu3/ipu3-v4l2.c b/drivers/staging/media/ipu3/ipu3-v4l2.c
> > index 09c8ede1457cad96..2c42be3d995621e3 100644
> > --- a/drivers/staging/media/ipu3/ipu3-v4l2.c
> > +++ b/drivers/staging/media/ipu3/ipu3-v4l2.c
> > @@ -845,54 +845,6 @@ static int imgu_vidioc_g_meta_fmt(struct file *file, void *fh,
> > return 0;
> > }
> >
> > -static int imgu_vidioc_enum_input(struct file *file, void *fh,
> > - struct v4l2_input *input)
> > -{
> > - if (input->index > 0)
> > - return -EINVAL;
> > - strscpy(input->name, "camera", sizeof(input->name));
> > - input->type = V4L2_INPUT_TYPE_CAMERA;
> > -
> > - return 0;
> > -}
> > -
> > -static int imgu_vidioc_g_input(struct file *file, void *fh, unsigned int *input)
> > -{
> > - *input = 0;
> > -
> > - return 0;
> > -}
> > -
> > -static int imgu_vidioc_s_input(struct file *file, void *fh, unsigned int input)
> > -{
> > - return input == 0 ? 0 : -EINVAL;
> > -}
> > -
> > -static int imgu_vidioc_enum_output(struct file *file, void *fh,
> > - struct v4l2_output *output)
> > -{
> > - if (output->index > 0)
> > - return -EINVAL;
> > - strscpy(output->name, "camera", sizeof(output->name));
> > - output->type = V4L2_INPUT_TYPE_CAMERA;
> > -
> > - return 0;
> > -}
> > -
> > -static int imgu_vidioc_g_output(struct file *file, void *fh,
> > - unsigned int *output)
> > -{
> > - *output = 0;
> > -
> > - return 0;
> > -}
> > -
> > -static int imgu_vidioc_s_output(struct file *file, void *fh,
> > - unsigned int output)
> > -{
> > - return output == 0 ? 0 : -EINVAL;
> > -}
> > -
> > /******************** function pointers ********************/
> >
> > static struct v4l2_subdev_internal_ops imgu_subdev_internal_ops = {
> > @@ -965,14 +917,6 @@ static const struct v4l2_ioctl_ops imgu_v4l2_ioctl_ops = {
> > .vidioc_s_fmt_vid_out_mplane = imgu_vidioc_s_fmt,
> > .vidioc_try_fmt_vid_out_mplane = imgu_vidioc_try_fmt,
> >
> > - .vidioc_enum_output = imgu_vidioc_enum_output,
> > - .vidioc_g_output = imgu_vidioc_g_output,
> > - .vidioc_s_output = imgu_vidioc_s_output,
> > -
> > - .vidioc_enum_input = imgu_vidioc_enum_input,
> > - .vidioc_g_input = imgu_vidioc_g_input,
> > - .vidioc_s_input = imgu_vidioc_s_input,
> > -
> > /* buffer queue management */
> > .vidioc_reqbufs = vb2_ioctl_reqbufs,
> > .vidioc_create_bufs = vb2_ioctl_create_bufs,
> > @@ -1062,7 +1006,7 @@ static void imgu_node_to_v4l2(u32 node, struct video_device *vdev,
> >
> > switch (node) {
> > case IMGU_NODE_IN:
> > - cap = V4L2_CAP_VIDEO_OUTPUT_MPLANE;
> > + cap = V4L2_CAP_VIDEO_OUTPUT_MPLANE | V4L2_CAP_IO_MC;
> > f->type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
> > vdev->ioctl_ops = &imgu_v4l2_ioctl_ops;
> > break;
> > @@ -1081,7 +1025,7 @@ static void imgu_node_to_v4l2(u32 node, struct video_device *vdev,
> > imgu_css_meta_fmt_set(&f->fmt.meta);
> > break;
> > default:
> > - cap = V4L2_CAP_VIDEO_CAPTURE_MPLANE;
> > + cap = V4L2_CAP_VIDEO_CAPTURE_MPLANE | V4L2_CAP_IO_MC;
>
> So here, you'd add V4L2_CAP_IO_MC to all kinds of nodes.
>
> With that,
>
> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
I like that better too. With that change,
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > f->type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
> > vdev->ioctl_ops = &imgu_v4l2_ioctl_ops;
> > }
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2020-03-11 1:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-06 16:39 [PATCH v4 0/3] v4l2-dev/ioctl: Add V4L2_CAP_IO_MC Niklas Söderlund
2020-03-06 16:39 ` [PATCH v4 1/3] " Niklas Söderlund
2020-03-09 13:47 ` Sakari Ailus
2020-03-09 13:53 ` Hans Verkuil
2020-03-09 13:56 ` Sakari Ailus
2020-03-09 14:10 ` Hans Verkuil
2020-03-09 14:22 ` Sakari Ailus
2020-03-09 13:52 ` Sakari Ailus
2020-03-11 1:10 ` Laurent Pinchart
2020-03-06 16:39 ` [PATCH v4 2/3] rcar-vin: Make use of V4L2_CAP_IO_MC Niklas Söderlund
2020-03-11 1:11 ` Laurent Pinchart
2020-03-06 16:39 ` [PATCH v4 3/3] staging/intel-ipu3: " Niklas Söderlund
2020-03-09 13:53 ` Sakari Ailus
2020-03-11 1:12 ` Laurent Pinchart [this message]
2020-03-09 13:25 ` [PATCH v4 0/3] v4l2-dev/ioctl: Add V4L2_CAP_IO_MC Hans Verkuil
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200311011219.GE4871@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=helen.koike@collabora.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=niklas.soderlund+renesas@ragnatech.se \
--cc=niklas.soderlund@ragnatech.se \
--cc=sakari.ailus@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.