Commit 97408274 authored by William Breathitt Gray's avatar William Breathitt Gray Committed by Jonathan Cameron

iio: addac: stx104: Fix race condition for stx104_write_raw()

The priv->chan_out_states array and actual DAC value can become
mismatched if stx104_write_raw() is called concurrently. Prevent such a
race condition by utilizing a mutex.

Fixes: 97a445da ("iio: Add IIO support for the DAC on the Apex Embedded Systems STX104")
Signed-off-by: default avatarWilliam Breathitt Gray <william.gray@linaro.org>
Link: https://lore.kernel.org/r/c95c9a77fcef36b2a052282146950f23bbc1ebdc.1680790580.git.william.gray@linaro.org
Cc: <Stable@vger.kernel.org>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 86fb8b3a
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/moduleparam.h> #include <linux/moduleparam.h>
#include <linux/mutex.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/types.h> #include <linux/types.h>
...@@ -69,10 +70,12 @@ struct stx104_reg { ...@@ -69,10 +70,12 @@ struct stx104_reg {
/** /**
* struct stx104_iio - IIO device private data structure * struct stx104_iio - IIO device private data structure
* @lock: synchronization lock to prevent I/O race conditions
* @chan_out_states: channels' output states * @chan_out_states: channels' output states
* @reg: I/O address offset for the device registers * @reg: I/O address offset for the device registers
*/ */
struct stx104_iio { struct stx104_iio {
struct mutex lock;
unsigned int chan_out_states[STX104_NUM_OUT_CHAN]; unsigned int chan_out_states[STX104_NUM_OUT_CHAN];
struct stx104_reg __iomem *reg; struct stx104_reg __iomem *reg;
}; };
...@@ -178,9 +181,12 @@ static int stx104_write_raw(struct iio_dev *indio_dev, ...@@ -178,9 +181,12 @@ static int stx104_write_raw(struct iio_dev *indio_dev,
if ((unsigned int)val > 65535) if ((unsigned int)val > 65535)
return -EINVAL; return -EINVAL;
mutex_lock(&priv->lock);
priv->chan_out_states[chan->channel] = val; priv->chan_out_states[chan->channel] = val;
iowrite16(val, &priv->reg->dac[chan->channel]); iowrite16(val, &priv->reg->dac[chan->channel]);
mutex_unlock(&priv->lock);
return 0; return 0;
} }
return -EINVAL; return -EINVAL;
...@@ -351,6 +357,8 @@ static int stx104_probe(struct device *dev, unsigned int id) ...@@ -351,6 +357,8 @@ static int stx104_probe(struct device *dev, unsigned int id)
indio_dev->name = dev_name(dev); indio_dev->name = dev_name(dev);
mutex_init(&priv->lock);
/* configure device for software trigger operation */ /* configure device for software trigger operation */
iowrite8(0, &priv->reg->acr); iowrite8(0, &priv->reg->acr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment