brintos

brintos / linux-shallow public Read only

0
0
Text · 1.5 KiB · 60d7b34 Raw
79 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/adc/maxim,max1238.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim MAX1238 and similar ADCs8 9maintainers:10  - Jonathan Cameron <jic23@kernel.org>11 12description: |13  Family of simple ADCs with i2c interface and internal references.14 15properties:16  compatible:17    enum:18      - maxim,max103619      - maxim,max103720      - maxim,max103821      - maxim,max103922      - maxim,max113623      - maxim,max113724      - maxim,max113825      - maxim,max113926      - maxim,max123627      - maxim,max123728      - maxim,max123829      - maxim,max123930      - maxim,max1160031      - maxim,max1160132      - maxim,max1160233      - maxim,max1160334      - maxim,max1160435      - maxim,max1160536      - maxim,max1160637      - maxim,max1160738      - maxim,max1160839      - maxim,max1160940      - maxim,max1161041      - maxim,max1161142      - maxim,max1161243      - maxim,max1161344      - maxim,max1161445      - maxim,max1161546      - maxim,max1161647      - maxim,max1161748      - maxim,max1164449      - maxim,max1164550      - maxim,max1164651      - maxim,max1164752 53  reg:54    maxItems: 155 56  vcc-supply: true57  vref-supply:58    description: Optional external reference.  If not supplied, internal59      reference will be used.60 61required:62  - compatible63  - reg64 65additionalProperties: false66 67examples:68  - |69    i2c {70        #address-cells = <1>;71        #size-cells = <0>;72 73        adc@36 {74            compatible = "maxim,max1238";75            reg = <0x36>;76        };77    };78...79