Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Lorenzo Bianconi <lorenzo@kernel.org>
Cc: "Francesco Lavra" <flavra@baylibre.com>,
	"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] iio: imu: st_lsm6dsx: Update enable mask when using sensor fusion
Date: Sun, 2 Aug 2026 02:49:35 +0100	[thread overview]
Message-ID: <20260802024935.2bf032c5@jic23-huawei> (raw)
In-Reply-To: <am0JPMfepRUkMNfy@lore-qca>

On Fri, 31 Jul 2026 22:44:44 +0200
Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> > The enable_mask struct member keeps track of which sensors are enabled in
> > the IMU. When enabling and disabling the sensor fusion functionality, the
> > driver does not properly update this struct member. This prevents a correct
> > calculation of the number of samples that should be read from the hardware
> > FIFO; as a result, reads from the FIFO can be unnecessarily split into
> > multiple transactions, some of which can read past the FIFO length.  
> 
> Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
> 
> > 
Applied to the testing branch of iio.git and marked for stable.

Going the slow way because Linus has requested only breakage from current cycle
or critical fixes take the fast path. So this will take a few weeks to make
it into stable trees.

Thanks

Jonathan

> > Fixes: cd4e1141bff8 ("iio: imu: st_lsm6dsx: Add support for rotation sensor")
> > Signed-off-by: Francesco Lavra <flavra@baylibre.com>
> > ---
> >  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> > 
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c
> > index 2e72c7ba94dd..5321033daebc 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c
> > @@ -112,6 +112,11 @@ int st_lsm6dsx_fusion_set_enable(struct st_lsm6dsx_sensor *sensor, bool enable)
> >  		return err;
> >  	}
> >  
> > +	if (enable)
> > +		hw->enable_mask |= BIT(ST_LSM6DSX_ID_FUSION);
> > +	else
> > +		hw->enable_mask &= ~BIT(ST_LSM6DSX_ID_FUSION);
> > +
> >  	return st_lsm6dsx_fusion_page_disable(hw);
> >  }
> >  
> > -- 
> > 2.39.5
> >   


      reply	other threads:[~2026-08-02  1:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-31 17:47 [PATCH] iio: imu: st_lsm6dsx: Update enable mask when using sensor fusion Francesco Lavra
2026-07-31 20:44 ` Lorenzo Bianconi
2026-08-02  1:49   ` 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=20260802024935.2bf032c5@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=andy@kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=flavra@baylibre.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lorenzo@kernel.org \
    --cc=nuno.sa@analog.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