xref: /freebsd/sys/contrib/device-tree/Bindings/iio/impedance-analyzer/adi,ad5933.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/impedance-analyzer/adi,ad5933.yaml#
5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Analog Devices AD5933/AD5934 Impedance Converter, Network Analyzer
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Marcelo Schmitt <marcelo.schmitt1@gmail.com>
11*5def4c47SEmmanuel Vadot  - Gabriel Capella <gabriel@capella.pro>
12*5def4c47SEmmanuel Vadot
13*5def4c47SEmmanuel Vadotdescription: |
14*5def4c47SEmmanuel Vadot  https://www.analog.com/media/en/technical-documentation/data-sheets/AD5933.pdf
15*5def4c47SEmmanuel Vadot  https://www.analog.com/media/en/technical-documentation/data-sheets/AD5934.pdf
16*5def4c47SEmmanuel Vadot
17*5def4c47SEmmanuel Vadotproperties:
18*5def4c47SEmmanuel Vadot  compatible:
19*5def4c47SEmmanuel Vadot    enum:
20*5def4c47SEmmanuel Vadot      - adi,ad5933
21*5def4c47SEmmanuel Vadot      - adi,ad5934
22*5def4c47SEmmanuel Vadot
23*5def4c47SEmmanuel Vadot  reg:
24*5def4c47SEmmanuel Vadot    maxItems: 1
25*5def4c47SEmmanuel Vadot
26*5def4c47SEmmanuel Vadot  vdd-supply:
27*5def4c47SEmmanuel Vadot    description: |
28*5def4c47SEmmanuel Vadot      The regulator supply for DVDD, AVDD1 and AVDD2 when they
29*5def4c47SEmmanuel Vadot      are connected together.  Used to calculate voltage scaling of measurement
30*5def4c47SEmmanuel Vadot      channels.
31*5def4c47SEmmanuel Vadot
32*5def4c47SEmmanuel Vadot  clocks:
33*5def4c47SEmmanuel Vadot    maxItems: 1
34*5def4c47SEmmanuel Vadot
35*5def4c47SEmmanuel Vadot  clock-names:
36*5def4c47SEmmanuel Vadot    const: mclk
37*5def4c47SEmmanuel Vadot
38*5def4c47SEmmanuel VadotadditionalProperties: false
39*5def4c47SEmmanuel Vadot
40*5def4c47SEmmanuel Vadotrequired:
41*5def4c47SEmmanuel Vadot  - compatible
42*5def4c47SEmmanuel Vadot  - reg
43*5def4c47SEmmanuel Vadot  - vdd-supply
44*5def4c47SEmmanuel Vadot
45*5def4c47SEmmanuel Vadotexamples:
46*5def4c47SEmmanuel Vadot  - |
47*5def4c47SEmmanuel Vadot    i2c {
48*5def4c47SEmmanuel Vadot        #address-cells = <1>;
49*5def4c47SEmmanuel Vadot        #size-cells = <0>;
50*5def4c47SEmmanuel Vadot
51*5def4c47SEmmanuel Vadot        impedance-analyzer@d {
52*5def4c47SEmmanuel Vadot            compatible = "adi,ad5933";
53*5def4c47SEmmanuel Vadot            reg = <0x0d>;
54*5def4c47SEmmanuel Vadot            vdd-supply = <&vdd_supply>;
55*5def4c47SEmmanuel Vadot            clocks = <&ref_clk>;
56*5def4c47SEmmanuel Vadot            clock-names = "mclk";
57*5def4c47SEmmanuel Vadot        };
58*5def4c47SEmmanuel Vadot    };
59*5def4c47SEmmanuel Vadot...
60