xref: /freebsd/sys/contrib/device-tree/Bindings/iio/dac/adi,ad5686.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1354d7675SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2354d7675SEmmanuel Vadot%YAML 1.2
3354d7675SEmmanuel Vadot---
4354d7675SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/dac/adi,ad5686.yaml#
5354d7675SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6354d7675SEmmanuel Vadot
7*b2d2a78aSEmmanuel Vadottitle: Analog Devices AD5360 and similar SPI DACs
8354d7675SEmmanuel Vadot
9354d7675SEmmanuel Vadotmaintainers:
10354d7675SEmmanuel Vadot  - Michael Hennerich <michael.hennerich@analog.com>
11354d7675SEmmanuel Vadot  - Jonathan Cameron <jic23@kernel.org>
12354d7675SEmmanuel Vadot
13354d7675SEmmanuel Vadotproperties:
14354d7675SEmmanuel Vadot  compatible:
15354d7675SEmmanuel Vadot    enum:
16354d7675SEmmanuel Vadot      - adi,ad5310r
17354d7675SEmmanuel Vadot      - adi,ad5672r
18354d7675SEmmanuel Vadot      - adi,ad5674r
19354d7675SEmmanuel Vadot      - adi,ad5676
20354d7675SEmmanuel Vadot      - adi,ad5676r
21354d7675SEmmanuel Vadot      - adi,ad5679r
22354d7675SEmmanuel Vadot      - adi,ad5681r
23354d7675SEmmanuel Vadot      - adi,ad5682r
24354d7675SEmmanuel Vadot      - adi,ad5683
25354d7675SEmmanuel Vadot      - adi,ad5683r
26354d7675SEmmanuel Vadot      - adi,ad5684
27354d7675SEmmanuel Vadot      - adi,ad5684r
28354d7675SEmmanuel Vadot      - adi,ad5685r
29354d7675SEmmanuel Vadot      - adi,ad5686
30354d7675SEmmanuel Vadot      - adi,ad5686r
31354d7675SEmmanuel Vadot
32354d7675SEmmanuel Vadot  reg:
33354d7675SEmmanuel Vadot    maxItems: 1
34354d7675SEmmanuel Vadot
35354d7675SEmmanuel Vadot  vcc-supply:
36354d7675SEmmanuel Vadot    description: If not supplied the internal reference is used.
37354d7675SEmmanuel Vadot
38354d7675SEmmanuel Vadotrequired:
39354d7675SEmmanuel Vadot  - compatible
40354d7675SEmmanuel Vadot  - reg
41354d7675SEmmanuel Vadot
427ef62cebSEmmanuel VadotallOf:
437ef62cebSEmmanuel Vadot  - $ref: /schemas/spi/spi-peripheral-props.yaml#
447ef62cebSEmmanuel Vadot
457ef62cebSEmmanuel VadotunevaluatedProperties: false
467ef62cebSEmmanuel Vadot
47354d7675SEmmanuel Vadotexamples:
48354d7675SEmmanuel Vadot  - |
49354d7675SEmmanuel Vadot    spi {
50354d7675SEmmanuel Vadot        #address-cells = <1>;
51354d7675SEmmanuel Vadot        #size-cells = <0>;
52354d7675SEmmanuel Vadot        dac@0 {
53354d7675SEmmanuel Vadot            reg = <0>;
54354d7675SEmmanuel Vadot            compatible = "adi,ad5310r";
55354d7675SEmmanuel Vadot            vcc-supply = <&dac_vref0>;
56354d7675SEmmanuel Vadot        };
57354d7675SEmmanuel Vadot    };
58354d7675SEmmanuel Vadot...
59