From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Sylwester Nawrocki <snawrocki@kernel.org>
Cc: tfiga@chromium.org, Grant Grundler <grundler@chromium.org>,
ping-chung.chen@intel.com, sakari.ailus@linux.intel.com,
linux-media@vger.kernel.org, andy.yeh@intel.com,
jim.lai@intel.com, Rajmohan Mani <rajmohan.mani@intel.com>,
Helmut Grohne <helmut.grohne@intenta.de>
Subject: Re: [PATCH v5] media: imx208: Add imx208 camera sensor driver
Date: Fri, 21 Sep 2018 00:00:26 +0300 [thread overview]
Message-ID: <2739140.4VmFsgKfYj@avalon> (raw)
In-Reply-To: <4e3e21d3-21f7-48eb-7672-f157c1a4fdcc@kernel.org>
Hello,
(CC'ing Helmut Grohne)
On Thursday, 20 September 2018 23:16:47 EEST Sylwester Nawrocki wrote:
> On 09/20/2018 06:49 PM, Grant Grundler wrote:
> > On Thu, Sep 20, 2018 at 1:52 AM Tomasz Figa wrote:
> >> On Wed, Aug 8, 2018 at 4:08 PM Ping-chung Chen wrote:
> >>> +/* Digital gain control */
> >>>
> >>> +#define IMX208_DGTL_GAIN_MIN 0
> >>> +#define IMX208_DGTL_GAIN_MAX 4096
> >>> +#define IMX208_DGTL_GAIN_DEFAULT 0x100
> >>> +#define IMX208_DGTL_GAIN_STEP 1
> >>>
> >>> +/* Initialize control handlers */
> >>> +static int imx208_init_controls(struct imx208 *imx208)
> >>> +{
> >>
> >> [snip]
> >>
> >>> + v4l2_ctrl_new_std(ctrl_hdlr, &imx208_ctrl_ops,
> >>> V4L2_CID_DIGITAL_GAIN, + IMX208_DGTL_GAIN_MIN,
> >>> IMX208_DGTL_GAIN_MAX, + IMX208_DGTL_GAIN_STEP,
> >>> + IMX208_DGTL_GAIN_DEFAULT);
> >>
> >> We have a problem here. The sensor supports only a discrete range of
> >> values here - {1, 2, 4, 8, 16} (multiplied by 256, since the value is
> >> fixed point). This makes it possible for the userspace to set values
> >> that are not allowed by the sensor specification and also leaves no
> >> way to enumerate the supported values.
>
> The driver could always adjust the value in set_ctrl callback so invalid
> settings are not allowed.
>
> I'm not sure if it's best approach but I once did something similar for
> the ov9650 sensor. The gain was fixed point 10-bits value with 4 bits
> for fractional part. The driver reports values multiplied by 16. See
> ov965x_set_gain() function in drivers/media/i2c/ov9650.c and "Table 4-1.
> Total Gain to Control Bit Correlation" in the OV9650 datasheet for details.
> The integer menu control just seemed not suitable for 2^10 values.
I've had a similar discussion on IRC recently with Helmut, who posted a nice
summary of the problem on the mailing list (see https://www.mail-archive.com/
linux-media@vger.kernel.org/msg134502.html). This is a known issue, and while
I proposed the same approach, I understand that in some cases userspace may
need to know exactly what values are acceptable. In such a case, however, I
would expect userspace to have knowledge of the particular sensor model, so
the information may not need to come from the kernel.
> Now the gain control has range 16...1984 out of which only 1024 values
> are valid. It might not be best approach for a GUI but at least the driver
> exposes mapping of all valid values, which could be enumerated with
> VIDIOC_TRY_EXT_CTRLS if required, without a need for a driver-specific
> user space code.
That would be ~2000 ioctl calls, I don't think that's very practical :-S
> >> I can see two solutions here:
> >>
> >> 1) Define the control range from 0 to 4 and treat it as an exponent of
> >> 2, so that the value for the sensor becomes (1 << val) * 256.
> >> (Suggested by Sakari offline.)
> >>
> >> This approach has the problem of losing the original unit (and scale)
> >> of the value.
> >
> > Exactly - will users be confused by this? If we have to explain it,
> > probably not the best choice.
> >
> >> 2) Use an integer menu control, which reports only the supported
> >> discrete values - {1, 2, 4, 8, 16}.
> >>
> >> With this approach, userspace can enumerate the real gain values, but
> >> we would either need to introduce a new control (e.g.
> >> V4L2_CID_DIGITAL_GAIN_DISCRETE) or abuse the specification and
> >> register V4L2_CID_DIGITAL_GAIN as an integer menu.
> >>
> >> Any opinions or better ideas?
> >
> > My $0.02: leave the user UI alone - let users specify/select anything
> > in the range the normal API or UI allows. But have sensor specific
> > code map all values in that range to values the sensor supports. Users
> > will notice how it works when they play with it. One can "adjust" the
> > mapping so it "feels right".
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2018-09-21 2:45 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-08 7:16 [PATCH v5] media: imx208: Add imx208 camera sensor driver Ping-chung Chen
2018-09-14 11:41 ` Sakari Ailus
2018-09-17 22:52 ` Grant Grundler
2018-09-18 10:52 ` Sakari Ailus
2018-09-20 8:51 ` Tomasz Figa
2018-09-20 16:49 ` Grant Grundler
2018-09-20 20:16 ` Sylwester Nawrocki
2018-09-20 21:00 ` Laurent Pinchart [this message]
2018-09-21 7:23 ` Helmut Grohne
2018-09-28 13:49 ` Laurent Pinchart
2018-10-01 10:50 ` Helmut Grohne
2018-10-01 12:04 ` Philippe De Muyter
2018-09-20 20:56 ` Sakari Ailus
2018-09-20 21:12 ` Laurent Pinchart
2018-09-20 21:55 ` Ricardo Ribalda Delgado
2018-09-21 7:06 ` Chen, Ping-chung
2018-09-21 7:08 ` Chen, Ping-chung
2018-09-25 9:25 ` Sakari Ailus
2018-09-25 10:17 ` Chen, Ping-chung
2018-09-25 21:54 ` Sakari Ailus
2018-09-26 2:27 ` Chen, Ping-chung
2018-09-26 10:11 ` Sakari Ailus
2018-09-26 15:19 ` Yeh, Andy
2018-09-27 3:19 ` Chen, Ping-chung
2018-10-04 15:57 ` Sakari Ailus
2021-04-22 7:21 ` Tu, ShawnX
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=2739140.4VmFsgKfYj@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=andy.yeh@intel.com \
--cc=grundler@chromium.org \
--cc=helmut.grohne@intenta.de \
--cc=jim.lai@intel.com \
--cc=linux-media@vger.kernel.org \
--cc=ping-chung.chen@intel.com \
--cc=rajmohan.mani@intel.com \
--cc=sakari.ailus@linux.intel.com \
--cc=snawrocki@kernel.org \
--cc=tfiga@chromium.org \
/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