On Thu, 27 Jun 2024 13:59:11 +0200 Esteban Blanc <eblanc@xxxxxxxxxxxx> wrote: > This is adding DT bindings and a new driver for AD4030, AD4630 and > AD4632 ADCs. > > This work is being done in collaboration with Analog Devices Inc., > hence they are listed as maintainers rather than me. > > The code has been tested on a Zedboard with an EVAL-AD4030-24FMCZ, > an EVAL-AD4630-24FMCZ and an EVAL-AD4630-16FMCZ. As there is no eval > board for AD4632 the support can't be tested at the moment. The main > difference is the reduced throughput. > > This series is taged as RFC because I think I'm misusing > IIO_CHAN_INFO_CALIB*. For CALIBBIAS the doc in sysfs-bus-iio says > "Hardware applied calibration offset (assumed to fix production > inaccuracies)" but AD4030 offset in on 24bits and I would argue that at > this point it's not just here to fix production inaccuracies. Same this > for CALIBSCALE. What IIO attributes should I use instead? Interesting. So awkward question for you. What's the point in applying a digital offset? calibbias is normally about tweaking the Analog side. This just seems to be adding a value on. I'm not sure it affects what can actually be captured without saturation. Maybe it has influence by changing the input range and scale for the block averaging filter? I'm not sure. You can use offset for this given it's a simple linear value and not anything to do with calibration. It's a little awkward though as that is post scale rather than the other way around which is rather more common. Controls are in the form voltage = (raw + offset) * scale So here voltage = (raw + offset_reg / (gain_reg * other scaling)) * gain_reg * otherscaling. Hence your offset is a bit fiddly to compute. > > Signed-off-by: Esteban Blanc <eblanc@xxxxxxxxxxxx> > --- > Esteban Blanc (5): > dt-bindings: iio: adc: add ADI ad4030 and ad4630 > iio: adc: ad4030: add driver for ad4030-24 > iio: adc: ad4030: add averaging support > iio: adc: ad4030: add support for ad4630-24 and ad4630-16 > iio: adc: ad4030: add support for ad4632-16 and ad4632-24 > > .../devicetree/bindings/iio/adc/adi,ad4030.yaml | 113 ++ > MAINTAINERS | 9 + > drivers/iio/adc/Kconfig | 13 + > drivers/iio/adc/Makefile | 1 + > drivers/iio/adc/ad4030.c | 1081 ++++++++++++++++++++ > 5 files changed, 1217 insertions(+) > --- > base-commit: 07d4d0bb4a8ddcc463ed599b22f510d5926c2495 > change-id: 20240624-eblanc-ad4630_v1-1a074097eb91 > > Best regards,