From: Markus Pargmann <mpa@pengutronix.de>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Hans Verkuil <hans.verkuil@cisco.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
devicetree@vger.kernel.org, linux-media@vger.kernel.org
Subject: Re: [PATCH v2 3/3] [media] mt9v032: Add V4L2 controls for AEC and AGC
Date: Mon, 04 Jan 2016 10:56:44 +0100 [thread overview]
Message-ID: <1598879.76W0kKqfX7@adelgunde> (raw)
In-Reply-To: <5194938.P3WvP9gjaZ@avalon>
[-- Attachment #1: Type: text/plain, Size: 3785 bytes --]
Hi Laurent,
On Tuesday 29 December 2015 11:38:39 Laurent Pinchart wrote:
> Hi Markus,
>
> On Wednesday 16 December 2015 11:14:28 Markus Pargmann wrote:
> > On Wednesday 16 December 2015 09:47:58 Laurent Pinchart wrote:
> > > On Monday 14 December 2015 15:41:53 Markus Pargmann wrote:
> > >> This patch adds V4L2 controls for Auto Exposure Control and Auto Gain
> > >> Control settings. These settings include low pass filter, update
> > >> frequency of these settings and the update interval for those units.
> > >>
> > >> Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
> > >
> > > Please see below for a few comments. If you agree about them there's no
> > > need to resubmit, I'll fix the patch when applying.
> >
> > Most of them are fine, I commented on the open ones.
> >
> > >> ---
> > >>
> > >> drivers/media/i2c/mt9v032.c | 153 ++++++++++++++++++++++++++++++++++++-
> > >> 1 file changed, 152 insertions(+), 1 deletion(-)
> > >>
> > >> diff --git a/drivers/media/i2c/mt9v032.c b/drivers/media/i2c/mt9v032.c
> > >> index cc16acf001de..6cbc3b87eda9 100644
> > >> --- a/drivers/media/i2c/mt9v032.c
> > >> +++ b/drivers/media/i2c/mt9v032.c
>
> [snip]
>
> > >> +static const struct v4l2_ctrl_config mt9v032_aec_max_shutter_width = {
> > >> + .ops = &mt9v032_ctrl_ops,
> > >> + .id = V4L2_CID_AEC_MAX_SHUTTER_WIDTH,
> > >> + .type = V4L2_CTRL_TYPE_INTEGER,
> > >> + .name = "aec_max_shutter_width",
> > >> + .min = 1,
> > >> + .max = MT9V032_TOTAL_SHUTTER_WIDTH_MAX,
> > >
> > > According the the MT9V032 datasheet I have, the maximum value is 2047
> > > while MT9V032_TOTAL_SHUTTER_WIDTH_MAX is defined as 32767. Do you have any
> > > information that would hint for an error in the datasheet ?
> >
> > The register is defined as having 15 bits. I simply assumed that the already
> > defined TOTAL_SHUTTER_WIDTH_MAX would apply for this register as well. At
> > least it should end up controlling the same property of the chip. I didn't
> > test this on mt9v032 but on mt9v024.
>
> According to the MT9V032 datasheet
> (http://www.onsemi.com/pub/Collateral/MT9V032-D.PDF) the maximum shutter width
> in AEC mode is limited to 2047. That is documented both in the Maximum Total
> Shutter Width register legal values and in the "Automatic Gain Control and
> Automatic Exposure Control" section:
>
> "The exposure is measured in row-time by reading R0xBB. The exposure range is
> 1 to 2047."
>
> I assume that the the AEC unit limits the shutter width to 2047 lines and that
> it's thus pointless to set the maximum total shutter width to a higher value.
> Whether doing so could have any adverse effect I don't know, but better be
> same than sorry. If you agree we should limit the value to 2047 I can fix
> this.
Yes, I agree. It would be great if you fix this.
Thanks,
Markus
>
> > >> + .step = 1,
> > >> + .def = MT9V032_TOTAL_SHUTTER_WIDTH_DEF,
> > >> + .flags = 0,
> > >> +};
> > >> +
> > >> +static const struct v4l2_ctrl_config mt9v034_aec_max_shutter_width = {
> > >> + .ops = &mt9v032_ctrl_ops,
> > >> + .id = V4L2_CID_AEC_MAX_SHUTTER_WIDTH,
> > >> + .type = V4L2_CTRL_TYPE_INTEGER,
> > >> + .name = "aec_max_shutter_width",
> > >> + .min = 1,
> > >> + .max = MT9V034_TOTAL_SHUTTER_WIDTH_MAX,
> > >> + .step = 1,
> > >> + .def = MT9V032_TOTAL_SHUTTER_WIDTH_DEF,
> > >> + .flags = 0,
> > >> +};
> > >
> > > [snip]
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2016-01-04 9:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-14 14:41 [PATCH v2 1/3] [media] mt9v032: Add reset and standby gpios Markus Pargmann
2015-12-14 14:41 ` [PATCH v2 2/3] [media] mt9v032: Do not unset master_mode Markus Pargmann
2015-12-14 19:37 ` Laurent Pinchart
2015-12-14 14:41 ` [PATCH v2 3/3] [media] mt9v032: Add V4L2 controls for AEC and AGC Markus Pargmann
2015-12-16 7:47 ` Laurent Pinchart
2015-12-16 10:14 ` Markus Pargmann
2015-12-29 9:38 ` Laurent Pinchart
2016-01-04 9:56 ` Markus Pargmann [this message]
2015-12-14 19:26 ` [PATCH v2 1/3] [media] mt9v032: Add reset and standby gpios Laurent Pinchart
2015-12-15 9:13 ` Markus Pargmann
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=1598879.76W0kKqfX7@adelgunde \
--to=mpa@pengutronix.de \
--cc=devicetree@vger.kernel.org \
--cc=hans.verkuil@cisco.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
/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