From: Alain Volmat <alain.volmat@foss.st.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>,
<devicetree@vger.kernel.org>,
Hugues Fruchet <hugues.fruchet@foss.st.com>,
<linux-kernel@vger.kernel.org>, Hans Verkuil <hverkuil@xs4all.nl>,
Rob Herring <robh+dt@kernel.org>,
Dan Scally <dan.scally@ideasonboard.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
<linux-stm32@st-md-mailman.stormreply.com>,
<linux-arm-kernel@lists.infradead.org>,
<linux-media@vger.kernel.org>
Subject: Re: [Linux-stm32] [PATCH v1 3/5] media: stm32-dcmipp: STM32 DCMIPP camera interface driver
Date: Tue, 29 Aug 2023 16:17:28 +0200 [thread overview]
Message-ID: <20230829141623.GA193536@gnbcxd0016.gnb.st.com> (raw)
In-Reply-To: <20230829082635.GC4698@pendragon.ideasonboard.com>
Hi Laurent,
On Tue, Aug 29, 2023 at 11:26:35AM +0300, Laurent Pinchart wrote:
> On Thu, Aug 24, 2023 at 06:05:06PM +0200, Alain Volmat wrote:
> > Hi Laurent,
> >
> > On Thu, Aug 24, 2023 at 04:04:32PM +0300, Laurent Pinchart wrote:
> > > On Thu, Aug 24, 2023 at 12:26:42PM +0000, Sakari Ailus wrote:
> > > > On Thu, Aug 24, 2023 at 01:09:34PM +0200, Alain Volmat wrote:
> > > > > Hi Sakari,
> > > > >
> > > > > thanks a lot for the review. I've already taken care of the comments I got
> > > > > from Dan and will also add fixes for your comments as well before
> > > > > pushing the v2. Before going into that I thought I'd better clarify the
> > > > > framerate part which seems the most tricky part.
> > > > >
> > > > > On Mon, Aug 07, 2023 at 09:29:55AM +0000, Sakari Ailus wrote:
> > > >
> > > > ...
> > > >
> > > > > > > +static int dcmipp_byteproc_g_frame_interval(struct v4l2_subdev *sd,
> > > > > > > + struct v4l2_subdev_frame_interval *fi)
> > > > > > > +{
> > > > > > > + struct dcmipp_byteproc_device *byteproc = v4l2_get_subdevdata(sd);
> > > > > > > +
> > > > > > > + if (IS_SINK(fi->pad))
> > > > > > > + fi->interval = byteproc->sink_interval;
> > > > > > > + else
> > > > > > > + fi->interval = byteproc->src_interval;
> > > > > > > +
> > > > > > > + return 0;
> > > > > > > +}
> > > > > > > +
> > > > > > > +static int dcmipp_byteproc_s_frame_interval(struct v4l2_subdev *sd,
> > > > > > > + struct v4l2_subdev_frame_interval *fi)
> > > > > > > +{
> > > > > > > + struct dcmipp_byteproc_device *byteproc = v4l2_get_subdevdata(sd);
> > > > > > > +
> > > > > > > + mutex_lock(&byteproc->lock);
> > > > > > > +
> > > > > > > + if (byteproc->streaming) {
> > > > > > > + mutex_unlock(&byteproc->lock);
> > > > > > > + return -EBUSY;
> > > > > > > + }
> > > > > > > +
> > > > > > > + if (fi->interval.numerator == 0 || fi->interval.denominator == 0)
> > > > > > > + fi->interval = byteproc->sink_interval;
> > > > > > > +
> > > > > > > + if (IS_SINK(fi->pad)) {
> > > > > > > + /*
> > > > > > > + * Setting sink frame interval resets frame skipping.
> > > > > > > + * Sink frame interval is propagated to src.
> > > > > > > + */
> > > > > > > + byteproc->frate = 0;
> > > > > > > + byteproc->sink_interval = fi->interval;
> > > > > > > + byteproc->src_interval = byteproc->sink_interval;
> > > > > >
> > > > > > Is this used for anything else than configure skipping?
> > > > > >
> > > > > > I think I'd just have a control for it in that case.
> > > > > >
> > > > > > I don't think exposing frame interval configuration is necessarily even
> > > > > > meaningful for a device that just processes data but does not produce it.
> > > > >
> > > > > The DCMIPP is able to perform frame drop, 1/2, 1/4, 1/8 basically.
> > > > > As Dan pointed me out, indeed setting frame interval as we did on both
> > > > > sink and source pad isn't a defined behavior. I first thought that
> > > > > using the frame interval was the proper way to do that but that is
> > > > > indeed only used on producers such as sensors ....
> > > > > Which ctrl would you propose in such case ?
> > > >
> > > > We don't have one, AFAIK, and I think it may be unlikely this will be
> > > > needed elsewhere. So I'd use a private control.
> > > >
> > > > I wonder what others think. Cc Laurent as well.
> > >
> > > What are the use cases for this feature ?
> >
> > This is basically to allow reducing the framerate of the
> > captured stream when this is not possible at the producer
> > (sensor) level and we need to lower down the stress on elements down the
> > pipeline.
>
> I wonder if the frame interval API is a good fit for this. The driver
> accepts frame rates of 1, 2, 4 and 8 fps and maps them to the
> corresponding decimation factor, these values are not the actual frame
> rate.
Not exactly. The way it was done was that we allow setting frame
interval on both sink and source pad of the subdev and compute the frame
skip based on the those two framerates.
As an example, if the framerate on sink pad is 1/30 and the one on the
source pad is 1/15 we will skip half of the frames. The frame interval
setted via the pads were real framerates.
The issue here is that it seems there is no such driver implementing frame
rate adjustments in the kernel and moreover the V4L2 subdev spec says that
frame interval control should only be done on a single pad of a subdev.
Dan proposed as an alternative to only keep the frame interval setting
on the source pad of the subdev and have the subdev driver retrieve the
stream framerate via inter subdev calls down to a subdev implementing the
get frame interval.
Regards,
Alain
next prev parent reply other threads:[~2023-08-29 14:18 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-10 14:40 [PATCH v1 0/5] [PATCH 0/5] Add support for DCMIPP camera interface of STMicroelectronics STM32 SoC series Hugues Fruchet
2022-09-10 14:40 ` [PATCH v1 1/5] dt-bindings: media: add bindings for dcmipp driver Hugues Fruchet
2022-09-12 0:44 ` Rob Herring
2022-09-10 14:40 ` [PATCH v1 2/5] media: MAINTAINERS: add entry for STM32 DCMIPP driver Hugues Fruchet
2022-09-10 14:40 ` [PATCH v1 3/5] media: stm32-dcmipp: STM32 DCMIPP camera interface driver Hugues Fruchet
2023-05-09 10:11 ` Dan Scally
2023-08-04 14:17 ` Alain Volmat
2023-08-04 20:21 ` Dan Scally
2023-08-07 9:29 ` Sakari Ailus
2023-08-24 11:09 ` Alain Volmat
2023-08-24 12:26 ` Sakari Ailus
2023-08-24 13:04 ` Laurent Pinchart
2023-08-24 16:05 ` [Linux-stm32] " Alain Volmat
2023-08-29 8:26 ` Laurent Pinchart
2023-08-29 14:17 ` Alain Volmat [this message]
2023-08-25 11:09 ` Alain Volmat
2023-08-30 8:20 ` Sakari Ailus
2023-09-01 12:05 ` [Linux-stm32] " Alain Volmat
2022-09-10 14:40 ` [PATCH v1 4/5] ARM: dts: stm32: add dcmipp support to stm32mp135 Hugues Fruchet
2022-09-10 14:40 ` [PATCH v1 5/5] ARM: multi_v7_defconfig: enable STM32 DCMIPP media support Hugues Fruchet
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=20230829141623.GA193536@gnbcxd0016.gnb.st.com \
--to=alain.volmat@foss.st.com \
--cc=dan.scally@ideasonboard.com \
--cc=devicetree@vger.kernel.org \
--cc=hugues.fruchet@foss.st.com \
--cc=hverkuil@xs4all.nl \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mchehab@kernel.org \
--cc=robh+dt@kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).