Linux Media Controller development
 help / color / mirror / Atom feed
From: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org, mchehab@osg.samsung.com
Subject: Re: [PATCH 2/2] tw686x: Support VIDIOC_{S,G}_PARM ioctls
Date: Mon, 4 Jul 2016 11:38:24 -0300	[thread overview]
Message-ID: <20160704143824.GB23710@laptop> (raw)
In-Reply-To: <04ed5330-c64a-f283-5984-7a0fd1f69a47@xs4all.nl>

On 01 Jul 12:46 PM, Hans Verkuil wrote:
> On 06/29/2016 04:17 AM, Ezequiel Garcia wrote:
> > Now that the frame rate can be properly set, this commit adds support
> > for S_PARM and G_PARM.
> 
> As mentioned in our irc discussion you also need to add enum_framesize/intervals.
> Otherwise applications won't know what values to use with s_parm.
> 

Sure, I'll add those as follow-up patches.

> > 
> > Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
> > ---
> >  drivers/media/pci/tw686x/tw686x-video.c | 46 ++++++++++++++++++++++++++++++---
> >  1 file changed, 43 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/media/pci/tw686x/tw686x-video.c b/drivers/media/pci/tw686x/tw686x-video.c
> > index 3131f9305313..40b5b835d452 100644
> > --- a/drivers/media/pci/tw686x/tw686x-video.c
> > +++ b/drivers/media/pci/tw686x/tw686x-video.c
> > @@ -437,9 +437,6 @@ static void tw686x_set_framerate(struct tw686x_video_channel *vc,
> >  {
> >  	unsigned int i;
> >  
> > -	if (vc->fps == fps)
> > -		return;
> > -
> >  	i = tw686x_fps_idx(fps, TW686X_MAX_FPS(vc->video_standard));
> >  	reg_write(vc->dev, VIDEO_FIELD_CTRL[vc->ch], fps_map[i]);
> >  	vc->fps = tw686x_real_fps(i, TW686X_MAX_FPS(vc->video_standard));
> > @@ -843,6 +840,12 @@ static int tw686x_s_std(struct file *file, void *priv, v4l2_std_id id)
> >  	ret = tw686x_g_fmt_vid_cap(file, priv, &f);
> >  	if (!ret)
> >  		tw686x_s_fmt_vid_cap(file, priv, &f);
> > +
> > +	/*
> > +	 * Frame decimation depends on the chosen standard,
> > +	 * so reset it to the current value.
> > +	 */
> > +	tw686x_set_framerate(vc, vc->fps);
> >  	return 0;
> >  }
> >  
> > @@ -912,6 +915,40 @@ static int tw686x_g_std(struct file *file, void *priv, v4l2_std_id *id)
> >  	return 0;
> >  }
> >  
> > +static int tw686x_g_parm(struct file *file, void *priv,
> > +			 struct v4l2_streamparm *sp)
> > +{
> > +	struct tw686x_video_channel *vc = video_drvdata(file);
> > +	struct v4l2_captureparm *cp = &sp->parm.capture;
> > +
> > +	if (sp->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
> > +		return -EINVAL;
> 
> You need this check in s_parm as well.
> 

Will do.

> > +	sp->parm.capture.readbuffers = 3;
> > +
> > +	cp->capability = V4L2_CAP_TIMEPERFRAME;
> > +	cp->timeperframe.numerator = 1;
> > +	cp->timeperframe.denominator = vc->fps;
> > +	return 0;
> > +}
> > +
> > +static int tw686x_s_parm(struct file *file, void *priv,
> > +			 struct v4l2_streamparm *sp)
> > +{
> > +	struct tw686x_video_channel *vc = video_drvdata(file);
> > +	struct v4l2_captureparm *cp = &sp->parm.capture;
> > +	unsigned int denominator = cp->timeperframe.denominator;
> > +	unsigned int numerator = cp->timeperframe.numerator;
> > +	unsigned int fps;
> > +
> > +	if (vb2_is_busy(&vc->vidq))
> > +		return -EBUSY;
> > +
> > +	fps = (!numerator || !denominator) ? 0 : denominator / numerator;
> > +	if (vc->fps != fps)
> > +		tw686x_set_framerate(vc, fps);
> > +	return tw686x_g_parm(file, priv, sp);
> > +}
> > +
> >  static int tw686x_enum_fmt_vid_cap(struct file *file, void *priv,
> >  				   struct v4l2_fmtdesc *f)
> >  {
> > @@ -998,6 +1035,9 @@ static const struct v4l2_ioctl_ops tw686x_video_ioctl_ops = {
> >  	.vidioc_g_std			= tw686x_g_std,
> >  	.vidioc_s_std			= tw686x_s_std,
> >  
> > +	.vidioc_g_parm			= tw686x_g_parm,
> > +	.vidioc_s_parm			= tw686x_s_parm,
> > +
> >  	.vidioc_enum_input		= tw686x_enum_input,
> >  	.vidioc_g_input			= tw686x_g_input,
> >  	.vidioc_s_input			= tw686x_s_input,
> > 

Thanks,
-- 
Ezequiel Garcia, VanguardiaSur
www.vanguardiasur.com.ar

      reply	other threads:[~2016-07-04 14:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-29  2:17 [PATCH 1/2] tw686x: use a formula instead of two tables for div Ezequiel Garcia
2016-06-29  2:17 ` [PATCH 2/2] tw686x: Support VIDIOC_{S,G}_PARM ioctls Ezequiel Garcia
2016-07-01 10:46   ` Hans Verkuil
2016-07-04 14:38     ` Ezequiel Garcia [this message]

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=20160704143824.GB23710@laptop \
    --to=ezequiel@vanguardiasur.com.ar \
    --cc=hverkuil@xs4all.nl \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@osg.samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox