On Sat, 2 Nov 2024 14:13:09 +0100 Vasileios Amoiridis <vassilisamir@xxxxxxxxx> wrote: > Extend dt-binding for BME680 gas sensor device. The device incorporates > as well temperature, pressure and relative humidity sensors. This description should make it clear it is moving from trivial-devices.yaml dt-bindings: iio: bosch,bme680: Move from trivial-bindings and add missing supplies. Then say a little more on why you are moving it. > > Signed-off-by: Vasileios Amoiridis <vassilisamir@xxxxxxxxx> There was an open question on the previous version about setting the supplies as required (which I see you've removed). My understanding previously was that it is fine to make that change in a binding if it reflects supplies that are required to be enabled for the device to function at all. If there were previously missing that's a binding bug we should fix. I'd like a clarification from the DT binding maintainers on that. Obviously doesn't work for other users of dt bindings but in Linux this would be fine as they were already on for any board that worked and the regulator framework will through us a fake regulator for cases like this. https://lore.kernel.org/all/20241022182451.00007ac0@xxxxxxxxxx/ Jonathan https://lore.kernel.org/all/20241022182451.00007ac0@xxxxxxxxxx/ > --- > .../bindings/iio/chemical/bosch,bme680.yaml | 62 +++++++++++++++++++ > .../devicetree/bindings/trivial-devices.yaml | 2 - > 2 files changed, 62 insertions(+), 2 deletions(-) > create mode 100644 Documentation/devicetree/bindings/iio/chemical/bosch,bme680.yaml > > diff --git a/Documentation/devicetree/bindings/iio/chemical/bosch,bme680.yaml b/Documentation/devicetree/bindings/iio/chemical/bosch,bme680.yaml > new file mode 100644 > index 000000000000..0eac22e465e7 > --- /dev/null > +++ b/Documentation/devicetree/bindings/iio/chemical/bosch,bme680.yaml > @@ -0,0 +1,62 @@ > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/iio/chemical/bosch,bme680.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Bosch BME680 Gas sensor > + > +maintainers: > + - Vasileios Amoiridis <vassilisamir@xxxxxxxxx> > + > +description: > > + BME680 is a gas sensor which combines relative humidity, barometric pressure, > + ambient temperature and gas (VOC - Volatile Organic Compounds) measurements. > + > + https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bme680-ds001.pdf > + > +properties: > + compatible: > + const: bosch,bme680 > + > + reg: > + maxItems: 1 > + > + vdd-supply: true > + vddio-supply: true > + > +required: > + - compatible > + - reg > + > +allOf: > + - $ref: /schemas/spi/spi-peripheral-props.yaml# > + > +unevaluatedProperties: false > + > +examples: > + - | > + i2c { > + #address-cells = <1>; > + #size-cells = <0>; > + > + bme680@77 { > + compatible = "bosch,bme680"; > + reg = <0x77>; > + vddio-supply = <&vddio>; > + vdd-supply = <&vdd>; > + }; > + }; > + - | > + spi { > + #address-cells = <1>; > + #size-cells = <0>; > + > + bme680@0 { > + compatible = "bosch,bme680"; > + reg = <0>; > + spi-max-frequency = <500000>; > + vddio-supply = <&vddio>; > + vdd-supply = <&vdd>; > + }; > + }; > diff --git a/Documentation/devicetree/bindings/trivial-devices.yaml b/Documentation/devicetree/bindings/trivial-devices.yaml > index 9bf0fb17a05e..b651826e2d21 100644 > --- a/Documentation/devicetree/bindings/trivial-devices.yaml > +++ b/Documentation/devicetree/bindings/trivial-devices.yaml > @@ -55,8 +55,6 @@ properties: > - atmel,atsha204a > # BPA-RS600: Power Supply > - blutek,bpa-rs600 > - # Bosch Sensortec pressure, temperature, humididty and VOC sensor > - - bosch,bme680 > # CM32181: Ambient Light Sensor > - capella,cm32181 > # CM3232: Ambient Light Sensor