15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
25def4c47SEmmanuel Vadot%YAML 1.2
35def4c47SEmmanuel Vadot---
45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/dac/ti,dac5571.yaml#
55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
65def4c47SEmmanuel Vadot
75def4c47SEmmanuel Vadottitle: Texas Instruments DAC5571 Family
85def4c47SEmmanuel Vadot
95def4c47SEmmanuel Vadotmaintainers:
105def4c47SEmmanuel Vadot  - Sean Nyekjaer <sean@geanix.com>
115def4c47SEmmanuel Vadot
125def4c47SEmmanuel Vadotproperties:
135def4c47SEmmanuel Vadot  compatible:
145def4c47SEmmanuel Vadot    enum:
155def4c47SEmmanuel Vadot      - ti,dac5571
165def4c47SEmmanuel Vadot      - ti,dac6571
175def4c47SEmmanuel Vadot      - ti,dac7571
185def4c47SEmmanuel Vadot      - ti,dac5574
195def4c47SEmmanuel Vadot      - ti,dac6574
205def4c47SEmmanuel Vadot      - ti,dac7574
215def4c47SEmmanuel Vadot      - ti,dac5573
225def4c47SEmmanuel Vadot      - ti,dac6573
235def4c47SEmmanuel Vadot      - ti,dac7573
24b97ee269SEmmanuel Vadot      - ti,dac121c081
255def4c47SEmmanuel Vadot
265def4c47SEmmanuel Vadot  reg:
275def4c47SEmmanuel Vadot    maxItems: 1
285def4c47SEmmanuel Vadot
295def4c47SEmmanuel Vadot  vref-supply:
305def4c47SEmmanuel Vadot    description:
315def4c47SEmmanuel Vadot      Reference voltage must be supplied to establish the scaling of the
325def4c47SEmmanuel Vadot      output voltage.
335def4c47SEmmanuel Vadot
345def4c47SEmmanuel Vadotrequired:
355def4c47SEmmanuel Vadot  - compatible
365def4c47SEmmanuel Vadot  - reg
375def4c47SEmmanuel Vadot  - vref-supply
385def4c47SEmmanuel Vadot
395def4c47SEmmanuel VadotadditionalProperties: false
405def4c47SEmmanuel Vadot
415def4c47SEmmanuel Vadotexamples:
425def4c47SEmmanuel Vadot  - |
435def4c47SEmmanuel Vadot    i2c {
445def4c47SEmmanuel Vadot        #address-cells = <1>;
455def4c47SEmmanuel Vadot        #size-cells = <0>;
465def4c47SEmmanuel Vadot
475def4c47SEmmanuel Vadot        dac@4c {
485def4c47SEmmanuel Vadot            compatible = "ti,dac5571";
49*cb7aa33aSEmmanuel Vadot            reg = <0x4c>;
505def4c47SEmmanuel Vadot            vref-supply = <&vdd_supply>;
515def4c47SEmmanuel Vadot        };
525def4c47SEmmanuel Vadot    };
535def4c47SEmmanuel Vadot...
54