Re: [PATCH v2 1/2] iio:adc:ad7476: Handle the different regulators used by various parts.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 4/5/21 6:23 PM, Jonathan Cameron wrote:
From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx>

Not all of the parts supported by this driver use single supply.
Hence we add chip_info fields to say what additional supplies exist
and in the case of vref, ensure that is used for the reference voltage
rather than vcc.

One corner case is the ad7091r which has an internal reference that
can be over-driven by an external reference connected on the vref pin.
To handle that force_ext_vref is introduced and set if an optional
vref regulator is present.

Tested using really simple QEMU model and some fixed regulators.

The devm_add_action_or_reset() callback is changed to take the
regulator as it's parameter so we can use one callback for all the
different regulators without having to store pointers to them in
the iio_priv() structure.

Signed-off-by: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx>
Cc: Michael Hennerich <michael.hennerich@xxxxxxxxxx>
---
  drivers/iio/adc/ad7476.c | 108 +++++++++++++++++++++++++++++++++------
  1 file changed, 93 insertions(+), 15 deletions(-)

diff --git a/drivers/iio/adc/ad7476.c b/drivers/iio/adc/ad7476.c
index 9e9ff07cf972..6867e96e3eda 100644
--- a/drivers/iio/adc/ad7476.c
+++ b/drivers/iio/adc/ad7476.c
@@ -32,12 +32,15 @@ struct ad7476_chip_info {
  	/* channels used when convst gpio is defined */
  	struct iio_chan_spec		convst_channel[2];
  	void (*reset)(struct ad7476_state *);
+	bool				has_vref;
+	bool				has_vdrive;
  };
struct ad7476_state {
  	struct spi_device		*spi;
  	const struct ad7476_chip_info	*chip_info;
-	struct regulator		*reg;
+	struct regulator		*ref_reg;
+	bool				force_ext_vref;
  	struct gpio_desc		*convst_gpio;
  	struct spi_transfer		xfer;
  	struct spi_message		msg;
@@ -52,13 +55,17 @@ struct ad7476_state {
  };
enum ad7476_supported_device_ids {
+	ID_AD7091,
  	ID_AD7091R,
+	ID_AD7273,
+	ID_AD7274,
  	ID_AD7276,
  	ID_AD7277,
  	ID_AD7278,
  	ID_AD7466,
  	ID_AD7467,
  	ID_AD7468,
+	ID_AD7475,
  	ID_AD7495,
  	ID_AD7940,
  	ID_ADC081S,
@@ -145,8 +152,8 @@ static int ad7476_read_raw(struct iio_dev *indio_dev,
  			GENMASK(st->chip_info->channel[0].scan_type.realbits - 1, 0);
  		return IIO_VAL_INT;
  	case IIO_CHAN_INFO_SCALE:
-		if (!st->chip_info->int_vref_uv) {
-			scale_uv = regulator_get_voltage(st->reg);
+		if (!st->chip_info->int_vref_uv || st->force_ext_vref) {
Set set->reg_reg to NULL when not present and check for that instead of adding force_ext_vref?
+			scale_uv = regulator_get_voltage(st->ref_reg);
  			if (scale_uv < 0)
  				return scale_uv;
  		} else {
@@ -187,13 +194,32 @@ static int ad7476_read_raw(struct iio_dev *indio_dev,
  		BIT(IIO_CHAN_INFO_RAW))
  static int ad7476_probe(struct spi_device *spi)
  {
[...]
+	/* Either vcc or vref (below) as appropriate */
+	st->ref_reg = reg;
+
+	if (st->chip_info->has_vref) {
+
+		/* If a device has an internal reference vref is optional */
+		if (st->chip_info->int_vref_uv) {
+			reg = devm_regulator_get_optional(&spi->dev, "vref");

I think we need to distinguish between -ENODEV and other errors, if not only to handle EPROBE_DEFER.

[...]



[Index of Archives]     [Device Tree Compilter]     [Device Tree Spec]     [Linux Driver Backports]     [Video for Linux]     [Linux USB Devel]     [Linux PCI Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Yosemite Backpacking]


  Powered by Linux