On Fri, 18 Oct 2024 13:42:09 +0300 Antoniu Miclaus <antoniu.miclaus@xxxxxxxxxx> wrote: > Add devicetree bindings for ad485x family. > > Reviewed-by: Conor Dooley <conor.dooley@xxxxxxxxxxxxx> > Signed-off-by: Antoniu Miclaus <antoniu.miclaus@xxxxxxxxxx> One question inline. > +examples: > + - | > + spi { > + #address-cells = <1>; > + #size-cells = <0>; > + > + adc@0{ > + compatible = "adi,ad4858"; > + reg = <0>; > + spi-max-frequency = <10000000>; > + vcc-supply = <&vcc>; > + vdd-supply = <&vdd>; > + vee-supply = <&vee>; > + vddh-supply = <&vddh>; > + vddl-supply = <&vddh>; I was curious what these supplies are giving h and l naming. Seems vddh is the supply for an LDO and vddhl is a way of supplying an alternative 1.8V to the output from that LDO. Superficially it looks like an either or situation. I'm not that worried if the binding enforces that detail though it would be nice to do so. However this example seems misleading as I don't think you would ever connect them to the same supply. > + vio-supply = <&vio>; > + pwms = <&pwm_gen 0 0>; > + io-backends = <&iio_backend>; > + }; > + }; > +...