[PATCH 1/2] dt-bindings: iio: pressure: add Sensirion SDP31

From: Muhammad Abu Bakar

Date: Sat Sep 19 2026 - 18:42:36 EST


Add device tree bindings for the Sensirion SDP31 differential pressure
sensor, an I2C device that also reports temperature.

Signed-off-by: Muhammad Abu Bakar <m.abubakar365@xxxxxxxxx>
---
.../iio/pressure/sensirion,sdp31.yaml | 40 +++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 Documentation/devicetree/bindings/iio/pressure/sensirion,sdp31.yaml

diff --git a/Documentation/devicetree/bindings/iio/pressure/sensirion,sdp31.yaml b/Documentation/devicetree/bindings/iio/pressure/sensirion,sdp31.yaml
new file mode 100644
index 000000000..fc646eca2
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/pressure/sensirion,sdp31.yaml
@@ -0,0 +1,40 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/iio/pressure/sensirion,sdp31.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Sensirion SDP31 differential pressure sensor
+
+maintainers:
+ - Muhammad Abu Bakar <m.abubakar365@xxxxxxxxx>
+
+description: |
+ Differential pressure sensor from Sensirion with an I2C interface.
+
+properties:
+ compatible:
+ const: sensirion,sdp31
+
+ reg:
+ maxItems: 1
+
+ vdd-supply: true
+
+required:
+ - compatible
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+ pressure@21 {
+ compatible = "sensirion,sdp31";
+ reg = <0x21>;
+ vdd-supply = <&vdd_3v3>;
+ };
+ };
--
2.43.0