* [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage()
@ 2026-02-11 8:18 Antoniu Miclaus
2026-02-11 8:48 ` Andy Shevchenko
2026-02-14 19:29 ` Jonathan Cameron
0 siblings, 2 replies; 3+ messages in thread
From: Antoniu Miclaus @ 2026-02-11 8:18 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Antoniu Miclaus, linux-iio, linux-kernel
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.
Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
---
Changes in v2:
- use vref_mV naming convention
- use (MICRO / MILLI) instead of 1000 for conversion
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..459b333a84a0 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;
+ unsigned short 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);
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage()
2026-02-11 8:18 [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage() Antoniu Miclaus
@ 2026-02-11 8:48 ` Andy Shevchenko
2026-02-14 19:29 ` Jonathan Cameron
1 sibling, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2026-02-11 8:48 UTC (permalink / raw)
To: Antoniu Miclaus
Cc: Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, linux-iio, linux-kernel
On Wed, Feb 11, 2026 at 10:18:27AM +0200, Antoniu Miclaus 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.
LGTM,
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage()
2026-02-11 8:18 [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage() Antoniu Miclaus
2026-02-11 8:48 ` Andy Shevchenko
@ 2026-02-14 19:29 ` Jonathan Cameron
1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2026-02-14 19:29 UTC (permalink / raw)
To: Antoniu Miclaus
Cc: David Lechner, Nuno Sá, Andy Shevchenko, linux-iio, linux-kernel
On Wed, 11 Feb 2026 10:18:27 +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.
Mention more on why it should be fine to assume this doesn't change
at runtime.
>
> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
> ---
> Changes in v2:
> - use vref_mV naming convention
> - use (MICRO / MILLI) instead of 1000 for conversion
> 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..459b333a84a0 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;
> + unsigned short vref_mV;
Why a short?
Seems like the max you 'could' get is MAX_INT / 1000 which
will not fit in an unsigned short.
Probably easier to just go with unsigned int and save
the effort of reasonsing about it.
Or just use an int and don't even worry about the sign.
J
> };
>
> #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);
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-02-14 19:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-11 8:18 [PATCH v2] iio: dac: max5522: use devm_regulator_get_enable_read_voltage() Antoniu Miclaus
2026-02-11 8:48 ` Andy Shevchenko
2026-02-14 19:29 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®