brintos

brintos / linux-shallow public Read only

0
0
Text · 1000 B · caaad77 Raw
56 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/ti,adc081c.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: TI Single-channel I2C ADCs8 9maintainers:10  - Jonathan Cameron <jic23@kernel.org>11  - Lars-Peter Clausen <lars@metafoo.de>12 13description: |14  Single-channel ADC supporting 8, 10, or 12-bit samples and high/low alerts.15 16properties:17  compatible:18    enum:19      - ti,adc081c20      - ti,adc101c21      - ti,adc121c22 23  reg:24    maxItems: 125 26  interrupts:27    maxItems: 128 29  vref-supply:30    description:31      Regulator for the combined power supply and voltage reference32 33  "#io-channel-cells":34    const: 135 36required:37  - compatible38  - reg39  - vref-supply40 41additionalProperties: false42 43examples:44  - |45    i2c {46        #address-cells = <1>;47        #size-cells = <0>;48 49        adc@52 {50            compatible = "ti,adc081c";51            reg = <0x52>;52            vref-supply = <&reg_2p5v>;53        };54    };55...56