Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/dac/ti,dac5571.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Texas Instruments DAC5571 Family
0008 
0009 maintainers:
0010   - Sean Nyekjaer <sean@geanix.com>
0011 
0012 properties:
0013   compatible:
0014     enum:
0015       - ti,dac5571
0016       - ti,dac6571
0017       - ti,dac7571
0018       - ti,dac5574
0019       - ti,dac6574
0020       - ti,dac7574
0021       - ti,dac5573
0022       - ti,dac6573
0023       - ti,dac7573
0024       - ti,dac121c081
0025 
0026   reg:
0027     maxItems: 1
0028 
0029   vref-supply:
0030     description:
0031       Reference voltage must be supplied to establish the scaling of the
0032       output voltage.
0033 
0034 required:
0035   - compatible
0036   - reg
0037   - vref-supply
0038 
0039 additionalProperties: false
0040 
0041 examples:
0042   - |
0043     i2c {
0044         #address-cells = <1>;
0045         #size-cells = <0>;
0046 
0047         dac@4c {
0048             compatible = "ti,dac5571";
0049             reg = <0x4C>;
0050             vref-supply = <&vdd_supply>;
0051         };
0052     };
0053 ...