iio: light: tsl2563: Configure INT in one place
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 7 Dec 2022 19:03:40 +0000 (21:03 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 28 Dec 2022 17:19:45 +0000 (17:19 +0000)
Introduce tsl2563_configure_irq() to configure INT in one place.

While at it, make use of TSL2563_INT_LEVEL and newly introduced
TSL2563_INT_MASK.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Ferry Toth <ftoth@exalondelft.nl>
Link: https://lore.kernel.org/r/20221207190348.9347-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/tsl2563.c

index d836c15ba777566498906a20002cd33df9547367..d071805239eff501aeea1f1888eafebcba40014a 100644 (file)
@@ -69,6 +69,7 @@
 
 #define TSL2563_INT_DISABLED   0x00
 #define TSL2563_INT_LEVEL      0x10
+#define TSL2563_INT_MASK       0x30
 #define TSL2563_INT_PERSIST(n) ((n) & 0x0F)
 
 struct tsl2563_gainlevel_coeff {
@@ -211,6 +212,24 @@ static int tsl2563_read_id(struct tsl2563_chip *chip, u8 *id)
        return 0;
 }
 
+static int tsl2563_configure_irq(struct tsl2563_chip *chip, bool enable)
+{
+       int ret;
+
+       chip->intr &= ~TSL2563_INT_MASK;
+       if (enable)
+               chip->intr |= TSL2563_INT_LEVEL;
+
+       ret = i2c_smbus_write_byte_data(chip->client,
+                                       TSL2563_CMD | TSL2563_REG_INT,
+                                       chip->intr);
+       if (ret < 0)
+               return ret;
+
+       chip->int_enabled = enable;
+       return 0;
+}
+
 /*
  * "Normalized" ADC value is one obtained with 400ms of integration time and
  * 16x gain. This function returns the number of bits of shift needed to
@@ -620,9 +639,7 @@ static int tsl2563_write_interrupt_config(struct iio_dev *indio_dev,
        int ret = 0;
 
        mutex_lock(&chip->lock);
-       if (state && !(chip->intr & 0x30)) {
-               chip->intr &= ~0x30;
-               chip->intr |= 0x10;
+       if (state && !(chip->intr & TSL2563_INT_MASK)) {
                /* ensure the chip is actually on */
                cancel_delayed_work_sync(&chip->poweroff_work);
                if (!tsl2563_get_power(chip)) {
@@ -633,18 +650,11 @@ static int tsl2563_write_interrupt_config(struct iio_dev *indio_dev,
                        if (ret)
                                goto out;
                }
-               ret = i2c_smbus_write_byte_data(chip->client,
-                                               TSL2563_CMD | TSL2563_REG_INT,
-                                               chip->intr);
-               chip->int_enabled = true;
+               ret = tsl2563_configure_irq(chip, true);
        }
 
-       if (!state && (chip->intr & 0x30)) {
-               chip->intr &= ~0x30;
-               ret = i2c_smbus_write_byte_data(chip->client,
-                                               TSL2563_CMD | TSL2563_REG_INT,
-                                               chip->intr);
-               chip->int_enabled = false;
+       if (!state && (chip->intr & TSL2563_INT_MASK)) {
+               ret = tsl2563_configure_irq(chip, false);
                /* now the interrupt is not enabled, we can go to sleep */
                schedule_delayed_work(&chip->poweroff_work, 5 * HZ);
        }
@@ -668,7 +678,7 @@ static int tsl2563_read_interrupt_config(struct iio_dev *indio_dev,
        if (ret < 0)
                return ret;
 
-       return !!(ret & 0x30);
+       return !!(ret & TSL2563_INT_MASK);
 }
 
 static const struct iio_info tsl2563_info_no_irq = {
@@ -796,9 +806,7 @@ static void tsl2563_remove(struct i2c_client *client)
        if (!chip->int_enabled)
                cancel_delayed_work_sync(&chip->poweroff_work);
        /* Ensure that interrupts are disabled - then flush any bottom halves */
-       chip->intr &= ~0x30;
-       i2c_smbus_write_byte_data(chip->client, TSL2563_CMD | TSL2563_REG_INT,
-                                 chip->intr);
+       tsl2563_configure_irq(chip, false);
        tsl2563_set_power(chip, 0);
 }