[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20241220190608.713b0504@jic23-huawei>
Date: Fri, 20 Dec 2024 19:06:08 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Mikael Gonella-Bolduc <mgonellabolduc@...onoff.com>
Cc: Mikael Gonella-Bolduc via B4 Relay
<devnull+mgonellabolduc.dimonoff.com@...nel.org>, Lars-Peter Clausen
<lars@...afoo.de>, Rob Herring <robh@...nel.org>, Krzysztof Kozlowski
<krzk+dt@...nel.org>, Conor Dooley <conor+dt@...nel.org>, Nathan Chancellor
<nathan@...nel.org>, Nick Desaulniers <ndesaulniers@...gle.com>, Bill
Wendling <morbo@...gle.com>, Justin Stitt <justinstitt@...gle.com>, Mikael
Gonella-Bolduc <m.gonella.bolduc@...il.com>, linux-iio@...r.kernel.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
llvm@...ts.linux.dev, Hugo Villeneuve <hvilleneuve@...onoff.com>, Matti
Vaittinen <mazziesaccount@...il.com>
Subject: Re: [PATCH v3 2/2] iio: light: Add APDS9160 ALS & Proximity sensor
driver
On Thu, 19 Dec 2024 14:22:28 -0500
Mikael Gonella-Bolduc <mgonellabolduc@...onoff.com> wrote:
> Hi Jonathan,
>
> Regarding calibration attributes, while I did include them and made sure that what's exposed by the driver
> is actually being correctly set in the registers and that it has an impact on the input data,
> I do not have a real life use case for them right now and that's probably the case for almost everyone using the same chip.
> It's there as a provision in case something comes up and I end up needing them.
>
> I'm also not sure on how it should be used and in which scenario.
> From what I understand, depending on the type of material in front of the sensor (tempered glass in my case),
> it's there to cancel out unwanted light reflection of what you don't want to detect.
> It does so by emitting another, very short, light pulse and takes the reflected light ADC count from that and substracts it.
I guess they apply a very short exposure time on that measurement to ensure it only picks up on light
received very soon after the pulse and hence in theory very near to the sensor.
> There's also another digital substraction parameter to always substract a value if you know what's the value to cancel out.
>
> The 3 parameters in question in the datasheet:
> - PS_CAN_DIG : This is just a digital substraction
that one is fine as in_proximity_calibbias.
> - PS_CAN_ANA_DURATION: The duration of the short cancellation light pulse
> - PS_CAN_ANA_CURRENT: The light pulse current used
These two are new concepts so I think we may need some new ABI
It is kind of like a differential channel with separate controls
on the current and integration time (as a proxy for the pulse length).
For the current I think it is cleaner to use a second
out_currentX_* channel with labels provided to associate which current
channel is which. Provide the read_label attribute and label all channels.
Taking the duration, that's a bit of an oddity as it's really a characteristic
of the the output current channel, not the measurement itself. So
how about out_current1_pulse_time ? Would need to be in seconds though
to match with integration_time ABI.
Having said all this. If there is a right setting (or a calibration procedure
to get something that works) for a given device incorporating this sensor
then the stuff perhaps belongs in DT. If you go that way makes sure to cleanly
document why these are device characteristics rather than corrections for
calibration differences between different phones of the same model for instance.
>
> I used a standard calibration attribute name for all of those, respectively:
> - in_proximity_calibscale
> - in_proxmiity_calibbias
> - out_current_calibbias
>
> I don't know if this is a correct use or not.
Thanks for all the details. That helps a lot!
Gut feeling from me is that we are looking at something best defined in firmware
/ DT given it's all about the glass in front of the sensor.
>
> See my other comments inline.
>
> Thank you,
> Mikael
>
> On Thu, Dec 19, 2024 at 04:34:54PM +0000, Jonathan Cameron wrote:
> > On Mon, 16 Dec 2024 17:55:41 -0500
> > Mikael Gonella-Bolduc via B4 Relay <devnull+mgonellabolduc.dimonoff.com@...nel.org> wrote:
> >
> > > From: Mikael Gonella-Bolduc <mgonellabolduc@...onoff.com>
> > >
> > > APDS9160 is a combination of ALS and proximity sensors.
> > >
> > > This patch add supports for:
> > > - Intensity clear data and illuminance data
> > > - Proximity data
> > > - Gain control, rate control
> > > - Event thresholds
> > >
> > > Signed-off-by: Mikael Gonella-Bolduc <mgonellabolduc@...onoff.com>
> >
> > Hi Mikael,
> >
> > A couple of questions on the calib* parts. I hadn't looked closely those
> > before and the datasheet is not very helpful!
> >
> > Jonathan
> >
> >
> > > diff --git a/drivers/iio/light/apds9160.c b/drivers/iio/light/apds9160.c
> > > new file mode 100644
> > > index 0000000000000000000000000000000000000000..0c93ab847d9a36aac7aa6a1893bba0fe819d9e28
> > > --- /dev/null
> > > +++ b/drivers/iio/light/apds9160.c
> >
> > > +
> > > +/*
> > > + * The PS intelligent cancellation level register allows
> > > + * for an on-chip substraction of the ADC count caused by
> > > + * unwanted reflected light from PS ADC output.
> > As it's subtraction, why calibscale? Sounds more suitable to make this to calibbias.
> > > + */
> > > +static int apds9160_set_ps_cancellation_level(struct apds9160_chip *data,
> > > + int val)
> > > +{
> > > + int ret;
> > > + __le16 buf;
> > > +
> > > + if (val < 0 || val > 0xFFFF)
> > > + return -EINVAL;
> > > +
> > > + buf = cpu_to_le16(val);
> > > + ret = regmap_bulk_write(data->regmap, APDS9160_REG_PS_CAN_LEVEL_DIG_LSB,
> > > + &buf, 2);
> > > + if (ret)
> > > + return ret;
> > > +
> > > + data->ps_cancellation_level = val;
> > > +
> > > + return ret;
> > > +}
> > > +
> > > +/*
> > > + * This parameter determines the cancellation pulse duration
> > > + * in each of the PWM pulse. The cancellation is applied during the
> > > + * integration phase of the PS measurement.
> > > + * Duration is programmed in half clock cycles
> > > + * A duration value of 0 or 1 will not generate any cancellation pulse
> >
> > Perhaps add some details on why this is a calibbias type control?
> >
> > Whilst I can sort of grasp it might have a similar affect to a conventional
> > calibration bias by removing some offset, it's not totally obvious.
> >
>
> After looking at all possible types for a proxmity channel this is what I though was the most sensible choice.
> Is it possible to use a custom attribute type here if nothing fits?
Yeah, it feels like too much of a stretch so new ABI needed.
> Or maybe we should drop this entirely since it will probably be rarely used.
See above, maybe we push this to DT and make it a firmware description problem.
>
> > > + */
> > > +static int apds9160_set_ps_analog_cancellation(struct apds9160_chip *data,
> > > + int val)
> > > +{
> > > + int ret;
> > > +
> > > + if (val < 0 || val > 0x7F)
> > > + return -EINVAL;
> > > +
> > > + ret = regmap_write(data->regmap, APDS9160_REG_PS_CAN_LEVEL_ANA_DUR,
> > > + val);
> > > + if (ret)
> > > + return ret;
> > > +
> > > + data->ps_cancellation_analog = val;
> > > +
> > > + return ret;
> > > +}
> > > +
> > > +/*
> > > + * This parameter works in conjunction with the cancellation pulse duration
> > > + * The value determines the current used for crosstalk cancellation
> > > + * B4-B5: The coarse value defines cancellation current in steps of 60nA
> > > + * B0-B3: The fine value adjusts the cancellation current in steps of 2.4nA
> >
> > Whilst I'm failing to actually understand what this is doing and maybe never will
> > we can make the interface more intuitive by not using the encoded value.
> > Just use a value in nA with both the val and val2 parts.
> >
> > it is rather odd given 15 * 2.4 is only 36 so there are holes.. PRobably a case
> > for getting as close as you can to the requested value.
> >
> > Calibration parameters aren't guaranteed to have a simple interpretation but
> > this current case is worse that it needs to be.
> >
>
> Ok, noted I will make this change for v4 if it's best to keep this.
> This works in conjunction with the cancellation duration.
>
> > > + case IIO_CHAN_INFO_CALIBSCALE:
> > > + if (val2 != 0)
> > > + return -EINVAL;
> > > + switch (chan->type) {
> > > + case IIO_PROXIMITY:
> > > + return apds9160_set_ps_cancellation_level(data, val);
> > > + case IIO_CURRENT:
> > > + return apds9160_set_ps_cancellation_current(data, val);
> >
> > I can't figure out what this one actually is.
> >
>
> This is the current used by the cancellation light pulse (PS_CAN_ANA_CURRENT).
> I might not be using the correct type name here, since it's so specific to this chip
> I just don't know which one to use.
It is a kind of cool feature, and so if it works well I expect it will become
more common over time. So maybe this is just the first of many devices to support this.
Jonathan
Powered by blists - more mailing lists