* [PATCH] iio: temperature: tmp006: Fix endianness byte swap in trigger handler
@ 2026-09-07 8:22 Salah Triki
2026-09-07 14:47 ` Joshua Crofts
0 siblings, 1 reply; 3+ messages in thread
From: Salah Triki @ 2026-09-07 8:22 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko
Cc: linux-iio, linux-kernel, Salah Triki
In tmp006_trigger_handler(), i2c_smbus_read_word_data() is used to read
the VOBJECT and TAMBIENT registers. However, the TMP006 stores register
values in Big Endian byte order, while i2c_smbus_read_word_data() assumes
Little Endian.
This causes byte-swapped values to be pushed to the IIO buffer on Little
Endian architectures, leading to corrupted sensor readings when using
triggered buffers.
Fix this by switching to i2c_smbus_read_word_swapped() inside the trigger
handler.
Fixes: 91f75ccf9f03 ("iio: temperature: tmp006: add triggered buffer support")
Assisted-by: LLM
Signed-off-by: Salah Triki <salah.triki@gmail.com>
---
drivers/iio/temperature/tmp006.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/iio/temperature/tmp006.c b/drivers/iio/temperature/tmp006.c
index d9f6449ec0d8..f3b3de0bf221 100644
--- a/drivers/iio/temperature/tmp006.c
+++ b/drivers/iio/temperature/tmp006.c
@@ -256,12 +256,12 @@ static irqreturn_t tmp006_trigger_handler(int irq, void *p)
} scan = { };
s32 ret;
- ret = i2c_smbus_read_word_data(data->client, TMP006_VOBJECT);
+ ret = i2c_smbus_read_word_swapped(data->client, TMP006_VOBJECT);
if (ret < 0)
goto err;
scan.channels[0] = ret;
- ret = i2c_smbus_read_word_data(data->client, TMP006_TAMBIENT);
+ ret = i2c_smbus_read_word_swapped(data->client, TMP006_TAMBIENT);
if (ret < 0)
goto err;
scan.channels[1] = ret;
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: temperature: tmp006: Fix endianness byte swap in trigger handler
2026-09-07 8:22 [PATCH] iio: temperature: tmp006: Fix endianness byte swap in trigger handler Salah Triki
@ 2026-09-07 14:47 ` Joshua Crofts
2026-09-13 22:07 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Joshua Crofts @ 2026-09-07 14:47 UTC (permalink / raw)
To: Salah Triki
Cc: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko,
linux-iio, linux-kernel
On Mon, 7 Sep 2026 09:22:15 +0100
Salah Triki <salah.triki@gmail.com> wrote:
> In tmp006_trigger_handler(), i2c_smbus_read_word_data() is used to read
> the VOBJECT and TAMBIENT registers. However, the TMP006 stores register
> values in Big Endian byte order, while i2c_smbus_read_word_data() assumes
> Little Endian.
>
> This causes byte-swapped values to be pushed to the IIO buffer on Little
> Endian architectures, leading to corrupted sensor readings when using
> triggered buffers.
>
> Fix this by switching to i2c_smbus_read_word_swapped() inside the trigger
> handler.
>
> Fixes: 91f75ccf9f03 ("iio: temperature: tmp006: add triggered buffer support")
> Assisted-by: LLM
> Signed-off-by: Salah Triki <salah.triki@gmail.com>
> ---
> drivers/iio/temperature/tmp006.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iio/temperature/tmp006.c b/drivers/iio/temperature/tmp006.c
> index d9f6449ec0d8..f3b3de0bf221 100644
> --- a/drivers/iio/temperature/tmp006.c
> +++ b/drivers/iio/temperature/tmp006.c
> @@ -256,12 +256,12 @@ static irqreturn_t tmp006_trigger_handler(int irq, void *p)
> } scan = { };
> s32 ret;
>
> - ret = i2c_smbus_read_word_data(data->client, TMP006_VOBJECT);
> + ret = i2c_smbus_read_word_swapped(data->client, TMP006_VOBJECT);
Sashiko has something to say:
Does this code introduce a regression where sensor readings are corrupted for
userspace clients reading from the triggered IIO buffer on Little Endian
architectures?
Before this patch, i2c_smbus_read_word_data() returned a byte-swapped word.
When this was assigned to the s16 array in tmp006_trigger_handler() on a Little
Endian CPU, the memory layout became [msb, lsb]. This implicitly matched the
IIO_BE (Big Endian) endianness declared in the tmp006_channels array, so it
worked correctly.
By switching to i2c_smbus_read_word_swapped(), the value is now in native CPU
endianness [lsb, msb]. However, the channel specification in tmp006_channels
still specifies IIO_BE:
drivers/iio/temperature/tmp006.c:tmp006_channels[] {
...
.scan_type = {
.endianness = IIO_BE,
},
...
}
Because the ABI still advertises the data as Big Endian, userspace will parse
the little-endian data as big-endian.
Should the channel specification be updated from IIO_BE to IIO_CPU, or should
scan.channels be declared as __be16 and populated using cpu_to_be16() to
preserve the existing Big Endian ABI?
--
Kind regards,
Joshua Crofts
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: temperature: tmp006: Fix endianness byte swap in trigger handler
2026-09-07 14:47 ` Joshua Crofts
@ 2026-09-13 22:07 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2026-09-13 22:07 UTC (permalink / raw)
To: Joshua Crofts
Cc: Salah Triki, David Lechner, Nuno Sá, Andy Shevchenko,
linux-iio, linux-kernel
On Mon, 7 Sep 2026 16:47:33 +0200
Joshua Crofts <joshua.crofts1@gmail.com> wrote:
> On Mon, 7 Sep 2026 09:22:15 +0100
> Salah Triki <salah.triki@gmail.com> wrote:
>
> > In tmp006_trigger_handler(), i2c_smbus_read_word_data() is used to read
> > the VOBJECT and TAMBIENT registers. However, the TMP006 stores register
> > values in Big Endian byte order, while i2c_smbus_read_word_data() assumes
> > Little Endian.
> >
> > This causes byte-swapped values to be pushed to the IIO buffer on Little
> > Endian architectures, leading to corrupted sensor readings when using
> > triggered buffers.
> >
> > Fix this by switching to i2c_smbus_read_word_swapped() inside the trigger
> > handler.
> >
> > Fixes: 91f75ccf9f03 ("iio: temperature: tmp006: add triggered buffer support")
> > Assisted-by: LLM
> > Signed-off-by: Salah Triki <salah.triki@gmail.com>
> > ---
> > drivers/iio/temperature/tmp006.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/iio/temperature/tmp006.c b/drivers/iio/temperature/tmp006.c
> > index d9f6449ec0d8..f3b3de0bf221 100644
> > --- a/drivers/iio/temperature/tmp006.c
> > +++ b/drivers/iio/temperature/tmp006.c
> > @@ -256,12 +256,12 @@ static irqreturn_t tmp006_trigger_handler(int irq, void *p)
> > } scan = { };
> > s32 ret;
> >
> > - ret = i2c_smbus_read_word_data(data->client, TMP006_VOBJECT);
> > + ret = i2c_smbus_read_word_swapped(data->client, TMP006_VOBJECT);
>
> Sashiko has something to say:
>
> Does this code introduce a regression where sensor readings are corrupted for
> userspace clients reading from the triggered IIO buffer on Little Endian
> architectures?
>
> Before this patch, i2c_smbus_read_word_data() returned a byte-swapped word.
> When this was assigned to the s16 array in tmp006_trigger_handler() on a Little
> Endian CPU, the memory layout became [msb, lsb]. This implicitly matched the
> IIO_BE (Big Endian) endianness declared in the tmp006_channels array, so it
> worked correctly.
>
> By switching to i2c_smbus_read_word_swapped(), the value is now in native CPU
> endianness [lsb, msb]. However, the channel specification in tmp006_channels
> still specifies IIO_BE:
> drivers/iio/temperature/tmp006.c:tmp006_channels[] {
> ...
> .scan_type = {
> .endianness = IIO_BE,
> },
> ...
> }
>
> Because the ABI still advertises the data as Big Endian, userspace will parse
> the little-endian data as big-endian.
>
> Should the channel specification be updated from IIO_BE to IIO_CPU, or should
> scan.channels be declared as __be16 and populated using cpu_to_be16() to
> preserve the existing Big Endian ABI?
>
Nice catch for sashiko. It is absolutely correct. Thanks for
highlighting this one!
Jonathan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-13 22:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-07 8:22 [PATCH] iio: temperature: tmp006: Fix endianness byte swap in trigger handler Salah Triki
2026-09-07 14:47 ` Joshua Crofts
2026-09-13 22:07 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox