Commit dba968c4 authored by Gargi Sharma's avatar Gargi Sharma Committed by Jonathan Cameron

staging: iio: ad7280: Replace mlock with driver private lock

The IIO subsystem is redefining iio_dev->mlock to be used by
the IIO core only for protecting device operating mode changes.
ie. Changes between INDIO_DIRECT_MODE, INDIO_BUFFER_* modes.

In this driver, mlock was being used to protect hardware state
changes.  Replace it with a lock in the devices global data.
Signed-off-by: default avatarGargi Sharma <gs051095@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 2b7cb7be
...@@ -134,6 +134,7 @@ struct ad7280_state { ...@@ -134,6 +134,7 @@ struct ad7280_state {
unsigned char aux_threshhigh; unsigned char aux_threshhigh;
unsigned char aux_threshlow; unsigned char aux_threshlow;
unsigned char cb_mask[AD7280A_MAX_CHAIN]; unsigned char cb_mask[AD7280A_MAX_CHAIN];
struct mutex lock; /* protect sensor state */
__be32 buf[2] ____cacheline_aligned; __be32 buf[2] ____cacheline_aligned;
}; };
...@@ -410,7 +411,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev, ...@@ -410,7 +411,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev,
devaddr = this_attr->address >> 8; devaddr = this_attr->address >> 8;
ch = this_attr->address & 0xFF; ch = this_attr->address & 0xFF;
mutex_lock(&indio_dev->mlock); mutex_lock(&st->lock);
if (readin) if (readin)
st->cb_mask[devaddr] |= 1 << (ch + 2); st->cb_mask[devaddr] |= 1 << (ch + 2);
else else
...@@ -418,7 +419,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev, ...@@ -418,7 +419,7 @@ static ssize_t ad7280_store_balance_sw(struct device *dev,
ret = ad7280_write(st, devaddr, AD7280A_CELL_BALANCE, ret = ad7280_write(st, devaddr, AD7280A_CELL_BALANCE,
0, st->cb_mask[devaddr]); 0, st->cb_mask[devaddr]);
mutex_unlock(&indio_dev->mlock); mutex_unlock(&st->lock);
return ret ? ret : len; return ret ? ret : len;
} }
...@@ -433,10 +434,10 @@ static ssize_t ad7280_show_balance_timer(struct device *dev, ...@@ -433,10 +434,10 @@ static ssize_t ad7280_show_balance_timer(struct device *dev,
int ret; int ret;
unsigned int msecs; unsigned int msecs;
mutex_lock(&indio_dev->mlock); mutex_lock(&st->lock);
ret = ad7280_read(st, this_attr->address >> 8, ret = ad7280_read(st, this_attr->address >> 8,
this_attr->address & 0xFF); this_attr->address & 0xFF);
mutex_unlock(&indio_dev->mlock); mutex_unlock(&st->lock);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -466,11 +467,11 @@ static ssize_t ad7280_store_balance_timer(struct device *dev, ...@@ -466,11 +467,11 @@ static ssize_t ad7280_store_balance_timer(struct device *dev,
if (val > 31) if (val > 31)
return -EINVAL; return -EINVAL;
mutex_lock(&indio_dev->mlock); mutex_lock(&st->lock);
ret = ad7280_write(st, this_attr->address >> 8, ret = ad7280_write(st, this_attr->address >> 8,
this_attr->address & 0xFF, this_attr->address & 0xFF,
0, (val & 0x1F) << 3); 0, (val & 0x1F) << 3);
mutex_unlock(&indio_dev->mlock); mutex_unlock(&st->lock);
return ret ? ret : len; return ret ? ret : len;
} }
...@@ -655,7 +656,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev, ...@@ -655,7 +656,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
val = clamp(val, 0L, 0xFFL); val = clamp(val, 0L, 0xFFL);
mutex_lock(&indio_dev->mlock); mutex_lock(&st->lock);
switch ((u32)this_attr->address) { switch ((u32)this_attr->address) {
case AD7280A_CELL_OVERVOLTAGE: case AD7280A_CELL_OVERVOLTAGE:
st->cell_threshhigh = val; st->cell_threshhigh = val;
...@@ -674,7 +675,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev, ...@@ -674,7 +675,7 @@ static ssize_t ad7280_write_channel_config(struct device *dev,
ret = ad7280_write(st, AD7280A_DEVADDR_MASTER, ret = ad7280_write(st, AD7280A_DEVADDR_MASTER,
this_attr->address, 1, val); this_attr->address, 1, val);
mutex_unlock(&indio_dev->mlock); mutex_unlock(&st->lock);
return ret ? ret : len; return ret ? ret : len;
} }
...@@ -792,13 +793,13 @@ static int ad7280_read_raw(struct iio_dev *indio_dev, ...@@ -792,13 +793,13 @@ static int ad7280_read_raw(struct iio_dev *indio_dev,
switch (m) { switch (m) {
case IIO_CHAN_INFO_RAW: case IIO_CHAN_INFO_RAW:
mutex_lock(&indio_dev->mlock); mutex_lock(&st->lock);
if (chan->address == AD7280A_ALL_CELLS) if (chan->address == AD7280A_ALL_CELLS)
ret = ad7280_read_all_channels(st, st->scan_cnt, NULL); ret = ad7280_read_all_channels(st, st->scan_cnt, NULL);
else else
ret = ad7280_read_channel(st, chan->address >> 8, ret = ad7280_read_channel(st, chan->address >> 8,
chan->address & 0xFF); chan->address & 0xFF);
mutex_unlock(&indio_dev->mlock); mutex_unlock(&st->lock);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -847,6 +848,7 @@ static int ad7280_probe(struct spi_device *spi) ...@@ -847,6 +848,7 @@ static int ad7280_probe(struct spi_device *spi)
st = iio_priv(indio_dev); st = iio_priv(indio_dev);
spi_set_drvdata(spi, indio_dev); spi_set_drvdata(spi, indio_dev);
st->spi = spi; st->spi = spi;
mutex_init(&st->lock);
if (!pdata) if (!pdata)
pdata = &ad7793_default_pdata; pdata = &ad7793_default_pdata;
......
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