0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/iio/adc/maxim,max1363.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Maxim MAX1363 and similar ADCs
0008
0009 maintainers:
0010 - Jonathan Cameron <jic23@kernel.org>
0011
0012 description: |
0013 Family of ADCs with i2c inteface, internal references and threshold
0014 monitoring.
0015
0016 properties:
0017 compatible:
0018 enum:
0019 - maxim,max1361
0020 - maxim,max1362
0021 - maxim,max1363
0022 - maxim,max1364
0023
0024 reg:
0025 maxItems: 1
0026
0027 vcc-supply: true
0028 vref-supply:
0029 description: Optional external reference. If not supplied, internal
0030 reference will be used.
0031
0032 interrupts:
0033 maxItems: 1
0034
0035 required:
0036 - compatible
0037 - reg
0038
0039 additionalProperties: false
0040
0041 examples:
0042 - |
0043 i2c {
0044 #address-cells = <1>;
0045 #size-cells = <0>;
0046
0047 adc@36 {
0048 compatible = "maxim,max1363";
0049 reg = <0x36>;
0050 };
0051 };
0052 ...