All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] iio: common: st_sensors: fix channel data parsing
@ 2016-11-16 21:15 Lorenzo Bianconi
  2016-11-19 13:07 ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Bianconi @ 2016-11-16 21:15 UTC (permalink / raw)
  To: jic23; +Cc: linux-iio, lorenzo.bianconi

Using realbits as i2c/spi read len, when that value is not byte aligned
(e.g 12 bits), lead to skip msb part of out data registers.
Fix this taking into account scan_type.shift in addition to
scan_type.realbits as read length:

read_len = DIV_ROUND_UP(realbits + shift, 8)

This fix has been tested on 8, 12, 16, 24 bit sensors

Fixes: e7385de5291e ("iio:st_sensors: align on storagebits boundaries")
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
---
 drivers/iio/common/st_sensors/st_sensors_buffer.c | 4 +++-
 drivers/iio/common/st_sensors/st_sensors_core.c   | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/iio/common/st_sensors/st_sensors_buffer.c b/drivers/iio/common/st_sensors/st_sensors_buffer.c
index fe7775b..df40452 100644
--- a/drivers/iio/common/st_sensors/st_sensors_buffer.c
+++ b/drivers/iio/common/st_sensors/st_sensors_buffer.c
@@ -30,7 +30,9 @@ static int st_sensors_get_buffer_element(struct iio_dev *indio_dev, u8 *buf)
 
 	for_each_set_bit(i, indio_dev->active_scan_mask, num_data_channels) {
 		const struct iio_chan_spec *channel = &indio_dev->channels[i];
-		unsigned int bytes_to_read = channel->scan_type.realbits >> 3;
+		unsigned int bytes_to_read =
+			DIV_ROUND_UP(channel->scan_type.realbits +
+				     channel->scan_type.shift, 8);
 		unsigned int storage_bytes =
 			channel->scan_type.storagebits >> 3;
 
diff --git a/drivers/iio/common/st_sensors/st_sensors_core.c b/drivers/iio/common/st_sensors/st_sensors_core.c
index 975a1f1..d5cf7f3 100644
--- a/drivers/iio/common/st_sensors/st_sensors_core.c
+++ b/drivers/iio/common/st_sensors/st_sensors_core.c
@@ -483,8 +483,10 @@ static int st_sensors_read_axis_data(struct iio_dev *indio_dev,
 	int err;
 	u8 *outdata;
 	struct st_sensor_data *sdata = iio_priv(indio_dev);
-	unsigned int byte_for_channel = ch->scan_type.realbits >> 3;
+	unsigned int byte_for_channel;
 
+	byte_for_channel = DIV_ROUND_UP(ch->scan_type.realbits +
+					ch->scan_type.shift, 8);
 	outdata = kmalloc(byte_for_channel, GFP_KERNEL);
 	if (!outdata)
 		return -ENOMEM;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iio: common: st_sensors: fix channel data parsing
  2016-11-16 21:15 [PATCH v2] iio: common: st_sensors: fix channel data parsing Lorenzo Bianconi
@ 2016-11-19 13:07 ` Jonathan Cameron
  2016-11-19 15:18   ` Linus Walleij
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2016-11-19 13:07 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: linux-iio, lorenzo.bianconi, Gregor Boirie, Linus Walleij

On 16/11/16 21:15, Lorenzo Bianconi wrote:
> Using realbits as i2c/spi read len, when that value is not byte aligned
> (e.g 12 bits), lead to skip msb part of out data registers.
> Fix this taking into account scan_type.shift in addition to
> scan_type.realbits as read length:
> 
> read_len = DIV_ROUND_UP(realbits + shift, 8)
> 
> This fix has been tested on 8, 12, 16, 24 bit sensors
> 
> Fixes: e7385de5291e ("iio:st_sensors: align on storagebits boundaries")
> Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
Do highlight (typically below the --) what changes have occurred.  I'm guessing this
was mostly about testing on the 24 bit sensor and the additions in the core file.

Applied to the fixes-togreg and marked for stable.  I will probably sit on this one
for a few days before sending upstream if anyone has any final comments on it.

Thanks,

Jonathan
> ---
>  drivers/iio/common/st_sensors/st_sensors_buffer.c | 4 +++-
>  drivers/iio/common/st_sensors/st_sensors_core.c   | 4 +++-
>  2 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/common/st_sensors/st_sensors_buffer.c b/drivers/iio/common/st_sensors/st_sensors_buffer.c
> index fe7775b..df40452 100644
> --- a/drivers/iio/common/st_sensors/st_sensors_buffer.c
> +++ b/drivers/iio/common/st_sensors/st_sensors_buffer.c
> @@ -30,7 +30,9 @@ static int st_sensors_get_buffer_element(struct iio_dev *indio_dev, u8 *buf)
>  
>  	for_each_set_bit(i, indio_dev->active_scan_mask, num_data_channels) {
>  		const struct iio_chan_spec *channel = &indio_dev->channels[i];
> -		unsigned int bytes_to_read = channel->scan_type.realbits >> 3;
> +		unsigned int bytes_to_read =
> +			DIV_ROUND_UP(channel->scan_type.realbits +
> +				     channel->scan_type.shift, 8);
>  		unsigned int storage_bytes =
>  			channel->scan_type.storagebits >> 3;
>  
> diff --git a/drivers/iio/common/st_sensors/st_sensors_core.c b/drivers/iio/common/st_sensors/st_sensors_core.c
> index 975a1f1..d5cf7f3 100644
> --- a/drivers/iio/common/st_sensors/st_sensors_core.c
> +++ b/drivers/iio/common/st_sensors/st_sensors_core.c
> @@ -483,8 +483,10 @@ static int st_sensors_read_axis_data(struct iio_dev *indio_dev,
>  	int err;
>  	u8 *outdata;
>  	struct st_sensor_data *sdata = iio_priv(indio_dev);
> -	unsigned int byte_for_channel = ch->scan_type.realbits >> 3;
> +	unsigned int byte_for_channel;
>  
> +	byte_for_channel = DIV_ROUND_UP(ch->scan_type.realbits +
> +					ch->scan_type.shift, 8);
>  	outdata = kmalloc(byte_for_channel, GFP_KERNEL);
>  	if (!outdata)
>  		return -ENOMEM;
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iio: common: st_sensors: fix channel data parsing
  2016-11-19 13:07 ` Jonathan Cameron
@ 2016-11-19 15:18   ` Linus Walleij
  2016-12-30 20:49     ` Linus Walleij
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2016-11-19 15:18 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Lorenzo Bianconi, linux-iio, lorenzo.bianconi, Gregor Boirie

On Sat, Nov 19, 2016 at 2:07 PM, Jonathan Cameron <jic23@kernel.org> wrote:
> On 16/11/16 21:15, Lorenzo Bianconi wrote:
>> Using realbits as i2c/spi read len, when that value is not byte aligned
>> (e.g 12 bits), lead to skip msb part of out data registers.
>> Fix this taking into account scan_type.shift in addition to
>> scan_type.realbits as read length:
>>
>> read_len = DIV_ROUND_UP(realbits + shift, 8)
>>
>> This fix has been tested on 8, 12, 16, 24 bit sensors
>>
>> Fixes: e7385de5291e ("iio:st_sensors: align on storagebits boundaries")
>> Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
>
> Do highlight (typically below the --) what changes have occurred.  I'm guessing this
> was mostly about testing on the 24 bit sensor and the additions in the core file.
>
> Applied to the fixes-togreg and marked for stable.  I will probably sit on this one
> for a few days before sending upstream if anyone has any final comments on it.

Makes all kind of sense.
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iio: common: st_sensors: fix channel data parsing
  2016-11-19 15:18   ` Linus Walleij
@ 2016-12-30 20:49     ` Linus Walleij
  2016-12-31 14:33       ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2016-12-30 20:49 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Lorenzo Bianconi, linux-iio, lorenzo.bianconi, Gregor Boirie

On Sat, Nov 19, 2016 at 4:18 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Sat, Nov 19, 2016 at 2:07 PM, Jonathan Cameron <jic23@kernel.org> wrote:
>> On 16/11/16 21:15, Lorenzo Bianconi wrote:
>>> Using realbits as i2c/spi read len, when that value is not byte aligned
>>> (e.g 12 bits), lead to skip msb part of out data registers.
>>> Fix this taking into account scan_type.shift in addition to
>>> scan_type.realbits as read length:
>>>
>>> read_len = DIV_ROUND_UP(realbits + shift, 8)
>>>
>>> This fix has been tested on 8, 12, 16, 24 bit sensors
>>>
>>> Fixes: e7385de5291e ("iio:st_sensors: align on storagebits boundaries")
>>> Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
>>
>> Do highlight (typically below the --) what changes have occurred.  I'm guessing this
>> was mostly about testing on the 24 bit sensor and the additions in the core file.
>>
>> Applied to the fixes-togreg and marked for stable.  I will probably sit on this one
>> for a few days before sending upstream if anyone has any final comments on it.
>
> Makes all kind of sense.
> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

After making my 12bit LIS3LV02 work again it is also:
Tested-by: Linus Walleij <linus.walleij@linaro.org>

And I think it should be tagged for stable.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] iio: common: st_sensors: fix channel data parsing
  2016-12-30 20:49     ` Linus Walleij
@ 2016-12-31 14:33       ` Jonathan Cameron
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2016-12-31 14:33 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Lorenzo Bianconi, linux-iio, lorenzo.bianconi, Gregor Boirie

On 30/12/16 20:49, Linus Walleij wrote:
> On Sat, Nov 19, 2016 at 4:18 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
>> On Sat, Nov 19, 2016 at 2:07 PM, Jonathan Cameron <jic23@kernel.org> wrote:
>>> On 16/11/16 21:15, Lorenzo Bianconi wrote:
>>>> Using realbits as i2c/spi read len, when that value is not byte aligned
>>>> (e.g 12 bits), lead to skip msb part of out data registers.
>>>> Fix this taking into account scan_type.shift in addition to
>>>> scan_type.realbits as read length:
>>>>
>>>> read_len = DIV_ROUND_UP(realbits + shift, 8)
>>>>
>>>> This fix has been tested on 8, 12, 16, 24 bit sensors
>>>>
>>>> Fixes: e7385de5291e ("iio:st_sensors: align on storagebits boundaries")
>>>> Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
>>>
>>> Do highlight (typically below the --) what changes have occurred.  I'm guessing this
>>> was mostly about testing on the 24 bit sensor and the additions in the core file.
>>>
>>> Applied to the fixes-togreg and marked for stable.  I will probably sit on this one
>>> for a few days before sending upstream if anyone has any final comments on it.
>>
>> Makes all kind of sense.
>> Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
> 
> After making my 12bit LIS3LV02 work again it is also:
> Tested-by: Linus Walleij <linus.walleij@linaro.org>
> 
> And I think it should be tagged for stable.
Already was. In a bit of patch shuffling to avoid having multiple pull requests
I've cherry picked this one into the fixes-togreg-post-rc1 branch and added
Linus' tested-by.  Will send a pull request in a few minutes.

Jonathan
> 
> Yours,
> Linus Walleij
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-12-31 14:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-16 21:15 [PATCH v2] iio: common: st_sensors: fix channel data parsing Lorenzo Bianconi
2016-11-19 13:07 ` Jonathan Cameron
2016-11-19 15:18   ` Linus Walleij
2016-12-30 20:49     ` Linus Walleij
2016-12-31 14:33       ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.