drivers: iio: admv1013: add vcc regulators
authorAntoniu Miclaus <antoniu.miclaus@analog.com>
Mon, 31 Jul 2023 09:44:55 +0000 (12:44 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 5 Aug 2023 18:29:39 +0000 (19:29 +0100)
Add regulators for the VCC supplies of the admv1013.

The patch aims to align the implementation with the current admv1014
driver where all the VCC supplies are handled as regulators.

Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
Link: https://lore.kernel.org/r/20230731094455.26742-2-antoniu.miclaus@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/frequency/admv1013.c

index 9bf8337806fcf1c686ab4106e63fabc26ec6dc5f..cc01fac2dfee429e40159b84fd55b41503850e91 100644 (file)
@@ -379,6 +379,11 @@ static const struct iio_info admv1013_info = {
        .debugfs_reg_access = &admv1013_reg_access,
 };
 
+static const char * const admv1013_vcc_regs[] = {
+        "vcc-drv", "vcc2-drv", "vcc-vva", "vcc-amp1", "vcc-amp2",
+        "vcc-env", "vcc-bg", "vcc-bg2", "vcc-mixer", "vcc-quad"
+};
+
 static int admv1013_freq_change(struct notifier_block *nb, unsigned long action, void *data)
 {
        struct admv1013_state *st = container_of(nb, struct admv1013_state, nb);
@@ -554,6 +559,15 @@ static int admv1013_properties_parse(struct admv1013_state *st)
                return dev_err_probe(&spi->dev, PTR_ERR(st->reg),
                                     "failed to get the common-mode voltage\n");
 
+       ret = devm_regulator_bulk_get_enable(&st->spi->dev,
+                                            ARRAY_SIZE(admv1013_vcc_regs),
+                                            admv1013_vcc_regs);
+       if (ret) {
+               dev_err_probe(&spi->dev, ret,
+                             "Failed to request VCC regulators\n");
+               return ret;
+       }
+
        return 0;
 }