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/adi,ad5624r.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Analog Devices AD5624r and similar DACs
0008 
0009 maintainers:
0010   - Jonathan Cameron <jic23@kernel.org>
0011 
0012 properties:
0013   compatible:
0014     enum:
0015       - adi,ad5624r3
0016       - adi,ad5644r3
0017       - adi,ad5664r3
0018       - adi,ad5624r5
0019       - adi,ad5644r5
0020       - adi,ad5664r5
0021 
0022   reg:
0023     maxItems: 1
0024 
0025   spi-max-frequency: true
0026 
0027   vref-supply:
0028     description: If not present, internal reference will be used.
0029 
0030 additionalProperties: false
0031 
0032 required:
0033   - compatible
0034   - reg
0035 
0036 examples:
0037   - |
0038     spi {
0039         #address-cells = <1>;
0040         #size-cells = <0>;
0041         dac@0 {
0042             reg = <0>;
0043             compatible = "adi,ad5624r3";
0044             vref-supply = <&vref>;
0045         };
0046     };
0047 ...