Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Salah Triki <salah.triki@gmail.com>
Cc: "David Lechner" <dlechner@baylibre.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Andy Shevchenko" <andy@kernel.org>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] iio: temperature: tsys01: fix broken PROM checksum validation
Date: Wed, 6 May 2026 17:32:19 +0100	[thread overview]
Message-ID: <20260506173219.18e7d1d1@jic23-huawei> (raw)
In-Reply-To: <20260505071025.69221-1-salah.triki@gmail.com>

On Tue,  5 May 2026 08:10:24 +0100
Salah Triki <salah.triki@gmail.com> wrote:

> The current implementation of tsys01_crc_valid() incorrectly sums the
> first word (n_prom[0]) repeatedly instead of iterating over the 8 words
> retrieved from the PROM. This leads to a checksum mismatch and probe
> failure on hardware.
> 
> According to the TSYS01 datasheet, the PROM consists of 8 words. A valid
> check must iterate through all 8 words to verify the integrity of the
> calibration data. The current driver only checks the first word 8 times.
> 
> Note: This fix was identified during a code audit and is based on
> datasheet specifications. It has not been tested on real hardware.
> 
> Fixes: 43e53407f680 ("Add tsys01 meas-spec driver support")
> Signed-off-by: Salah Triki <salah.triki@gmail.com>
Bit of a gamble without testing but seems correct to me so small
gamble. Even taken it slow path doesn't really guarantee anyone will
happen to test it - so...

Applied to the fixes-togreg branch of iio.git and marked for stable.
> ---
> Changes in v2:
>    - Update commit message to clarify that the fix is based on the
>      datasheet analysis.
>    - Add a note mentioning that it has not been tested on real hardware.
> 
>  drivers/iio/temperature/tsys01.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/temperature/tsys01.c b/drivers/iio/temperature/tsys01.c
> index 334bba6fdae6..104dd45598b0 100644
> --- a/drivers/iio/temperature/tsys01.c
> +++ b/drivers/iio/temperature/tsys01.c
> @@ -119,7 +119,7 @@ static bool tsys01_crc_valid(u16 *n_prom)
>  	u8 sum = 0;
>  
>  	for (cnt = 0; cnt < TSYS01_PROM_WORDS_NB; cnt++)
> -		sum += ((n_prom[0] >> 8) + (n_prom[0] & 0xFF));
> +		sum += ((n_prom[cnt] >> 8) + (n_prom[cnt] & 0xFF));
>  
>  	return (sum == 0);
>  }


      reply	other threads:[~2026-05-06 16:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-05  7:10 [PATCH v2] iio: temperature: tsys01: fix broken PROM checksum validation Salah Triki
2026-05-06 16:32 ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260506173219.18e7d1d1@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=andy@kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nuno.sa@analog.com \
    --cc=salah.triki@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox