From: Jonathan Cameron <jic23@kernel.org>
To: Antoniu Miclaus <antoniu.miclaus@analog.com>
Cc: "David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
"Andy Shevchenko" <andriy.shevchenko@intel.com>
Subject: Re: [PATCH v3] iio: dac: max5522: simplify probe with devm_regulator_get_enable_read_voltage()
Date: Fri, 20 Feb 2026 11:04:59 +0000 [thread overview]
Message-ID: <20260220110459.2c11f1ff@jic23-huawei> (raw)
In-Reply-To: <20260216131714.90508-2-antoniu.miclaus@analog.com>
On Mon, 16 Feb 2026 15:17:05 +0200
Antoniu Miclaus <antoniu.miclaus@analog.com> wrote:
> Simplify probe by using devm_regulator_get_enable_read_voltage() to
> get, enable and read the regulator voltage in a single call, caching
> the value at probe time.
>
> The reference voltage for this DAC is a fixed hardware configuration
> that is not expected to change at runtime, so reading it once during
> probe and caching the millivolt value is sufficient.
>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
Applied. Thanks,
Jonathan
> ---
> Changes in v3:
> - change vref_mV type from unsigned short to int to avoid potential
> precision loss
> - update commit message to clarify why caching voltage at probe is
> sufficient
>
> drivers/iio/dac/max5522.c | 22 +++++++---------------
> 1 file changed, 7 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/iio/dac/max5522.c b/drivers/iio/dac/max5522.c
> index 1b8fe6b8d26e..b52a9cc1da79 100644
> --- a/drivers/iio/dac/max5522.c
> +++ b/drivers/iio/dac/max5522.c
> @@ -14,6 +14,7 @@
> #include <linux/regulator/consumer.h>
> #include <linux/slab.h>
> #include <linux/spi/spi.h>
> +#include <linux/units.h>
>
> #include <linux/iio/iio.h>
>
> @@ -34,7 +35,7 @@ struct max5522_state {
> struct regmap *regmap;
> const struct max5522_chip_info *chip_info;
> unsigned short dac_cache[2];
> - struct regulator *vrefin_reg;
> + int vref_mV;
> };
>
> #define MAX5522_CHANNEL(chan) { \
> @@ -79,17 +80,13 @@ static int max5522_read_raw(struct iio_dev *indio_dev,
> int *val, int *val2, long info)
> {
> struct max5522_state *state = iio_priv(indio_dev);
> - int ret;
>
> switch (info) {
> case IIO_CHAN_INFO_RAW:
> *val = state->dac_cache[chan->channel];
> return IIO_VAL_INT;
> case IIO_CHAN_INFO_SCALE:
> - ret = regulator_get_voltage(state->vrefin_reg);
> - if (ret < 0)
> - return -EINVAL;
> - *val = ret / 1000;
> + *val = state->vref_mV;
> *val2 = 10;
> return IIO_VAL_FRACTIONAL_LOG2;
> default:
> @@ -147,16 +144,11 @@ static int max5522_spi_probe(struct spi_device *spi)
> if (!state->chip_info)
> return -EINVAL;
>
> - state->vrefin_reg = devm_regulator_get(&spi->dev, "vrefin");
> - if (IS_ERR(state->vrefin_reg))
> - return dev_err_probe(&spi->dev, PTR_ERR(state->vrefin_reg),
> - "Vrefin regulator not specified\n");
> -
> - ret = regulator_enable(state->vrefin_reg);
> - if (ret) {
> + ret = devm_regulator_get_enable_read_voltage(&spi->dev, "vrefin");
> + if (ret < 0)
> return dev_err_probe(&spi->dev, ret,
> - "Failed to enable vref regulators\n");
> - }
> + "Failed to get vrefin regulator\n");
> + state->vref_mV = ret / (MICRO / MILLI);
>
> state->regmap = devm_regmap_init_spi(spi, &max5522_regmap_config);
>
prev parent reply other threads:[~2026-02-20 11:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-16 13:17 Antoniu Miclaus
2026-02-20 11:04 ` Jonathan Cameron [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260220110459.2c11f1ff@jic23-huawei \
--to=jic23@kernel.org \
--cc=andriy.shevchenko@intel.com \
--cc=andy@kernel.org \
--cc=antoniu.miclaus@analog.com \
--cc=dlechner@baylibre.com \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome