brintos

brintos / linux-shallow public Read only

0
0
Text · 986 B · e59db86 Raw
55 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/dac/ti,dac5571.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Texas Instruments DAC5571 Family8 9maintainers:10  - Sean Nyekjaer <sean@geanix.com>11 12properties:13  compatible:14    enum:15      - ti,dac557116      - ti,dac657117      - ti,dac757118      - ti,dac557419      - ti,dac657420      - ti,dac757421      - ti,dac557322      - ti,dac657323      - ti,dac757324      - ti,dac081c08125      - ti,dac121c08126 27  reg:28    maxItems: 129 30  vref-supply:31    description:32      Reference voltage must be supplied to establish the scaling of the33      output voltage.34 35required:36  - compatible37  - reg38  - vref-supply39 40additionalProperties: false41 42examples:43  - |44    i2c {45        #address-cells = <1>;46        #size-cells = <0>;47 48        dac@4c {49            compatible = "ti,dac5571";50            reg = <0x4c>;51            vref-supply = <&vdd_supply>;52        };53    };54...55