From: Louis Adamian <adamianlouis@gmail.com>
To: "Jonathan Cameron" <jic23@kernel.org>,
"David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Louis Adamian" <adamianlouis@gmail.com>
Cc: linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH v3 3/5] dt-bindings: iio: pressure: Add MS5637
Date: Thu, 20 Aug 2026 10:12:18 -0400 [thread overview]
Message-ID: <20260820141224.23730-4-adamianlouis@gmail.com> (raw)
In-Reply-To: <20260820141224.23730-1-adamianlouis@gmail.com>
Create meas,ms5637 devicetree binding and move existing devices from
trivial-devices.yaml. Explicit compatible strings are added for the
different sub-variants because each requires different constants for the
second-order temperature compensation formulas. Previously, the driver
exposed the generic compatibles for the ms5637, MS5803, MS5805
and MS5837 families and applied the MS5637-02BA compensation to all of
them. To preserve the DT ABI the existing compatibles are retained and
mapped to the -02BA variant of each family (ms5637-02ba, ms5803-02ba,
ms5837-02ba).
Signed-off-by: Louis Adamian <adamianlouis@gmail.com>
---
.../bindings/iio/pressure/meas,ms5637.yaml | 93 +++++++++++++++++++
.../devicetree/bindings/trivial-devices.yaml | 10 --
2 files changed, 93 insertions(+), 10 deletions(-)
create mode 100644 Documentation/devicetree/bindings/iio/pressure/meas,ms5637.yaml
diff --git a/Documentation/devicetree/bindings/iio/pressure/meas,ms5637.yaml b/Documentation/devicetree/bindings/iio/pressure/meas,ms5637.yaml
new file mode 100644
index 000000000000..befd81d1907b
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/pressure/meas,ms5637.yaml
@@ -0,0 +1,93 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/iio/pressure/meas,ms5637.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+title: Measurement Specialties ms5637 and similar pressure sensors
+
+maintainers:
+ - Louis Adamian <adamianlouis@gmail.com>
+
+description:
+ Measurement Specialties pressure and temperature sensors. The MS5803
+ family supports both I2C and SPI interfaces. All other variants are I2C only.
+
+properties:
+ compatible:
+ oneOf:
+ - enum:
+ - meas,ms5637-02ba
+ - meas,ms5637-30ba
+ - meas,ms5803-01ba
+ - meas,ms5803-02ba
+ - meas,ms5803-05ba
+ - meas,ms5803-14ba
+ - meas,ms5803-30ba
+ - meas,ms5805
+ - meas,ms5837-02ba
+ - meas,ms5837-30ba
+ - meas,ms8607-temppressure
+ # These generic compatible strings do not identify the sub-variants of
+ # the part. They are retained so that existing device trees continue
+ # to bind, and each is treated as the -02BA variant of its family.
+ - enum:
+ - meas,ms5637
+ - meas,ms5803
+ - meas,ms5837
+ deprecated: true
+
+ reg:
+ maxItems: 1
+
+ vdd-supply:
+ description: Regulator that provides power to the sensor
+
+required:
+ - compatible
+ - reg
+ - vdd-supply
+
+allOf:
+ - if:
+ properties:
+ compatible:
+ contains:
+ enum:
+ - meas,ms5803
+ - meas,ms5803-01ba
+ - meas,ms5803-02ba
+ - meas,ms5803-05ba
+ - meas,ms5803-14ba
+ - meas,ms5803-30ba
+ then:
+ $ref: /schemas/spi/spi-peripheral-props.yaml#
+ properties:
+ spi-max-frequency:
+ maximum: 20000000
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ pressure@76 {
+ compatible = "meas,ms5637-02ba";
+ reg = <0x76>;
+ vdd-supply = <&vcc_3v3>;
+ };
+ };
+ - |
+ spi {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ pressure@0 {
+ compatible = "meas,ms5803-14ba";
+ reg = <0>;
+ vdd-supply = <&vcc_3v3>;
+ spi-max-frequency = <20000000>;
+ };
+ };
diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml
index 435c4baab436..2671040e8802 100644
--- a/Documentation/devicetree/bindings/trivial-devices.yaml
+++ b/Documentation/devicetree/bindings/trivial-devices.yaml
@@ -240,18 +240,8 @@ properties:
- meas,htu21
# Measurement Specialities I2C temperature and humidity sensor
- meas,htu31
- # Measurement Specialities I2C pressure and temperature sensor
- - meas,ms5637
- # Measurement Specialities I2C pressure and temperature sensor
- - meas,ms5803
- # Measurement Specialities I2C pressure and temperature sensor
- - meas,ms5805
- # Measurement Specialities I2C pressure and temperature sensor
- - meas,ms5837
# Measurement Specialities temp and humidity part of ms8607 device
- meas,ms8607-humidity
- # Measurement Specialities temp and pressure part of ms8607 device
- - meas,ms8607-temppressure
# Measurement Specialties temperature sensor
- meas,tsys01
# MEMSIC magnetometer
--
2.55.0
next prev parent reply other threads:[~2026-08-20 14:15 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260820141224.23730-1-adamianlouis@gmail.com>
2026-08-20 14:12 ` [PATCH v3 1/5] iio: pressure: ms5637: Add missing ms5803 I2C device ID Louis Adamian
2026-08-21 0:41 ` Jonathan Cameron
2026-08-20 14:12 ` [PATCH v3 2/5] iio: pressure: ms5637: Move device data struct to header Louis Adamian
2026-08-21 0:48 ` Jonathan Cameron
2026-08-20 14:12 ` Louis Adamian [this message]
2026-08-20 14:21 ` [PATCH v3 3/5] dt-bindings: iio: pressure: Add MS5637 sashiko-bot
2026-08-20 18:13 ` Conor Dooley
2026-08-20 14:12 ` [PATCH v3 4/5] iio: pressure: ms5637: Parameterise second order temperature compensation Louis Adamian
2026-08-20 14:12 ` [PATCH v3 5/5] iio: pressure: ms5637: Add per-variant compensation Louis Adamian
2026-08-21 1:01 ` Jonathan Cameron
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=20260820141224.23730-4-adamianlouis@gmail.com \
--to=adamianlouis@gmail.com \
--cc=andy@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=robh@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.