Re: [PATCH v3 06/13] iio: imu: inv_icm42600: add temperature sensor support

From: Jonathan Cameron
Date: Sat Jun 20 2020 - 11:58:02 EST


On Sun, 14 Jun 2020 20:35:13 +0000
Jean-Baptiste Maneyrol <JManeyrol@xxxxxxxxxxxxxx> wrote:

> Hello Lars,
>
> for the temperature data, the problem is that temperature in the FIFO (used in buffer) is not in the same format than when reading the register.
>
> Reading the temperature register return a full precision value on 16 bits. I am using a PROCESSED attribute for it.
> Temperature data in buffer (coming from the FIFO) is on 8 bits in lower precision. It is reported as raw data, thus the need of the offset and scale values.
>
> So offset and scale values are only for transforming the temperature data from the buffer, and direct read is a full precision already processed in mÂC.

That is a problem. We have no means of describing it in IIO.

If the channel is processed via sysfs the assumption would normally
be that it is processed in the buffer as well. We don't really
have any means of describing the two separately.

In cases where we've seen this before the way around it was to
change the data in the fifo so that the scaling was the same as the
sysfs channel (usually it's just a bit of padding).

Can we do that here? Looks like the ratio is 1:64 so should
be possible.



>
> Thanks for the review,
> JB
>
> From: Lars-Peter Clausen <lars@xxxxxxxxxx>
> Sent: Sunday, June 14, 2020 17:10
> To: Jean-Baptiste Maneyrol <JManeyrol@xxxxxxxxxxxxxx>; jic23@xxxxxxxxxx <jic23@xxxxxxxxxx>; robh+dt@xxxxxxxxxx <robh+dt@xxxxxxxxxx>; robh@xxxxxxxxxx <robh@xxxxxxxxxx>; mchehab+huawei@xxxxxxxxxx <mchehab+huawei@xxxxxxxxxx>; davem@xxxxxxxxxxxxx <davem@xxxxxxxxxxxxx>; gregkh@xxxxxxxxxxxxxxxxxxx <gregkh@xxxxxxxxxxxxxxxxxxx>
> Cc: linux-iio@xxxxxxxxxxxxxxx <linux-iio@xxxxxxxxxxxxxxx>; devicetree@xxxxxxxxxxxxxxx <devicetree@xxxxxxxxxxxxxxx>; linux-kernel@xxxxxxxxxxxxxxx <linux-kernel@xxxxxxxxxxxxxxx>
> Subject: Re: [PATCH v3 06/13] iio: imu: inv_icm42600: add temperature sensor support
> Â
> ÂCAUTION: This email originated from outside of the organization. Please make sure the sender is who they say they are and do not click links or open attachments unless you recognize the sender and know the content is safe.
>
> On 6/8/20 10:42 PM, Jean-Baptiste Maneyrol wrote:
> > +ÂÂÂÂ case IIO_CHAN_INFO_PROCESSED:
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ ret = iio_device_claim_direct_mode(indio_dev);
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ if (ret)
> > +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ return ret;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ ret = inv_icm42600_temp_read(st, &temp);
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ iio_device_release_direct_mode(indio_dev);
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ if (ret)
> > +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ return ret;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ *val = temp;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ return IIO_VAL_INT;
> > +ÂÂÂÂ case IIO_CHAN_INFO_SCALE:
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ *val = 483;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ *val2 = 91787;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ return IIO_VAL_INT_PLUS_MICRO;
> > +ÂÂÂÂ case IIO_CHAN_INFO_OFFSET:
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ *val = 25000;
> > +ÂÂÂÂÂÂÂÂÂÂÂÂ return IIO_VAL_INT;
>
> If the data is returned processed there is no need to specify scale and
> offset.
>
> But since the transformation to turn the data into standard units is a
> simple linear transform the preferred way to handle this is to return
> RAW data and specify scale and offset.