Message ID | 20210901105911.178646-2-roan@protonic.nl (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | iio: chemical: Add support for Sensirion SCD4x CO2 sensor | expand |
On Wed, 01 Sep 2021 12:59:09 +0200, Roan van Dijk wrote: > Add documentation for the SCD4x carbon dioxide sensor from Sensirion. > > Signed-off-by: Roan van Dijk <roan@protonic.nl> > --- > .../iio/chemical/sensirion,scd4x.yaml | 46 +++++++++++++++++++ > 1 file changed, 46 insertions(+) > create mode 100644 Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml > Reviewed-by: Rob Herring <robh@kernel.org>
On 03-09-2021 21:51, Rob Herring wrote: > On Wed, 01 Sep 2021 12:59:09 +0200, Roan van Dijk wrote: >> Add documentation for the SCD4x carbon dioxide sensor from Sensirion. >> >> Signed-off-by: Roan van Dijk <roan@protonic.nl> >> --- >> .../iio/chemical/sensirion,scd4x.yaml | 46 +++++++++++++++++++ >> 1 file changed, 46 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml >> > Reviewed-by: Rob Herring <robh@kernel.org> Sorry, I forgot about this. It will be added to the next patch. Thanks, Roan
diff --git a/Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml b/Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml new file mode 100644 index 000000000000..798f48d05279 --- /dev/null +++ b/Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml @@ -0,0 +1,46 @@ +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/iio/chemical/sensirion,scd4x.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Sensirion SCD4X carbon dioxide sensor + +maintainers: + - Roan van Dijk <roan@protonic.nl> + +description: | + Air quality sensor capable of measuring co2 concentration, temperature + and relative humidity. + +properties: + compatible: + enum: + - sensirion,scd40 + - sensirion,scd41 + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + + vdd-supply: true + +required: + - compatible + - reg + +additionalProperties: false + +examples: + - | + i2c { + #address-cells = <1>; + #size-cells = <0>; + + co2-sensor@62 { + compatible = "sensirion,scd41"; + reg = <0x62>; + }; + };
Add documentation for the SCD4x carbon dioxide sensor from Sensirion. Signed-off-by: Roan van Dijk <roan@protonic.nl> --- .../iio/chemical/sensirion,scd4x.yaml | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml