brintos

brintos / linux-shallow public Read only

0
0
Text · 1.3 KiB · 2ad0435 Raw
60 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/impedance-analyzer/adi,ad5933.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Analog Devices AD5933/AD5934 Impedance Converter, Network Analyzer8 9maintainers:10  - Marcelo Schmitt <marcelo.schmitt1@gmail.com>11  - Gabriel Capella <gabriel@capella.pro>12 13description: |14  https://www.analog.com/media/en/technical-documentation/data-sheets/AD5933.pdf15  https://www.analog.com/media/en/technical-documentation/data-sheets/AD5934.pdf16 17properties:18  compatible:19    enum:20      - adi,ad593321      - adi,ad593422 23  reg:24    maxItems: 125 26  vdd-supply:27    description: |28      The regulator supply for DVDD, AVDD1 and AVDD2 when they29      are connected together.  Used to calculate voltage scaling of measurement30      channels.31 32  clocks:33    maxItems: 134 35  clock-names:36    const: mclk37 38additionalProperties: false39 40required:41  - compatible42  - reg43  - vdd-supply44 45examples:46  - |47    i2c {48        #address-cells = <1>;49        #size-cells = <0>;50 51        impedance-analyzer@d {52            compatible = "adi,ad5933";53            reg = <0x0d>;54            vdd-supply = <&vdd_supply>;55            clocks = <&ref_clk>;56            clock-names = "mclk";57        };58    };59...60