* [PATCH] iio: adc: ad7192: Correct reference voltage
@ 2023-09-23 22:58 alisadariana
2023-09-24 14:50 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: alisadariana @ 2023-09-23 22:58 UTC (permalink / raw)
Cc: Alisa-Dariana Roman, Alisa-Dariana Roman, stable,
Lars-Peter Clausen, Michael Hennerich, Alexandru Tachici,
Jonathan Cameron, Liam Girdwood, Mark Brown, linux-iio,
linux-kernel
From: Alisa-Dariana Roman <alisadariana@gmail.com>
The avdd and the reference voltage are two different sources but the
reference voltage was assigned according to the avdd supply.
Add vref regulator structure and set the reference voltage according to
the vref supply from the devicetree.
In case vref supply is missing, reference voltage is set according to
the avdd supply for compatibility with old devicetrees.
Fixes: b581f748cce0 ("staging: iio: adc: ad7192: move out of staging")
Signed-off-by: Alisa-Dariana Roman <alisa.roman@analog.com>
Cc: stable@vger.kernel.org
---
drivers/iio/adc/ad7192.c | 31 +++++++++++++++++++++++++++----
1 file changed, 27 insertions(+), 4 deletions(-)
diff --git a/drivers/iio/adc/ad7192.c b/drivers/iio/adc/ad7192.c
index 69d1103b9508..c414fed60dd3 100644
--- a/drivers/iio/adc/ad7192.c
+++ b/drivers/iio/adc/ad7192.c
@@ -177,6 +177,7 @@ struct ad7192_chip_info {
struct ad7192_state {
const struct ad7192_chip_info *chip_info;
struct regulator *avdd;
+ struct regulator *vref;
struct clk *mclk;
u16 int_vref_mv;
u32 fclk;
@@ -1008,10 +1009,32 @@ static int ad7192_probe(struct spi_device *spi)
if (ret)
return dev_err_probe(&spi->dev, ret, "Failed to enable specified DVdd supply\n");
- ret = regulator_get_voltage(st->avdd);
- if (ret < 0) {
- dev_err(&spi->dev, "Device tree error, reference voltage undefined\n");
- return ret;
+ st->vref = devm_regulator_get_optional(&spi->dev, "vref");
+ if (IS_ERR(st->vref)) {
+ if (PTR_ERR(st->vref) != -ENODEV)
+ return PTR_ERR(st->vref);
+
+ ret = regulator_get_voltage(st->avdd);
+ if (ret < 0) {
+ dev_err(&spi->dev, "Device tree error, AVdd voltage undefined\n");
+ return ret;
+ }
+ } else {
+ ret = regulator_enable(st->vref);
+ if (ret) {
+ dev_err(&spi->dev, "Failed to enable specified Vref supply\n");
+ return ret;
+ }
+
+ ret = devm_add_action_or_reset(&spi->dev, ad7192_reg_disable, st->vref);
+ if (ret)
+ return ret;
+
+ ret = regulator_get_voltage(st->vref);
+ if (ret < 0) {
+ dev_err(&spi->dev, "Device tree error, Vref voltage undefined\n");
+ return ret;
+ }
}
st->int_vref_mv = ret / 1000;
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] iio: adc: ad7192: Correct reference voltage
2023-09-23 22:58 [PATCH] iio: adc: ad7192: Correct reference voltage alisadariana
@ 2023-09-24 14:50 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2023-09-24 14:50 UTC (permalink / raw)
To: alisadariana
Cc: Alisa-Dariana Roman, stable, Lars-Peter Clausen,
Michael Hennerich, Alexandru Tachici, Liam Girdwood, Mark Brown,
linux-iio, linux-kernel
On Sun, 24 Sep 2023 01:58:27 +0300
alisadariana@gmail.com wrote:
> From: Alisa-Dariana Roman <alisadariana@gmail.com>
>
> The avdd and the reference voltage are two different sources but the
> reference voltage was assigned according to the avdd supply.
>
> Add vref regulator structure and set the reference voltage according to
> the vref supply from the devicetree.
>
> In case vref supply is missing, reference voltage is set according to
> the avdd supply for compatibility with old devicetrees.
>
> Fixes: b581f748cce0 ("staging: iio: adc: ad7192: move out of staging")
> Signed-off-by: Alisa-Dariana Roman <alisa.roman@analog.com>
> Cc: stable@vger.kernel.org
Looks good but I'd prefer dev_err_probe() for the error messages.
Obviously that wasn't true for the existing one but as we are touching the
code good to clean it up.
Thanks,
Jonathan
> ---
> drivers/iio/adc/ad7192.c | 31 +++++++++++++++++++++++++++----
> 1 file changed, 27 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iio/adc/ad7192.c b/drivers/iio/adc/ad7192.c
> index 69d1103b9508..c414fed60dd3 100644
> --- a/drivers/iio/adc/ad7192.c
> +++ b/drivers/iio/adc/ad7192.c
> @@ -177,6 +177,7 @@ struct ad7192_chip_info {
> struct ad7192_state {
> const struct ad7192_chip_info *chip_info;
> struct regulator *avdd;
> + struct regulator *vref;
> struct clk *mclk;
> u16 int_vref_mv;
> u32 fclk;
> @@ -1008,10 +1009,32 @@ static int ad7192_probe(struct spi_device *spi)
> if (ret)
> return dev_err_probe(&spi->dev, ret, "Failed to enable specified DVdd supply\n");
>
> - ret = regulator_get_voltage(st->avdd);
> - if (ret < 0) {
> - dev_err(&spi->dev, "Device tree error, reference voltage undefined\n");
> - return ret;
> + st->vref = devm_regulator_get_optional(&spi->dev, "vref");
> + if (IS_ERR(st->vref)) {
> + if (PTR_ERR(st->vref) != -ENODEV)
> + return PTR_ERR(st->vref);
> +
> + ret = regulator_get_voltage(st->avdd);
> + if (ret < 0) {
> + dev_err(&spi->dev, "Device tree error, AVdd voltage undefined\n");
dev_err_probe()
> + return ret;
> + }
> + } else {
> + ret = regulator_enable(st->vref);
> + if (ret) {
> + dev_err(&spi->dev, "Failed to enable specified Vref supply\n");
dev_err_probe()
> + return ret;
> + }
> +
> + ret = devm_add_action_or_reset(&spi->dev, ad7192_reg_disable, st->vref);
> + if (ret)
> + return ret;
> +
> + ret = regulator_get_voltage(st->vref);
> + if (ret < 0) {
> + dev_err(&spi->dev, "Device tree error, Vref voltage undefined\n");
dev_err_probe()
> + return ret;
> + }
> }
> st->int_vref_mv = ret / 1000;
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-09-24 14:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-23 22:58 [PATCH] iio: adc: ad7192: Correct reference voltage alisadariana
2023-09-24 14:50 ` Jonathan Cameron
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).