Re: [PATCH v6 1/6] dt-bindings: iio: dac: ad5504: add output-range and missing gpios
David Lechner <[email protected]>
| Newsgroups | org.kernel.vger.linux-iio,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On 8/22/26 3:56 AM, Taha Ed-Dafili wrote: > The AD5504 output range (0-30V or 0-60V) is determined by the R_SEL pin. > > Use standard output-range-microvolt and range-sel-gpios properties to > describe the hardware configuration of the R_SEL pin. Ensure mutual > exclusivity using the not/required logic. Additionally, add missing > vlogic-supply, clr-gpios, ldac-gpios and datasheet links, and provide > a complete usage example. > > Signed-off-by: Taha Ed-Dafili <[email protected]> > Acked-by: Conor Dooley <[email protected]> > --- > .../bindings/iio/dac/adi,ad5504.yaml | 39 ++++++++++++++++++- > 1 file changed, 38 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/iio/dac/adi,ad5504.yaml b/Documentation/devicetree/bindings/iio/dac/adi,ad5504.yaml > index 9c2c038683b4..e0123dceaa33 100644 > --- a/Documentation/devicetree/bindings/iio/dac/adi,ad5504.yaml > +++ b/Documentation/devicetree/bindings/iio/dac/adi,ad5504.yaml > @@ -10,8 +10,10 @@ maintainers: > - Lars-Peter Clausen <[email protected]> > - Jonathan Cameron <[email protected]> > > -description: > +description: | > High voltage (up to 60V) DACs with temperature sensor alarm function > + https://www.analog.com/media/en/technical-documentation/data-sheets/ad5504.pdf > + https://www.analog.com/media/en/technical-documentation/data-sheets/ad5501.pdf > > properties: > compatible: > @@ -27,6 +29,29 @@ properties: > maxItems: 1 > > vcc-supply: true > + vlogic-supply: true > + > + output-range-microvolt: > + description: | > + Specify the channel output full scale range. The R_SEL pin > + determines if the range is 0-30V or 0-60V. > + items: > + - const: 0 > + - enum: [30000000, 60000000] > + default: [0, 60000000] > + > + range-sel-gpios: > + description: > + GPIO connected to the R_SEL pin to select the output voltage range. > + maxItems: 1 > + > + clr-gpios: This is one that is starting to emerge as a common name, so I would call it clear-gpios instead to match the same name on chips with a similar function. > + description: GPIO that controls the /CLR pin (active low). > + maxItems: 1 > + > + ldac-gpios: > + description: GPIO that controls the /LDAC pin (active low). > + maxItems: 1 > > additionalProperties: false > > @@ -34,9 +59,17 @@ required: > - compatible > - reg > > +allOf: > + - not: > + required: > + - range-sel-gpios > + - output-range-microvolt > + > examples: > - | > #include <dt-bindings/interrupt-controller/irq.h> > + #include <dt-bindings/gpio/gpio.h> > + > spi { > #address-cells = <1>; > #size-cells = <0>; > @@ -45,6 +78,10 @@ examples: > compatible = "adi,ad5504"; > vcc-supply = <&dac_vcc>; > interrupts = <55 IRQ_TYPE_EDGE_FALLING>; > + > + output-range-microvolt = <0 60000000>; > + clr-gpios = <&gpio 4 GPIO_ACTIVE_LOW>; > + ldac-gpios = <&gpio 5 GPIO_ACTIVE_LOW>; > }; > }; > ...