[PATCH v2 4/4] iio: imu: inv_icm42600: do not read FIFO count for watermark it
From: Jean-Baptiste Maneyrol via B4 Relay
Date: Mon Aug 24 2026 - 08:34:22 EST
From: Jean-Baptiste Maneyrol <jean-baptiste.maneyrol@xxxxxxx>
Optimize data reading for high frequencies by not reading FIFO
count in case of watermark interrupt.
We cannot already read more than watermark samples because of the
timestamping mechanism. It is required to not perturb the timing
between the watermark interrupts. Since we also know there is at
least watermark samples in the FIFO, let's just read these watermark
FIFO samples directly without reading FIFO count in this case.
Signed-off-by: Jean-Baptiste Maneyrol <jean-baptiste.maneyrol@xxxxxxx>
---
drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c | 33 ++++++++++------------
1 file changed, 15 insertions(+), 18 deletions(-)
diff --git a/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c b/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
index b1a43ca610c4..ded45dfe46a2 100644
--- a/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
+++ b/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
@@ -477,24 +477,21 @@ int inv_icm42600_buffer_fifo_read(struct inv_icm42600_state *st,
st->fifo.nb.accel = 0;
st->fifo.nb.total = 0;
- /* compute maximum FIFO read size (watermark for max = 0 interrupt case) */
- if (max == 0)
- max = st->fifo.watermark.value;
- max_count = max * INV_ICM42600_FIFO_2SENSORS_PACKET_SIZE;
-
- /* read FIFO count value */
- raw_fifo_count = (__be16 *)st->buffer;
- ret = regmap_bulk_read(st->map, INV_ICM42600_REG_FIFO_COUNT,
- raw_fifo_count, sizeof(*raw_fifo_count));
- if (ret)
- return ret;
- st->fifo.count = be16_to_cpup(raw_fifo_count);
-
- /* check and clamp FIFO count value */
- if (st->fifo.count == 0)
- return 0;
- if (st->fifo.count > max_count)
- st->fifo.count = max_count;
+ /* read watermark samples for interrupt case (max = 0) or read FIFO count */
+ if (max == 0) {
+ st->fifo.count = st->fifo.watermark.value *
+ INV_ICM42600_FIFO_2SENSORS_PACKET_SIZE;
+ } else {
+ raw_fifo_count = (__be16 *)st->buffer;
+ ret = regmap_bulk_read(st->map, INV_ICM42600_REG_FIFO_COUNT,
+ raw_fifo_count, sizeof(*raw_fifo_count));
+ if (ret)
+ return ret;
+ max_count = max * INV_ICM42600_FIFO_2SENSORS_PACKET_SIZE;
+ st->fifo.count = min(be16_to_cpup(raw_fifo_count), max_count);
+ if (st->fifo.count == 0)
+ return 0;
+ }
/* read all FIFO data in internal buffer */
ret = regmap_noinc_read(st->map, INV_ICM42600_REG_FIFO_DATA,
--
2.55.0