public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Francesco Lavra <flavra@baylibre.com>
Cc: "David Lechner" <dlechner@baylibre.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Andy Shevchenko" <andy@kernel.org>,
	"Lorenzo Bianconi" <lorenzo@kernel.org>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v9 0/6] imu: st_lsm6dsx: Add support for rotation sensor
Date: Sun, 12 Apr 2026 16:29:25 +0100	[thread overview]
Message-ID: <20260412162925.4226ea26@jic23-huawei> (raw)
In-Reply-To: <20260324084655.653781-1-flavra@baylibre.com>

On Tue, 24 Mar 2026 09:46:55 +0100
Francesco Lavra <flavra@baylibre.com> wrote:

> This series adds support for the rotation sensor functionality present in
> some chips from the ST LSM6DSX IMU family.
> The IIO ABI has been amended to allow the use of floating-point data and
> a "quaternion axis" channel modifier in IIO buffers.
> 
> The use of the new modifier depends on [0] to get the correct sizing of the
> buffer in userspace.

Applied to the testing branch of iio.git with minor tweaks to fix up
that stray label in patch 6 and the code alignment suggestion Andy made
in patch 1.  Note this is next cycle material, so I'll be rebasing
the tree on rc1 once available and only then will it go out as togreg
and show up in linux-next.

Thanks,

Jonathan

> 
> Tested on LSM6DSV16X.
> 
> Changes from v8 [8]:
> - changed comments for IIO_SCAN_FORMAT_* macros to use proper kernel doc
>   format with one comment per macro (David)
> - in tools/iio, added error print if 1-byte floats are encountered and if
>   2-byte floats are encountered when unsupported (David)
> - in tools/iio, renamed signchar variable to formatchar (David)
> - added David's Reviewed-by tag to patch 5
> - in st_lsm6dsx_fusion.c, avoided mixing cleanup and gotos by adding a
>   helper function (Jonathan)
> - in st_lsm6dsx_fusion.c, removed leading double spaces in comment
>   (Jonathan)
> - in ST_LSM6DSX_CHANNEL_ROT macro, replaced literal 'f' with
>   IIO_SCAN_FORMAT_FLOAT
> 
> Changes from v7 [7]:
> - added Lorenzo's Acked-by tag to patch 1
> - in st_lsm6dsx_buffer.c, added st_lsm6dsx_check_data() helper function
>   (Lorenzo)
> - added definition of IIO_SCAN_FORMAT_* symbolic constants to restrict
>   flexibility of what can go in .format (Jonathan)
> - re-added @sign description in kernel.doc comment for
>   struct iio_scan_type, mentioning that @format should be used in new code
>   (Jonathan)
> - in tools/iio/iio_generic_buffer, replaced legacy __fp16 type with
>   standard-compliant _Float16 (David)
> - in tools/iio/iio_generic_buffer, added check for compiler support
>   (David), so that compilation does not fail with compilers that don't
>   support _Float16: tested with gcc for x86-64 (supported), for aarch64
>   (supported), for riscv-64 (not supported), clang for x86-64 (not
>   supported)
> - in tols/iio/iio_utils.h, replaced unsigned with char type for `format`
>   field in struct iio_channel_info (David)
> - renamed "partial quaternion" modifier to "quaternion axis"
> - moved new modifier value at the end of enum iio_modifier (David)
> - squashed the two words together in the modifier name (Jonathan)
> - in ABI doc for new modifier, fixed typo and angle units (David)
> - in ABI doc for new modifier, fixed kernel-doc warning (kernel test robot)
> - in st_lsm6dsx_fusion.c, added missing header includes (Andy)
> 
> Changes from v6 [6]:
> - dropped patches 1 and 2 (already picked up by Jonathan)
> - added floating-point support to iio-tools (Andy)
> - replaced `sign` field in struct iio_scan_type with union instead of
>   `format` field (David, Jonathan)
> - changed [s|u|f] to [f|s|u] in ABI and driver documentation files (Andy)
> - removed IIO_CUSTOM channel type in favor of IIO_MOD_PARTIAL_QUATERNION
>   modifier (David, Andy)
> - replaced "sf" with "fusion" in type, variable and function names (David)
> - added copyright statement in st_lsm6dsx_fusion.c (David)
> - added `ret` variable in st_lsm6dsx_fusion_probe() for better readability
>   (Andy)
> - modified data structure holding the list of available frequencies in
>   order to replace device attribute with .read_avail callback (David)
> 
> Changes from v5 [5]:
> - cleaned up FIFO data representation in st_lsm6dsx_read_tagged_fifo() to
>   avoid casting (Andy, Jonathan)
> - renamed 'sign' field to `format` in struct iio_scan_type
> - added support for IEEE 754 floating-point format in buffer scan elements
> - added custom data type in the ABI (IIO_CUSTOM in enum iio_chan_type)
>   (Jonathan)
> - added driver document in Documentation/iio/ (Jonathan)
> 
> Changes from v4 [4]:
> - changed data parameter in st_lsm6dsx_push_tagged_data() to __le16 *
>   (Andy)
> 
> Changes from v3 [3]:
> - added patch 3 (Andy)
> - removed unneeded checks for negative return values in st_lsm6dsx_fusion.c
>   (Andy)
> - replaced st_lsm6dsx_sf_set_page function with
>   st_lsm6dsx_sf_page_enable/disable (Andy)
> - used reversed xmas tree ordering for local variables (Andy)
> - added parentheses to MILLI / MICRO in st_lsm6dsx_sf_write_raw (Andy)
> - added check for string truncation in st_lsm6dsx_sf_probe (Andy)
> 
> Changes from v2 [2]:
> - amended description of patch 2 to point out that there are no supported
>   gyro events (Jonathan)
> - removed superfluous parentheses in st_lsm6dsx_fifo_setup (Lorenzo)
> - added Lorenzo's acked-by tag to patch 3
> - added missing checks of st_lsm6dsx_sf_set_page() return value (Jonathan)
> - added comment in st_lsm6dsx_sf_write_raw (Jonathan)
> 
> Changes from v1 [1]:
> - swapped patches 1 and 2 (Jonathan)
> - miscellaneous stylistic changes (Andy)
> - fixed usage of MICRO and MILLI constants in st_lsm6dsx_sf_read_raw and
>   st_lsm6dsx_sf_write_raw (Andy)
> - replaced scnprintf() with sysfs_emit_at() in
>   st_lsm6dsx_sf_sampling_freq_avail (Andy)
> - replaced scnprintf() with snprintf() in st_lsm6dsx_sf_probe (Andy)
> - clarified in a comment in st_lsm6dsx_set_fifo_odr() that only internal
>   sensors have a FIFO ODR configuration register (Jonathan)
> - modified patch 3 description to explain justification for the extra IIO
>   device (Jonathan)
> - moved page lock from st_lsm6dsx_sf_set_page() to the callers (Jonathan)
> - s/magnetometer/gyroscope/ in patch 2 description
> 
> [0]: https://lore.kernel.org/linux-iio/20260307-iio-fix-timestamp-alignment-v2-4-d1d48fbadbbf@baylibre.com/
> [1] https://lore.kernel.org/linux-iio/20260109181528.154127-1-flavra@baylibre.com/T/
> [2] https://lore.kernel.org/linux-iio/20260115122431.1014630-1-flavra@baylibre.com/T/
> [3] https://lore.kernel.org/linux-iio/20260119100449.1559624-1-flavra@baylibre.com/T/
> [4] https://lore.kernel.org/linux-iio/20260121112758.1831077-1-flavra@baylibre.com/T/
> [5] https://lore.kernel.org/linux-iio/20260122162335.2020006-1-flavra@baylibre.com/T/
> [6] https://lore.kernel.org/linux-iio/20260225100421.2366864-1-flavra@baylibre.com/T/
> [7] https://lore.kernel.org/linux-iio/20260304080519.2844101-1-flavra@baylibre.com/T/
> [8] https://lore.kernel.org/linux-iio/20260317150316.3878107-1-flavra@baylibre.com/T/
> 
> Francesco Lavra (6):
>   iio: imu: st_lsm6dsx: Fix check for invalid samples from FIFO
>   iio: Replace 'sign' field with union in struct iio_scan_type
>   iio: tools: Add support for floating-point types in buffer scan
>     elements
>   iio: ABI: Add support for floating-point numbers in buffer scan
>     elements
>   iio: ABI: Add quaternion axis modifier
>   iio: imu: st_lsm6dsx: Add support for rotation sensor
> 
>  Documentation/ABI/testing/sysfs-bus-iio       |  48 ++--
>  Documentation/driver-api/iio/buffers.rst      |   7 +-
>  Documentation/iio/iio_devbuf.rst              |   3 +-
>  drivers/iio/imu/st_lsm6dsx/Makefile           |   2 +-
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h       |  28 +-
>  .../iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c    |  40 ++-
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c  |  58 +++++
>  .../iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c    | 243 ++++++++++++++++++
>  drivers/iio/industrialio-core.c               |   1 +
>  include/linux/iio/iio.h                       |  30 ++-
>  include/uapi/linux/iio/types.h                |   1 +
>  tools/iio/iio_event_monitor.c                 |   1 +
>  tools/iio/iio_generic_buffer.c                |  70 ++++-
>  tools/iio/iio_utils.c                         |  12 +-
>  tools/iio/iio_utils.h                         |   4 +-
>  15 files changed, 495 insertions(+), 53 deletions(-)
>  create mode 100644 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_fusion.c
> 


      parent reply	other threads:[~2026-04-12 15:29 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-24  8:46 [PATCH v9 0/6] imu: st_lsm6dsx: Add support for rotation sensor Francesco Lavra
2026-03-24  8:47 ` [PATCH v9 1/6] iio: imu: st_lsm6dsx: Fix check for invalid samples from FIFO Francesco Lavra
2026-03-24 12:17   ` Andy Shevchenko
2026-03-25 19:55     ` Jonathan Cameron
2026-03-24  8:47 ` [PATCH v9 2/6] iio: Replace 'sign' field with union in struct iio_scan_type Francesco Lavra
2026-03-24  8:47 ` [PATCH v9 3/6] iio: tools: Add support for floating-point types in buffer scan elements Francesco Lavra
2026-03-24  8:47 ` [PATCH v9 4/6] iio: ABI: Add support for floating-point numbers " Francesco Lavra
2026-03-24  8:47 ` [PATCH v9 5/6] iio: ABI: Add quaternion axis modifier Francesco Lavra
2026-03-24  8:48 ` [PATCH v9 6/6] iio: imu: st_lsm6dsx: Add support for rotation sensor Francesco Lavra
2026-03-25 14:55   ` Jonathan Cameron
2026-03-25 20:08     ` Jonathan Cameron
2026-03-25 19:20   ` kernel test robot
2026-03-25 20:25   ` kernel test robot
2026-03-25 21:52   ` kernel test robot
2026-04-12 15:29 ` 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=20260412162925.4226ea26@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