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/adc/lltc,ltc2497.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Linear Technology / Analog Devices LTC2497 ADC
0008 
0009 maintainers:
0010   - Michael Hennerich <michael.hennerich@analog.com>
0011 
0012 description: |
0013   16bit ADC supporting up to 16 single ended or 8 differential inputs.
0014   I2C interface.
0015 
0016 properties:
0017   compatible:
0018     const:
0019       lltc,ltc2497
0020 
0021   reg: true
0022   vref-supply: true
0023   "#io-channel-cells":
0024     const: 1
0025 
0026 required:
0027   - compatible
0028   - reg
0029   - vref-supply
0030 
0031 additionalProperties: false
0032 
0033 examples:
0034   - |
0035     i2c {
0036         #address-cells = <1>;
0037         #size-cells = <0>;
0038 
0039         adc@76 {
0040             compatible = "lltc,ltc2497";
0041             reg = <0x76>;
0042             vref-supply = <&ltc2497_reg>;
0043             #io-channel-cells = <1>;
0044         };
0045     };
0046 ...