linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 00/13] iio: afe: add temperature rescaling support
@ 2021-07-21  3:06 Liam Beguin
  2021-07-21  3:06 ` [PATCH v6 01/13] iio: inkern: apply consumer scale on IIO_VAL_INT cases Liam Beguin
                   ` (12 more replies)
  0 siblings, 13 replies; 33+ messages in thread
From: Liam Beguin @ 2021-07-21  3:06 UTC (permalink / raw)
  To: liambeguin, peda, jic23, lars, pmeerw
  Cc: linux-kernel, linux-iio, devicetree, robh+dt

From: Liam Beguin <lvb@xiphos.com>

Add temperature rescaling support to the IIO Analog Front End driver.

This series includes minor bug fixes and adds support for RTD temperature
sensors as well as temperature transducers.

At first I tried to use iio_convert_raw_to_processed() to get more
precision out of processed values but ran into issues when one of my
ADCs didn't provide a scale. I tried to address this in the first few
patches.

When adding offset support to iio-rescale, I also noticed that
iio_read_channel_processed() assumes that the offset is always an
integer which I tried to address in the third patch without breaking
valid implicit truncations.

As Jonathan suggested, I also started a Kunit test suite for the
iio-rescale driver.
Adding these test cases, I found that the IIO_VAL_FRACTIONAL_LOG2
rescaling wasn't as precise as expected so I tried to fix that as well.

Changes since v5:
- add include/linux/iio/afe/rescale.h
- expose functions use to process scale and offset
- add basic iio-rescale kunit test cases
- fix integer overflow case
- improve precision for IIO_VAL_FRACTIONAL_LOG2

Changes since v4:
- only use gcd() when necessary in overflow mitigation
- fix INT_PLUS_{MICRO,NANO} support
- apply Reviewed-by
- fix temperature-transducer bindings

Changes since v3:
- drop unnecessary fallthrough statements
- drop redundant local variables in some calculations
- fix s64 divisions on 32bit platforms by using do_div
- add comment describing iio-rescaler offset calculation
- drop unnecessary MAINTAINERS entry

Changes since v2:
- don't break implicit offset truncations
- make a best effort to get a valid value for fractional types
- drop return value change in iio_convert_raw_to_processed_unlocked()
- don't rely on processed value for offset calculation
- add INT_PLUS_{MICRO,NANO} support in iio-rescale
- revert generic implementation in favor of temperature-sense-rtd and
  temperature-transducer
- add separate section to MAINTAINERS file

Changes since v1:
- rebase on latest iio `testing` branch
- also apply consumer scale on integer channel scale types
- don't break implicit truncation in processed channel offset
  calculation
- drop temperature AFE flavors in favor of a simpler generic
  implementation

Thanks for your time

Liam Beguin (13):
  iio: inkern: apply consumer scale on IIO_VAL_INT cases
  iio: inkern: apply consumer scale when no channel scale is available
  iio: inkern: make a best effort on offset calculation
  iio: afe: rescale: expose scale processing function
  iio: afe: rescale: add INT_PLUS_{MICRO,NANO} support
  iio: afe: rescale: add offset support
  iio: test: add basic tests for the iio-rescale driver
  iio: afe: rescale: reduce risk of integer overflow
  iio: afe: rescale: fix precision on fractional log scale
  iio: afe: rescale: add RTD temperature sensor support
  iio: afe: rescale: add temperature transducers
  dt-bindings: iio: afe: add bindings for temperature-sense-rtd
  dt-bindings: iio: afe: add bindings for temperature transducers

 .../iio/afe/temperature-sense-rtd.yaml        | 101 ++++++
 .../iio/afe/temperature-transducer.yaml       | 114 ++++++
 drivers/iio/afe/iio-rescale.c                 | 242 +++++++++++--
 drivers/iio/inkern.c                          |  40 +-
 drivers/iio/test/Kconfig                      |  10 +
 drivers/iio/test/Makefile                     |   1 +
 drivers/iio/test/iio-test-rescale.c           | 342 ++++++++++++++++++
 include/linux/iio/afe/rescale.h               |  34 ++
 8 files changed, 840 insertions(+), 44 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/iio/afe/temperature-sense-rtd.yaml
 create mode 100644 Documentation/devicetree/bindings/iio/afe/temperature-transducer.yaml
 create mode 100644 drivers/iio/test/iio-test-rescale.c
 create mode 100644 include/linux/iio/afe/rescale.h

Range-diff against v5:
 1:  7b3e374eb7ad <  -:  ------------ iio: afe: rescale: reduce risk of integer overflow
 2:  1d334090e974 <  -:  ------------ iio: afe: rescale: add INT_PLUS_{MICRO,NANO} support
 -:  ------------ >  1:  42a7a1047edc iio: inkern: apply consumer scale on IIO_VAL_INT cases
 -:  ------------ >  2:  a1cd89fdad11 iio: inkern: apply consumer scale when no channel scale is available
 -:  ------------ >  3:  ed0721fb6bd1 iio: inkern: make a best effort on offset calculation
 -:  ------------ >  4:  f8fb78bb1112 iio: afe: rescale: expose scale processing function
 -:  ------------ >  5:  16627ca44022 iio: afe: rescale: add INT_PLUS_{MICRO,NANO} support
 3:  61873203c140 !  6:  dec2a933fbf3 iio: afe: rescale: add offset support
    @@ Commit message
         Signed-off-by: Liam Beguin <lvb@xiphos.com>
     
      ## drivers/iio/afe/iio-rescale.c ##
    -@@ drivers/iio/afe/iio-rescale.c: struct rescale {
    - 	bool chan_processed;
    - 	s32 numerator;
    - 	s32 denominator;
    -+	s32 offset;
    - };
    +@@ drivers/iio/afe/iio-rescale.c: int rescale_process_scale(struct rescale *rescale, int scale_type,
    + 	}
    + }
      
    ++int rescale_process_offset(struct rescale *rescale, int scale_type,
    ++			   int scale, int scale2, int schan_off,
    ++			   int *val, int *val2)
    ++{
    ++	s64 tmp, tmp2;
    ++
    ++	switch (scale_type) {
    ++	case IIO_VAL_FRACTIONAL:
    ++		tmp = (s64)rescale->offset * scale2;
    ++		*val = div_s64(tmp, scale) + schan_off;
    ++		return IIO_VAL_INT;
    ++	case IIO_VAL_INT:
    ++		*val = div_s64(rescale->offset, scale) + schan_off;
    ++		return IIO_VAL_INT;
    ++	case IIO_VAL_FRACTIONAL_LOG2:
    ++		tmp = (s64)rescale->offset * (1 << scale2);
    ++		*val = div_s64(tmp, scale) + schan_off;
    ++		return IIO_VAL_INT;
    ++	case IIO_VAL_INT_PLUS_NANO:
    ++		tmp = (s64)rescale->offset * 1000000000;
    ++		tmp2 = ((s64)scale * 1000000000L) + scale2;
    ++		*val = div64_s64(tmp, tmp2) + schan_off;
    ++		return IIO_VAL_INT;
    ++	case IIO_VAL_INT_PLUS_MICRO:
    ++		tmp = (s64)rescale->offset * 1000000L;
    ++		tmp2 = ((s64)scale * 1000000L) + scale2;
    ++		*val = div64_s64(tmp, tmp2) + schan_off;
    ++		return IIO_VAL_INT;
    ++	default:
    ++		return -EOPNOTSUPP;
    ++	}
    ++}
    ++
      static int rescale_read_raw(struct iio_dev *indio_dev,
    -@@ drivers/iio/afe/iio-rescale.c: static int rescale_read_raw(struct iio_dev *indio_dev,
    + 			    struct iio_chan_spec const *chan,
      			    int *val, int *val2, long mask)
      {
      	struct rescale *rescale = iio_priv(indio_dev);
     +	int scale, scale2;
     +	int schan_off = 0;
    - 	s64 tmp, tmp2;
    - 	u32 factor;
      	int ret;
    + 
    + 	switch (mask) {
     @@ drivers/iio/afe/iio-rescale.c: static int rescale_read_raw(struct iio_dev *indio_dev,
    - 			dev_err(&indio_dev->dev, "unsupported type %d\n", ret);
    - 			return -EOPNOTSUPP;
    + 			ret = iio_read_channel_scale(rescale->source, val, val2);
      		}
    + 		return rescale_process_scale(rescale, ret, val, val2);
     +	case IIO_CHAN_INFO_OFFSET:
     +		/*
     +		 * Processed channels are scaled 1-to-1 and source offset is
    @@ drivers/iio/afe/iio-rescale.c: static int rescale_read_raw(struct iio_dev *indio
     +		}
     +
     +		ret = iio_read_channel_scale(rescale->source, &scale, &scale2);
    -+		switch (ret) {
    -+		case IIO_VAL_FRACTIONAL:
    -+			tmp = (s64)rescale->offset * scale2;
    -+			*val = div_s64(tmp, scale) + schan_off;
    -+			return IIO_VAL_INT;
    -+		case IIO_VAL_INT:
    -+			*val = div_s64(rescale->offset, scale) + schan_off;
    -+			return IIO_VAL_INT;
    -+		case IIO_VAL_FRACTIONAL_LOG2:
    -+			tmp = (s64)rescale->offset * (1 << scale2);
    -+			*val = div_s64(tmp, scale) + schan_off;
    -+			return IIO_VAL_INT;
    -+		case IIO_VAL_INT_PLUS_NANO:
    -+			tmp = (s64)rescale->offset * 1000000000UL;
    -+			tmp2 = ((s64)scale * 1000000000UL) + scale2;
    -+			*val = div_s64(tmp, tmp2) + schan_off;
    -+			return IIO_VAL_INT;
    -+		case IIO_VAL_INT_PLUS_MICRO:
    -+			tmp = (s64)rescale->offset * 1000000UL;
    -+			tmp2 = ((s64)scale * 1000000UL) + scale2;
    -+			*val = div_s64(tmp, tmp2) + schan_off;
    -+			return IIO_VAL_INT;
    -+		default:
    -+			dev_err(&indio_dev->dev, "unsupported type %d\n", ret);
    -+			return -EOPNOTSUPP;
    -+		}
    ++		return rescale_process_offset(rescale, ret, scale, scale2,
    ++					      schan_off, val, val2);
      	default:
      		return -EINVAL;
      	}
    @@ drivers/iio/afe/iio-rescale.c: static int rescale_configure_channel(struct devic
      		BIT(IIO_CHAN_INFO_SCALE);
      
     +	if (rescale->offset)
    -+	    chan->info_mask_separate |= BIT(IIO_CHAN_INFO_OFFSET);
    ++		chan->info_mask_separate |= BIT(IIO_CHAN_INFO_OFFSET);
     +
      	/*
      	 * Using .read_avail() is fringe to begin with and makes no sense
    @@ drivers/iio/afe/iio-rescale.c: static int rescale_probe(struct platform_device *
      
      	ret = rescale->cfg->props(dev, rescale);
      	if (ret)
    +
    + ## include/linux/iio/afe/rescale.h ##
    +@@ include/linux/iio/afe/rescale.h: struct rescale {
    + 	bool chan_processed;
    + 	s32 numerator;
    + 	s32 denominator;
    ++	s32 offset;
    + };
    + 
    + int rescale_process_scale(struct rescale *rescale, int scale_type,
    + 			  int *val, int *val2);
    ++int rescale_process_offset(struct rescale *rescale, int scale_type,
    ++			   int scale, int scale2, int schan_off,
    ++			   int *val, int *val2);
    + #endif /* __IIO_RESCALE_H__ */
 -:  ------------ >  7:  60bd09555300 iio: test: add basic tests for the iio-rescale driver
 -:  ------------ >  8:  f2f4af324d5d iio: afe: rescale: reduce risk of integer overflow
 -:  ------------ >  9:  4a8d77501f32 iio: afe: rescale: fix precision on fractional log scale
 4:  4e6117b9c663 = 10:  2b6e4f47c974 iio: afe: rescale: add RTD temperature sensor support
 5:  bc647d45e293 = 11:  715e1877e30f iio: afe: rescale: add temperature transducers
 6:  570b418eed85 ! 12:  0bc8546f13e5 dt-bindings: iio: afe: add bindings for temperature-sense-rtd
    @@ Documentation/devicetree/bindings/iio/afe/temperature-sense-rtd.yaml (new)
     +title: Temperature Sense RTD
     +
     +maintainers:
    -+  - Liam Beguin <lvb@xiphos.com>
    ++  - Liam Beguin <liambeguin@gmail.com>
     +
     +description: |
     +  RTDs (Resistance Temperature Detectors) are a kind of temperature sensors
 7:  3c44ea89754e ! 13:  4bc54afa3e94 dt-bindings: iio: afe: add bindings for temperature transducers
    @@ Documentation/devicetree/bindings/iio/afe/temperature-transducer.yaml (new)
     +title: Temperature Transducer
     +
     +maintainers:
    -+  - Liam Beguin <lvb@xiphos.com>
    ++  - Liam Beguin <liambeguin@gmail.com>
     +
     +description: |
     +  A temperature transducer is a device that converts a thermal quantity

base-commit: 6cbb3aa0f9d5d23221df787cf36f74d3866fdb78
-- 
2.30.1.489.g328c10930387


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2021-07-31 17:45 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-21  3:06 [PATCH v6 00/13] iio: afe: add temperature rescaling support Liam Beguin
2021-07-21  3:06 ` [PATCH v6 01/13] iio: inkern: apply consumer scale on IIO_VAL_INT cases Liam Beguin
2021-07-21  3:06 ` [PATCH v6 02/13] iio: inkern: apply consumer scale when no channel scale is available Liam Beguin
2021-07-21  3:06 ` [PATCH v6 03/13] iio: inkern: make a best effort on offset calculation Liam Beguin
2021-07-21  3:06 ` [PATCH v6 04/13] iio: afe: rescale: expose scale processing function Liam Beguin
2021-07-21  3:06 ` [PATCH v6 05/13] iio: afe: rescale: add INT_PLUS_{MICRO,NANO} support Liam Beguin
2021-07-23 21:16   ` Peter Rosin
2021-07-28  0:21     ` Liam Beguin
2021-07-28  7:19       ` Peter Rosin
2021-07-29 15:56         ` Liam Beguin
2021-07-30  6:49           ` Peter Rosin
2021-07-30  7:01             ` Peter Rosin
2021-07-30 20:01               ` Liam Beguin
2021-07-30 19:57             ` Liam Beguin
2021-07-31 17:47         ` Jonathan Cameron
2021-07-21  3:06 ` [PATCH v6 06/13] iio: afe: rescale: add offset support Liam Beguin
2021-07-21  3:06 ` [PATCH v6 07/13] iio: test: add basic tests for the iio-rescale driver Liam Beguin
2021-07-24  8:40   ` kernel test robot
2021-07-21  3:06 ` [PATCH v6 08/13] iio: afe: rescale: reduce risk of integer overflow Liam Beguin
2021-07-23 21:17   ` Peter Rosin
2021-07-28  0:07     ` Liam Beguin
2021-07-28  7:47       ` Peter Rosin
2021-07-29 16:02         ` Liam Beguin
2021-07-21  3:06 ` [PATCH v6 09/13] iio: afe: rescale: fix precision on fractional log scale Liam Beguin
2021-07-23 21:20   ` Peter Rosin
2021-07-28  0:26     ` Liam Beguin
2021-07-28  7:58       ` Peter Rosin
2021-07-29 16:19         ` Liam Beguin
2021-07-21  3:06 ` [PATCH v6 10/13] iio: afe: rescale: add RTD temperature sensor support Liam Beguin
2021-07-21  3:06 ` [PATCH v6 11/13] iio: afe: rescale: add temperature transducers Liam Beguin
2021-07-21  3:06 ` [PATCH v6 12/13] dt-bindings: iio: afe: add bindings for temperature-sense-rtd Liam Beguin
2021-07-21  3:06 ` [PATCH v6 13/13] dt-bindings: iio: afe: add bindings for temperature transducers Liam Beguin
2021-07-23 22:59   ` Rob Herring

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).