iio: light: veml6030: add set up delay after any power on sequence
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Tue, 1 Oct 2024 20:21:14 +0000 (22:21 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 6 Oct 2024 14:09:35 +0000 (15:09 +0100)
The veml6030 requires a delay of 4 ms after activating the sensor. That
is done correctly during the hw initialization, but it's missing after
resuming.

Move the delay to the power on function to make sure that it is always
observerd. When at it, use fsleep() instead of usleep_range() as such a
narrow range is not required.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Link: https://patch.msgid.link/20241001-veml6035-v3-1-d789f6ff147c@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/veml6030.c

index 4c436c5e0787a2f7810767642c84d800c249e496..94e38a983cf3e62c549b7a02cb977312f970351d 100644 (file)
@@ -144,8 +144,17 @@ static const struct attribute_group veml6030_event_attr_group = {
 
 static int veml6030_als_pwr_on(struct veml6030_data *data)
 {
-       return regmap_clear_bits(data->regmap, VEML6030_REG_ALS_CONF,
-                                VEML6030_ALS_SD);
+       int ret;
+
+       ret = regmap_clear_bits(data->regmap, VEML6030_REG_ALS_CONF,
+                               VEML6030_ALS_SD);
+       if (ret)
+               return ret;
+
+       /* Wait 4 ms to let processor & oscillator start correctly */
+       fsleep(4000);
+
+       return 0;
 }
 
 static int veml6030_als_shut_down(struct veml6030_data *data)
@@ -767,9 +776,6 @@ static int veml6030_hw_init(struct iio_dev *indio_dev)
                return ret;
        }
 
-       /* Wait 4 ms to let processor & oscillator start correctly */
-       usleep_range(4000, 4002);
-
        /* Clear stale interrupt status bits if any during start */
        ret = regmap_read(data->regmap, VEML6030_REG_ALS_INT, &val);
        if (ret < 0) {