devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] add support for ASM330LHHXG1
@ 2024-01-24 10:52 Lorenzo Bianconi
  2024-01-24 10:52 ` [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1 Lorenzo Bianconi
  2024-01-24 10:52 ` [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1 Lorenzo Bianconi
  0 siblings, 2 replies; 8+ messages in thread
From: Lorenzo Bianconi @ 2024-01-24 10:52 UTC (permalink / raw)
  To: jic23
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

Add support for ASM330LHHXG1 IMU automotive mems sensor
https://www.st.com/resource/en/datasheet/asm330lhhxg1.pdf

Lorenzo Bianconi (2):
  iio: imu: st_lsm6dsx: add support to ASM330LHHXG1
  dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1

 .../bindings/iio/imu/st,lsm6dsx.yaml          |  3 ++
 drivers/iio/imu/st_lsm6dsx/Kconfig            |  4 +-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h       | 48 ++++++++++---------
 .../iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c    |  2 +-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c  |  6 ++-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c   |  5 ++
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c   |  5 ++
 7 files changed, 46 insertions(+), 27 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1
  2024-01-24 10:52 [PATCH 0/2] add support for ASM330LHHXG1 Lorenzo Bianconi
@ 2024-01-24 10:52 ` Lorenzo Bianconi
  2024-01-27 15:00   ` Jonathan Cameron
  2024-01-24 10:52 ` [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1 Lorenzo Bianconi
  1 sibling, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2024-01-24 10:52 UTC (permalink / raw)
  To: jic23
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

Add support to STM ASM330LHHXG1 (accelerometer and gyroscope) Mems
sensor.
The ASM330LHHXG1 sensor can use ASM330LHHX as fallback device since it
implements all the ASM330LHHXG1 features currently implemented in
st_lsm6dsx.

Link: https://www.st.com/resource/en/datasheet/asm330lhhxg1.pdf
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 drivers/iio/imu/st_lsm6dsx/Kconfig            |  4 +-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h       | 48 ++++++++++---------
 .../iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c    |  2 +-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c  |  6 ++-
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c   |  5 ++
 drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c   |  5 ++
 6 files changed, 43 insertions(+), 27 deletions(-)

diff --git a/drivers/iio/imu/st_lsm6dsx/Kconfig b/drivers/iio/imu/st_lsm6dsx/Kconfig
index 5865a295a4df..645039edd606 100644
--- a/drivers/iio/imu/st_lsm6dsx/Kconfig
+++ b/drivers/iio/imu/st_lsm6dsx/Kconfig
@@ -14,8 +14,8 @@ config IIO_ST_LSM6DSX
 	  sensor. Supported devices: lsm6ds3, lsm6ds3h, lsm6dsl, lsm6dsm,
 	  ism330dlc, lsm6dso, lsm6dsox, asm330lhh, asm330lhhx, lsm6dsr,
 	  lsm6ds3tr-c, ism330dhcx, lsm6dsrx, lsm6ds0, lsm6dsop, lsm6dstx,
-	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, lsm6dst
-	  and the accelerometer/gyroscope of lsm9ds1.
+	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, asm330lhhxg1,
+	  lsm6dst and the accelerometer/gyroscope of lsm9ds1.
 
 	  To compile this driver as a module, choose M here: the module
 	  will be called st_lsm6dsx.
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
index c19237717e81..78d12d3c2759 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
@@ -15,29 +15,30 @@
 #include <linux/iio/iio.h>
 #include <linux/regulator/consumer.h>
 
-#define ST_LSM6DS3_DEV_NAME	"lsm6ds3"
-#define ST_LSM6DS3H_DEV_NAME	"lsm6ds3h"
-#define ST_LSM6DSL_DEV_NAME	"lsm6dsl"
-#define ST_LSM6DSM_DEV_NAME	"lsm6dsm"
-#define ST_ISM330DLC_DEV_NAME	"ism330dlc"
-#define ST_LSM6DSO_DEV_NAME	"lsm6dso"
-#define ST_ASM330LHH_DEV_NAME	"asm330lhh"
-#define ST_LSM6DSOX_DEV_NAME	"lsm6dsox"
-#define ST_LSM6DSR_DEV_NAME	"lsm6dsr"
-#define ST_LSM6DS3TRC_DEV_NAME	"lsm6ds3tr-c"
-#define ST_ISM330DHCX_DEV_NAME	"ism330dhcx"
-#define ST_LSM9DS1_DEV_NAME	"lsm9ds1-imu"
-#define ST_LSM6DS0_DEV_NAME	"lsm6ds0"
-#define ST_LSM6DSRX_DEV_NAME	"lsm6dsrx"
-#define ST_LSM6DST_DEV_NAME	"lsm6dst"
-#define ST_LSM6DSOP_DEV_NAME	"lsm6dsop"
-#define ST_ASM330LHHX_DEV_NAME	"asm330lhhx"
-#define ST_LSM6DSTX_DEV_NAME	"lsm6dstx"
-#define ST_LSM6DSV_DEV_NAME	"lsm6dsv"
-#define ST_LSM6DSV16X_DEV_NAME	"lsm6dsv16x"
-#define ST_LSM6DSO16IS_DEV_NAME	"lsm6dso16is"
-#define ST_ISM330IS_DEV_NAME	"ism330is"
-#define ST_ASM330LHB_DEV_NAME	"asm330lhb"
+#define ST_LSM6DS3_DEV_NAME		"lsm6ds3"
+#define ST_LSM6DS3H_DEV_NAME		"lsm6ds3h"
+#define ST_LSM6DSL_DEV_NAME		"lsm6dsl"
+#define ST_LSM6DSM_DEV_NAME		"lsm6dsm"
+#define ST_ISM330DLC_DEV_NAME		"ism330dlc"
+#define ST_LSM6DSO_DEV_NAME		"lsm6dso"
+#define ST_ASM330LHH_DEV_NAME		"asm330lhh"
+#define ST_LSM6DSOX_DEV_NAME		"lsm6dsox"
+#define ST_LSM6DSR_DEV_NAME		"lsm6dsr"
+#define ST_LSM6DS3TRC_DEV_NAME		"lsm6ds3tr-c"
+#define ST_ISM330DHCX_DEV_NAME		"ism330dhcx"
+#define ST_LSM9DS1_DEV_NAME		"lsm9ds1-imu"
+#define ST_LSM6DS0_DEV_NAME		"lsm6ds0"
+#define ST_LSM6DSRX_DEV_NAME		"lsm6dsrx"
+#define ST_LSM6DST_DEV_NAME		"lsm6dst"
+#define ST_LSM6DSOP_DEV_NAME		"lsm6dsop"
+#define ST_ASM330LHHX_DEV_NAME		"asm330lhhx"
+#define ST_LSM6DSTX_DEV_NAME		"lsm6dstx"
+#define ST_LSM6DSV_DEV_NAME		"lsm6dsv"
+#define ST_LSM6DSV16X_DEV_NAME		"lsm6dsv16x"
+#define ST_LSM6DSO16IS_DEV_NAME		"lsm6dso16is"
+#define ST_ISM330IS_DEV_NAME		"ism330is"
+#define ST_ASM330LHB_DEV_NAME		"asm330lhb"
+#define ST_ASM330LHHXG1_DEV_NAME	"asm330lhhxg1"
 
 enum st_lsm6dsx_hw_id {
 	ST_LSM6DS3_ID = 1,
@@ -63,6 +64,7 @@ enum st_lsm6dsx_hw_id {
 	ST_LSM6DSO16IS_ID,
 	ST_ISM330IS_ID,
 	ST_ASM330LHB_ID,
+	ST_ASM330LHHXG1_ID,
 	ST_LSM6DSX_MAX_ID,
 };
 
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
index 066fe561c5e8..5d9539822ec6 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
@@ -15,7 +15,7 @@
  * value of the decimation factor and ODR set for each FIFO data set.
  *
  * LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/LSM6DSRX/ISM330DHCX/
- * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB:
+ * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB/ASM330LHHXG1:
  * The FIFO buffer can be configured to store data from gyroscope and
  * accelerometer. Each sample is queued with a tag (1B) indicating data
  * source (gyroscope, accelerometer, hw timer).
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
index b6e6b1df8a61..27ecf2a5d0bc 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
@@ -27,7 +27,7 @@
  *   - FIFO size: 4KB
  *
  * - LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/ISM330DHCX/LSM6DST/LSM6DSOP/
- *   LSM6DSTX/LSM6DSO16IS/ISM330IS:
+ *   LSM6DSTX/LSM6DSO16IS/ISM330IS/ASM330LHHXG1:
  *   - Accelerometer/Gyroscope supported ODR [Hz]: 12.5, 26, 52, 104, 208, 416,
  *     833
  *   - Accelerometer supported full-scale [g]: +-2/+-4/+-8/+-16
@@ -820,6 +820,10 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
 				.hw_id = ST_ASM330LHHX_ID,
 				.name = ST_ASM330LHHX_DEV_NAME,
 				.wai = 0x6b,
+			}, {
+				.hw_id = ST_ASM330LHHXG1_ID,
+				.name = ST_ASM330LHHXG1_DEV_NAME,
+				.wai = 0x6b,
 			}, {
 				.hw_id = ST_LSM6DSTX_ID,
 				.name = ST_LSM6DSTX_DEV_NAME,
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
index 911444ec57c0..cddf41cc0ca9 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
@@ -134,6 +134,10 @@ static const struct of_device_id st_lsm6dsx_i2c_of_match[] = {
 		.compatible = "st,asm330lhb",
 		.data = (void *)ST_ASM330LHB_ID,
 	},
+	{
+		.compatible = "st,asm330lhhxg1",
+		.data = (void *)ST_ASM330LHHXG1_ID,
+	},
 	{},
 };
 MODULE_DEVICE_TABLE(of, st_lsm6dsx_i2c_of_match);
@@ -168,6 +172,7 @@ static const struct i2c_device_id st_lsm6dsx_i2c_id_table[] = {
 	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
 	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
 	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
+	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
 	{},
 };
 MODULE_DEVICE_TABLE(i2c, st_lsm6dsx_i2c_id_table);
diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
index f56c170c41a9..c122c8831365 100644
--- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
+++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
@@ -129,6 +129,10 @@ static const struct of_device_id st_lsm6dsx_spi_of_match[] = {
 		.compatible = "st,asm330lhb",
 		.data = (void *)ST_ASM330LHB_ID,
 	},
+	{
+		.compatible = "st,asm330lhhxg1",
+		.data = (void *)ST_ASM330LHHXG1_ID,
+	},
 	{},
 };
 MODULE_DEVICE_TABLE(of, st_lsm6dsx_spi_of_match);
@@ -157,6 +161,7 @@ static const struct spi_device_id st_lsm6dsx_spi_id_table[] = {
 	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
 	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
 	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
+	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
 	{},
 };
 MODULE_DEVICE_TABLE(spi, st_lsm6dsx_spi_id_table);
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1
  2024-01-24 10:52 [PATCH 0/2] add support for ASM330LHHXG1 Lorenzo Bianconi
  2024-01-24 10:52 ` [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1 Lorenzo Bianconi
@ 2024-01-24 10:52 ` Lorenzo Bianconi
  2024-01-27 15:04   ` Jonathan Cameron
  1 sibling, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2024-01-24 10:52 UTC (permalink / raw)
  To: jic23
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

Add device bindings for asm330lhhxg1 IMU sensor.
Use asm330lhhx as fallback device for asm330lhhxg1 since it implements
all the features currently supported by asm330lhhxg1.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
---
 Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
index 28b667a9cb76..7ba3de66a2e1 100644
--- a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
+++ b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
@@ -49,6 +49,9 @@ properties:
       - items:
           - const: st,asm330lhb
           - const: st,asm330lhh
+      - items:
+          - const: st,asm330lhhxg1
+          - const: st,asm330lhhx
 
   reg:
     maxItems: 1
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1
  2024-01-24 10:52 ` [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1 Lorenzo Bianconi
@ 2024-01-27 15:00   ` Jonathan Cameron
  2024-01-28 10:38     ` Lorenzo Bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Cameron @ 2024-01-27 15:00 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

On Wed, 24 Jan 2024 11:52:33 +0100
Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> Add support to STM ASM330LHHXG1 (accelerometer and gyroscope) Mems
> sensor.
> The ASM330LHHXG1 sensor can use ASM330LHHX as fallback device since it
> implements all the ASM330LHHXG1 features currently implemented in
> st_lsm6dsx.
> 
> Link: https://www.st.com/resource/en/datasheet/asm330lhhxg1.pdf
Datasheet:
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>

Hi Lorenzo.

A few comments inline.  Mostly about make it less noisy to
add additional devices in future.

> ---
>  drivers/iio/imu/st_lsm6dsx/Kconfig            |  4 +-
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h       | 48 ++++++++++---------
>  .../iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c    |  2 +-
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c  |  6 ++-
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c   |  5 ++
>  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c   |  5 ++
>  6 files changed, 43 insertions(+), 27 deletions(-)
> 
> diff --git a/drivers/iio/imu/st_lsm6dsx/Kconfig b/drivers/iio/imu/st_lsm6dsx/Kconfig
> index 5865a295a4df..645039edd606 100644
> --- a/drivers/iio/imu/st_lsm6dsx/Kconfig
> +++ b/drivers/iio/imu/st_lsm6dsx/Kconfig
> @@ -14,8 +14,8 @@ config IIO_ST_LSM6DSX
>  	  sensor. Supported devices: lsm6ds3, lsm6ds3h, lsm6dsl, lsm6dsm,
>  	  ism330dlc, lsm6dso, lsm6dsox, asm330lhh, asm330lhhx, lsm6dsr,
>  	  lsm6ds3tr-c, ism330dhcx, lsm6dsrx, lsm6ds0, lsm6dsop, lsm6dstx,
> -	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, lsm6dst
> -	  and the accelerometer/gyroscope of lsm9ds1.
> +	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, asm330lhhxg1,
> +	  lsm6dst and the accelerometer/gyroscope of lsm9ds1.

I think it is worth a precursor to reformat this into a one entry per line
list so that changes become less noisy (and easier to deal with merge conflicts)
There are some examples of lists in drivers/hid/Kconfig and they look
find in menuconfig etc.

If I were not requesting other changes I'd have suggested this as a follow up
patch but given you are going to be respinning again, it would be neater
as a precursor!


>  
>  	  To compile this driver as a module, choose M here: the module
>  	  will be called st_lsm6dsx.
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> index c19237717e81..78d12d3c2759 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> @@ -15,29 +15,30 @@
>  #include <linux/iio/iio.h>
>  #include <linux/regulator/consumer.h>
>  
> -#define ST_LSM6DS3_DEV_NAME	"lsm6ds3"
> -#define ST_LSM6DS3H_DEV_NAME	"lsm6ds3h"
> -#define ST_LSM6DSL_DEV_NAME	"lsm6dsl"
> -#define ST_LSM6DSM_DEV_NAME	"lsm6dsm"
> -#define ST_ISM330DLC_DEV_NAME	"ism330dlc"
> -#define ST_LSM6DSO_DEV_NAME	"lsm6dso"
> -#define ST_ASM330LHH_DEV_NAME	"asm330lhh"
> -#define ST_LSM6DSOX_DEV_NAME	"lsm6dsox"
> -#define ST_LSM6DSR_DEV_NAME	"lsm6dsr"
> -#define ST_LSM6DS3TRC_DEV_NAME	"lsm6ds3tr-c"
> -#define ST_ISM330DHCX_DEV_NAME	"ism330dhcx"
> -#define ST_LSM9DS1_DEV_NAME	"lsm9ds1-imu"
> -#define ST_LSM6DS0_DEV_NAME	"lsm6ds0"
> -#define ST_LSM6DSRX_DEV_NAME	"lsm6dsrx"
> -#define ST_LSM6DST_DEV_NAME	"lsm6dst"
> -#define ST_LSM6DSOP_DEV_NAME	"lsm6dsop"
> -#define ST_ASM330LHHX_DEV_NAME	"asm330lhhx"
> -#define ST_LSM6DSTX_DEV_NAME	"lsm6dstx"
> -#define ST_LSM6DSV_DEV_NAME	"lsm6dsv"
> -#define ST_LSM6DSV16X_DEV_NAME	"lsm6dsv16x"
> -#define ST_LSM6DSO16IS_DEV_NAME	"lsm6dso16is"
> -#define ST_ISM330IS_DEV_NAME	"ism330is"
> -#define ST_ASM330LHB_DEV_NAME	"asm330lhb"
> +#define ST_LSM6DS3_DEV_NAME		"lsm6ds3"
> +#define ST_LSM6DS3H_DEV_NAME		"lsm6ds3h"
> +#define ST_LSM6DSL_DEV_NAME		"lsm6dsl"
> +#define ST_LSM6DSM_DEV_NAME		"lsm6dsm"
> +#define ST_ISM330DLC_DEV_NAME		"ism330dlc"
> +#define ST_LSM6DSO_DEV_NAME		"lsm6dso"
> +#define ST_ASM330LHH_DEV_NAME		"asm330lhh"
> +#define ST_LSM6DSOX_DEV_NAME		"lsm6dsox"
> +#define ST_LSM6DSR_DEV_NAME		"lsm6dsr"
> +#define ST_LSM6DS3TRC_DEV_NAME		"lsm6ds3tr-c"
> +#define ST_ISM330DHCX_DEV_NAME		"ism330dhcx"
> +#define ST_LSM9DS1_DEV_NAME		"lsm9ds1-imu"
> +#define ST_LSM6DS0_DEV_NAME		"lsm6ds0"
> +#define ST_LSM6DSRX_DEV_NAME		"lsm6dsrx"
> +#define ST_LSM6DST_DEV_NAME		"lsm6dst"
> +#define ST_LSM6DSOP_DEV_NAME		"lsm6dsop"
> +#define ST_ASM330LHHX_DEV_NAME		"asm330lhhx"
> +#define ST_LSM6DSTX_DEV_NAME		"lsm6dstx"
> +#define ST_LSM6DSV_DEV_NAME		"lsm6dsv"
> +#define ST_LSM6DSV16X_DEV_NAME		"lsm6dsv16x"
> +#define ST_LSM6DSO16IS_DEV_NAME		"lsm6dso16is"
> +#define ST_ISM330IS_DEV_NAME		"ism330is"
> +#define ST_ASM330LHB_DEV_NAME		"asm330lhb"
> +#define ST_ASM330LHHXG1_DEV_NAME	"asm330lhhxg1"

Too much noise. I don't care if they are all aligned the same.
If you really want to do this, break it out to a precursor patch.
I'd just have one entry with a different indent :)


>  
>  enum st_lsm6dsx_hw_id {
>  	ST_LSM6DS3_ID = 1,
> @@ -63,6 +64,7 @@ enum st_lsm6dsx_hw_id {
>  	ST_LSM6DSO16IS_ID,
>  	ST_ISM330IS_ID,
>  	ST_ASM330LHB_ID,
> +	ST_ASM330LHHXG1_ID,
>  	ST_LSM6DSX_MAX_ID,
>  };
>  
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> index 066fe561c5e8..5d9539822ec6 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> @@ -15,7 +15,7 @@
>   * value of the decimation factor and ODR set for each FIFO data set.
>   *
>   * LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/LSM6DSRX/ISM330DHCX/
> - * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB:
> + * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB/ASM330LHHXG1:

A list here as well would help.

>   * The FIFO buffer can be configured to store data from gyroscope and
>   * accelerometer. Each sample is queued with a tag (1B) indicating data
>   * source (gyroscope, accelerometer, hw timer).
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> index b6e6b1df8a61..27ecf2a5d0bc 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> @@ -27,7 +27,7 @@
>   *   - FIFO size: 4KB
>   *
>   * - LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/ISM330DHCX/LSM6DST/LSM6DSOP/
> - *   LSM6DSTX/LSM6DSO16IS/ISM330IS:
> + *   LSM6DSTX/LSM6DSO16IS/ISM330IS/ASM330LHHXG1:

Another place where reformatting as a list would make adding new entries less noisy
+ whilst doing that, please fix the ordering to be alphabetical.

>   *   - Accelerometer/Gyroscope supported ODR [Hz]: 12.5, 26, 52, 104, 208, 416,
>   *     833
>   *   - Accelerometer supported full-scale [g]: +-2/+-4/+-8/+-16
> @@ -820,6 +820,10 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
>  				.hw_id = ST_ASM330LHHX_ID,
>  				.name = ST_ASM330LHHX_DEV_NAME,
>  				.wai = 0x6b,
> +			}, {
> +				.hw_id = ST_ASM330LHHXG1_ID,
> +				.name = ST_ASM330LHHXG1_DEV_NAME,
> +				.wai = 0x6b,
>  			}, {
>  				.hw_id = ST_LSM6DSTX_ID,
>  				.name = ST_LSM6DSTX_DEV_NAME,
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> index 911444ec57c0..cddf41cc0ca9 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> @@ -134,6 +134,10 @@ static const struct of_device_id st_lsm6dsx_i2c_of_match[] = {
>  		.compatible = "st,asm330lhb",
>  		.data = (void *)ST_ASM330LHB_ID,
>  	},
> +	{
> +		.compatible = "st,asm330lhhxg1",
> +		.data = (void *)ST_ASM330LHHXG1_ID,
> +	},
>  	{},
>  };
>  MODULE_DEVICE_TABLE(of, st_lsm6dsx_i2c_of_match);
> @@ -168,6 +172,7 @@ static const struct i2c_device_id st_lsm6dsx_i2c_id_table[] = {
>  	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
>  	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
>  	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
> +	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
>  	{},
>  };
>  MODULE_DEVICE_TABLE(i2c, st_lsm6dsx_i2c_id_table);
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> index f56c170c41a9..c122c8831365 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> @@ -129,6 +129,10 @@ static const struct of_device_id st_lsm6dsx_spi_of_match[] = {
>  		.compatible = "st,asm330lhb",
>  		.data = (void *)ST_ASM330LHB_ID,
>  	},
> +	{
> +		.compatible = "st,asm330lhhxg1",
> +		.data = (void *)ST_ASM330LHHXG1_ID,
> +	},
>  	{},
>  };
>  MODULE_DEVICE_TABLE(of, st_lsm6dsx_spi_of_match);
> @@ -157,6 +161,7 @@ static const struct spi_device_id st_lsm6dsx_spi_id_table[] = {
>  	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
>  	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
>  	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
> +	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
>  	{},
>  };
>  MODULE_DEVICE_TABLE(spi, st_lsm6dsx_spi_id_table);


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1
  2024-01-24 10:52 ` [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1 Lorenzo Bianconi
@ 2024-01-27 15:04   ` Jonathan Cameron
  2024-01-28 10:35     ` Lorenzo Bianconi
  0 siblings, 1 reply; 8+ messages in thread
From: Jonathan Cameron @ 2024-01-27 15:04 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

On Wed, 24 Jan 2024 11:52:34 +0100
Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> Add device bindings for asm330lhhxg1 IMU sensor.
> Use asm330lhhx as fallback device for asm330lhhxg1 since it implements
> all the features currently supported by asm330lhhxg1.

Can we clarify if the hardware of the asm330lhhxg1 supports
1) Exactly the same features as the asm330lhhx
   (Valid use for a fallback compatible, because we might find
    bugs etc in future).
2) More features, but the asm330lhhx features set is a subset.
   (Most valid use for a fallback compatible)
3) Different features from the asm330llhhx but driver only supports
   a set both support? (this is a problem)

I 'think' it is 2 from your text, but I'm not 100% sure I've understood
correctly.
> 
> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> ---
>  Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> index 28b667a9cb76..7ba3de66a2e1 100644
> --- a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> +++ b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> @@ -49,6 +49,9 @@ properties:
>        - items:
>            - const: st,asm330lhb
>            - const: st,asm330lhh
> +      - items:
> +          - const: st,asm330lhhxg1
> +          - const: st,asm330lhhx
>  
>    reg:
>      maxItems: 1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1
  2024-01-27 15:04   ` Jonathan Cameron
@ 2024-01-28 10:35     ` Lorenzo Bianconi
  2024-01-28 13:38       ` Jonathan Cameron
  0 siblings, 1 reply; 8+ messages in thread
From: Lorenzo Bianconi @ 2024-01-28 10:35 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt, mario.tesi, armando.visconti

[-- Attachment #1: Type: text/plain, Size: 1801 bytes --]

> On Wed, 24 Jan 2024 11:52:34 +0100
> Lorenzo Bianconi <lorenzo@kernel.org> wrote:
> 
> > Add device bindings for asm330lhhxg1 IMU sensor.
> > Use asm330lhhx as fallback device for asm330lhhxg1 since it implements
> > all the features currently supported by asm330lhhxg1.
> 
> Can we clarify if the hardware of the asm330lhhxg1 supports
> 1) Exactly the same features as the asm330lhhx
>    (Valid use for a fallback compatible, because we might find
>     bugs etc in future).
> 2) More features, but the asm330lhhx features set is a subset.
>    (Most valid use for a fallback compatible)

Hi Jonathan,

afaik asm330lhhx supports a subset of asm330lhhxg1 features (adding st folks in
cc for some clarification here) but they are not implemented in st_lsm6dsx.

Regards,
Lorenzo

> 3) Different features from the asm330llhhx but driver only supports
>    a set both support? (this is a problem)
> 
> I 'think' it is 2 from your text, but I'm not 100% sure I've understood
> correctly.
> > 
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > ---
> >  Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > index 28b667a9cb76..7ba3de66a2e1 100644
> > --- a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > +++ b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > @@ -49,6 +49,9 @@ properties:
> >        - items:
> >            - const: st,asm330lhb
> >            - const: st,asm330lhh
> > +      - items:
> > +          - const: st,asm330lhhxg1
> > +          - const: st,asm330lhhx
> >  
> >    reg:
> >      maxItems: 1
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1
  2024-01-27 15:00   ` Jonathan Cameron
@ 2024-01-28 10:38     ` Lorenzo Bianconi
  0 siblings, 0 replies; 8+ messages in thread
From: Lorenzo Bianconi @ 2024-01-28 10:38 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt

[-- Attachment #1: Type: text/plain, Size: 9647 bytes --]

> On Wed, 24 Jan 2024 11:52:33 +0100
> Lorenzo Bianconi <lorenzo@kernel.org> wrote:
> 
> > Add support to STM ASM330LHHXG1 (accelerometer and gyroscope) Mems
> > sensor.
> > The ASM330LHHXG1 sensor can use ASM330LHHX as fallback device since it
> > implements all the ASM330LHHXG1 features currently implemented in
> > st_lsm6dsx.
> > 
> > Link: https://www.st.com/resource/en/datasheet/asm330lhhxg1.pdf
> Datasheet:
> > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> 
> Hi Lorenzo.
> 
> A few comments inline.  Mostly about make it less noisy to
> add additional devices in future.
> 
> > ---
> >  drivers/iio/imu/st_lsm6dsx/Kconfig            |  4 +-
> >  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h       | 48 ++++++++++---------
> >  .../iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c    |  2 +-
> >  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c  |  6 ++-
> >  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c   |  5 ++
> >  drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c   |  5 ++
> >  6 files changed, 43 insertions(+), 27 deletions(-)
> > 
> > diff --git a/drivers/iio/imu/st_lsm6dsx/Kconfig b/drivers/iio/imu/st_lsm6dsx/Kconfig
> > index 5865a295a4df..645039edd606 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/Kconfig
> > +++ b/drivers/iio/imu/st_lsm6dsx/Kconfig
> > @@ -14,8 +14,8 @@ config IIO_ST_LSM6DSX
> >  	  sensor. Supported devices: lsm6ds3, lsm6ds3h, lsm6dsl, lsm6dsm,
> >  	  ism330dlc, lsm6dso, lsm6dsox, asm330lhh, asm330lhhx, lsm6dsr,
> >  	  lsm6ds3tr-c, ism330dhcx, lsm6dsrx, lsm6ds0, lsm6dsop, lsm6dstx,
> > -	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, lsm6dst
> > -	  and the accelerometer/gyroscope of lsm9ds1.
> > +	  lsm6dsv, lsm6dsv16x, lsm6dso16is, ism330is, asm330lhb, asm330lhhxg1,
> > +	  lsm6dst and the accelerometer/gyroscope of lsm9ds1.
> 
> I think it is worth a precursor to reformat this into a one entry per line
> list so that changes become less noisy (and easier to deal with merge conflicts)
> There are some examples of lists in drivers/hid/Kconfig and they look
> find in menuconfig etc.
> 
> If I were not requesting other changes I'd have suggested this as a follow up
> patch but given you are going to be respinning again, it would be neater
> as a precursor!

ack, I will fix it in v2.

> 
> 
> >  
> >  	  To compile this driver as a module, choose M here: the module
> >  	  will be called st_lsm6dsx.
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> > index c19237717e81..78d12d3c2759 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> > @@ -15,29 +15,30 @@
> >  #include <linux/iio/iio.h>
> >  #include <linux/regulator/consumer.h>
> >  
> > -#define ST_LSM6DS3_DEV_NAME	"lsm6ds3"
> > -#define ST_LSM6DS3H_DEV_NAME	"lsm6ds3h"
> > -#define ST_LSM6DSL_DEV_NAME	"lsm6dsl"
> > -#define ST_LSM6DSM_DEV_NAME	"lsm6dsm"
> > -#define ST_ISM330DLC_DEV_NAME	"ism330dlc"
> > -#define ST_LSM6DSO_DEV_NAME	"lsm6dso"
> > -#define ST_ASM330LHH_DEV_NAME	"asm330lhh"
> > -#define ST_LSM6DSOX_DEV_NAME	"lsm6dsox"
> > -#define ST_LSM6DSR_DEV_NAME	"lsm6dsr"
> > -#define ST_LSM6DS3TRC_DEV_NAME	"lsm6ds3tr-c"
> > -#define ST_ISM330DHCX_DEV_NAME	"ism330dhcx"
> > -#define ST_LSM9DS1_DEV_NAME	"lsm9ds1-imu"
> > -#define ST_LSM6DS0_DEV_NAME	"lsm6ds0"
> > -#define ST_LSM6DSRX_DEV_NAME	"lsm6dsrx"
> > -#define ST_LSM6DST_DEV_NAME	"lsm6dst"
> > -#define ST_LSM6DSOP_DEV_NAME	"lsm6dsop"
> > -#define ST_ASM330LHHX_DEV_NAME	"asm330lhhx"
> > -#define ST_LSM6DSTX_DEV_NAME	"lsm6dstx"
> > -#define ST_LSM6DSV_DEV_NAME	"lsm6dsv"
> > -#define ST_LSM6DSV16X_DEV_NAME	"lsm6dsv16x"
> > -#define ST_LSM6DSO16IS_DEV_NAME	"lsm6dso16is"
> > -#define ST_ISM330IS_DEV_NAME	"ism330is"
> > -#define ST_ASM330LHB_DEV_NAME	"asm330lhb"
> > +#define ST_LSM6DS3_DEV_NAME		"lsm6ds3"
> > +#define ST_LSM6DS3H_DEV_NAME		"lsm6ds3h"
> > +#define ST_LSM6DSL_DEV_NAME		"lsm6dsl"
> > +#define ST_LSM6DSM_DEV_NAME		"lsm6dsm"
> > +#define ST_ISM330DLC_DEV_NAME		"ism330dlc"
> > +#define ST_LSM6DSO_DEV_NAME		"lsm6dso"
> > +#define ST_ASM330LHH_DEV_NAME		"asm330lhh"
> > +#define ST_LSM6DSOX_DEV_NAME		"lsm6dsox"
> > +#define ST_LSM6DSR_DEV_NAME		"lsm6dsr"
> > +#define ST_LSM6DS3TRC_DEV_NAME		"lsm6ds3tr-c"
> > +#define ST_ISM330DHCX_DEV_NAME		"ism330dhcx"
> > +#define ST_LSM9DS1_DEV_NAME		"lsm9ds1-imu"
> > +#define ST_LSM6DS0_DEV_NAME		"lsm6ds0"
> > +#define ST_LSM6DSRX_DEV_NAME		"lsm6dsrx"
> > +#define ST_LSM6DST_DEV_NAME		"lsm6dst"
> > +#define ST_LSM6DSOP_DEV_NAME		"lsm6dsop"
> > +#define ST_ASM330LHHX_DEV_NAME		"asm330lhhx"
> > +#define ST_LSM6DSTX_DEV_NAME		"lsm6dstx"
> > +#define ST_LSM6DSV_DEV_NAME		"lsm6dsv"
> > +#define ST_LSM6DSV16X_DEV_NAME		"lsm6dsv16x"
> > +#define ST_LSM6DSO16IS_DEV_NAME		"lsm6dso16is"
> > +#define ST_ISM330IS_DEV_NAME		"ism330is"
> > +#define ST_ASM330LHB_DEV_NAME		"asm330lhb"
> > +#define ST_ASM330LHHXG1_DEV_NAME	"asm330lhhxg1"
> 
> Too much noise. I don't care if they are all aligned the same.
> If you really want to do this, break it out to a precursor patch.
> I'd just have one entry with a different indent :)

ack, I will fix it in v2.
> 
> 
> >  
> >  enum st_lsm6dsx_hw_id {
> >  	ST_LSM6DS3_ID = 1,
> > @@ -63,6 +64,7 @@ enum st_lsm6dsx_hw_id {
> >  	ST_LSM6DSO16IS_ID,
> >  	ST_ISM330IS_ID,
> >  	ST_ASM330LHB_ID,
> > +	ST_ASM330LHHXG1_ID,
> >  	ST_LSM6DSX_MAX_ID,
> >  };
> >  
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> > index 066fe561c5e8..5d9539822ec6 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
> > @@ -15,7 +15,7 @@
> >   * value of the decimation factor and ODR set for each FIFO data set.
> >   *
> >   * LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/LSM6DSRX/ISM330DHCX/
> > - * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB:
> > + * LSM6DST/LSM6DSOP/LSM6DSTX/LSM6DSV/ASM330LHB/ASM330LHHXG1:
> 
> A list here as well would help.

ack, I will fix it in v2.

> 
> >   * The FIFO buffer can be configured to store data from gyroscope and
> >   * accelerometer. Each sample is queued with a tag (1B) indicating data
> >   * source (gyroscope, accelerometer, hw timer).
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> > index b6e6b1df8a61..27ecf2a5d0bc 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> > @@ -27,7 +27,7 @@
> >   *   - FIFO size: 4KB
> >   *
> >   * - LSM6DSO/LSM6DSOX/ASM330LHH/ASM330LHHX/LSM6DSR/ISM330DHCX/LSM6DST/LSM6DSOP/
> > - *   LSM6DSTX/LSM6DSO16IS/ISM330IS:
> > + *   LSM6DSTX/LSM6DSO16IS/ISM330IS/ASM330LHHXG1:
> 
> Another place where reformatting as a list would make adding new entries less noisy
> + whilst doing that, please fix the ordering to be alphabetical.

ack, I will fix it in v2.

Regards,
Lorenzo

> 
> >   *   - Accelerometer/Gyroscope supported ODR [Hz]: 12.5, 26, 52, 104, 208, 416,
> >   *     833
> >   *   - Accelerometer supported full-scale [g]: +-2/+-4/+-8/+-16
> > @@ -820,6 +820,10 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
> >  				.hw_id = ST_ASM330LHHX_ID,
> >  				.name = ST_ASM330LHHX_DEV_NAME,
> >  				.wai = 0x6b,
> > +			}, {
> > +				.hw_id = ST_ASM330LHHXG1_ID,
> > +				.name = ST_ASM330LHHXG1_DEV_NAME,
> > +				.wai = 0x6b,
> >  			}, {
> >  				.hw_id = ST_LSM6DSTX_ID,
> >  				.name = ST_LSM6DSTX_DEV_NAME,
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> > index 911444ec57c0..cddf41cc0ca9 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.c
> > @@ -134,6 +134,10 @@ static const struct of_device_id st_lsm6dsx_i2c_of_match[] = {
> >  		.compatible = "st,asm330lhb",
> >  		.data = (void *)ST_ASM330LHB_ID,
> >  	},
> > +	{
> > +		.compatible = "st,asm330lhhxg1",
> > +		.data = (void *)ST_ASM330LHHXG1_ID,
> > +	},
> >  	{},
> >  };
> >  MODULE_DEVICE_TABLE(of, st_lsm6dsx_i2c_of_match);
> > @@ -168,6 +172,7 @@ static const struct i2c_device_id st_lsm6dsx_i2c_id_table[] = {
> >  	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
> >  	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
> >  	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
> > +	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
> >  	{},
> >  };
> >  MODULE_DEVICE_TABLE(i2c, st_lsm6dsx_i2c_id_table);
> > diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > index f56c170c41a9..c122c8831365 100644
> > --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.c
> > @@ -129,6 +129,10 @@ static const struct of_device_id st_lsm6dsx_spi_of_match[] = {
> >  		.compatible = "st,asm330lhb",
> >  		.data = (void *)ST_ASM330LHB_ID,
> >  	},
> > +	{
> > +		.compatible = "st,asm330lhhxg1",
> > +		.data = (void *)ST_ASM330LHHXG1_ID,
> > +	},
> >  	{},
> >  };
> >  MODULE_DEVICE_TABLE(of, st_lsm6dsx_spi_of_match);
> > @@ -157,6 +161,7 @@ static const struct spi_device_id st_lsm6dsx_spi_id_table[] = {
> >  	{ ST_LSM6DSO16IS_DEV_NAME, ST_LSM6DSO16IS_ID },
> >  	{ ST_ISM330IS_DEV_NAME, ST_ISM330IS_ID },
> >  	{ ST_ASM330LHB_DEV_NAME, ST_ASM330LHB_ID },
> > +	{ ST_ASM330LHHXG1_DEV_NAME, ST_ASM330LHHXG1_ID },
> >  	{},
> >  };
> >  MODULE_DEVICE_TABLE(spi, st_lsm6dsx_spi_id_table);
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1
  2024-01-28 10:35     ` Lorenzo Bianconi
@ 2024-01-28 13:38       ` Jonathan Cameron
  0 siblings, 0 replies; 8+ messages in thread
From: Jonathan Cameron @ 2024-01-28 13:38 UTC (permalink / raw)
  To: Lorenzo Bianconi
  Cc: linux-iio, lorenzo.bianconi, devicetree, robh+dt,
	krzysztof.kozlowski+dt, mario.tesi, armando.visconti

On Sun, 28 Jan 2024 11:35:23 +0100
Lorenzo Bianconi <lorenzo@kernel.org> wrote:

> > On Wed, 24 Jan 2024 11:52:34 +0100
> > Lorenzo Bianconi <lorenzo@kernel.org> wrote:
> >   
> > > Add device bindings for asm330lhhxg1 IMU sensor.
> > > Use asm330lhhx as fallback device for asm330lhhxg1 since it implements
> > > all the features currently supported by asm330lhhxg1.  
> > 
> > Can we clarify if the hardware of the asm330lhhxg1 supports
> > 1) Exactly the same features as the asm330lhhx
> >    (Valid use for a fallback compatible, because we might find
> >     bugs etc in future).
> > 2) More features, but the asm330lhhx features set is a subset.
> >    (Most valid use for a fallback compatible)  
> 
> Hi Jonathan,
> 
> afaik asm330lhhx supports a subset of asm330lhhxg1 features (adding st folks in
> cc for some clarification here) but they are not implemented in st_lsm6dsx.

Great.  State that a little more clearly in the patch description for
v2 please.

Thanks,

Jonathan

> 
> Regards,
> Lorenzo
> 
> > 3) Different features from the asm330llhhx but driver only supports
> >    a set both support? (this is a problem)
> > 
> > I 'think' it is 2 from your text, but I'm not 100% sure I've understood
> > correctly.  
> > > 
> > > Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
> > > ---
> > >  Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml | 3 +++
> > >  1 file changed, 3 insertions(+)
> > > 
> > > diff --git a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > > index 28b667a9cb76..7ba3de66a2e1 100644
> > > --- a/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > > +++ b/Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
> > > @@ -49,6 +49,9 @@ properties:
> > >        - items:
> > >            - const: st,asm330lhb
> > >            - const: st,asm330lhh
> > > +      - items:
> > > +          - const: st,asm330lhhxg1
> > > +          - const: st,asm330lhhx
> > >  
> > >    reg:
> > >      maxItems: 1  
> >   


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-01-28 13:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-24 10:52 [PATCH 0/2] add support for ASM330LHHXG1 Lorenzo Bianconi
2024-01-24 10:52 ` [PATCH 1/2] iio: imu: st_lsm6dsx: add support to ASM330LHHXG1 Lorenzo Bianconi
2024-01-27 15:00   ` Jonathan Cameron
2024-01-28 10:38     ` Lorenzo Bianconi
2024-01-24 10:52 ` [PATCH 2/2] dt-bindings: iio: imu: st_lsm6dsx: add asm330lhhxg1 Lorenzo Bianconi
2024-01-27 15:04   ` Jonathan Cameron
2024-01-28 10:35     ` Lorenzo Bianconi
2024-01-28 13:38       ` Jonathan Cameron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).