The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/iio/impedance-analyzer/adi,ad5933.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/iio/impedance-analyzer/adi,ad5933.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Analog Devices AD5933/AD5934 Impedance Converter, Network Analyzer
    8 
    9 maintainers:
   10   - Marcelo Schmitt <marcelo.schmitt1@gmail.com>
   11   - Gabriel Capella <gabriel@capella.pro>
   12 
   13 description: |
   14   https://www.analog.com/media/en/technical-documentation/data-sheets/AD5933.pdf
   15   https://www.analog.com/media/en/technical-documentation/data-sheets/AD5934.pdf
   16 
   17 properties:
   18   compatible:
   19     enum:
   20       - adi,ad5933
   21       - adi,ad5934
   22 
   23   reg:
   24     maxItems: 1
   25 
   26   vdd-supply:
   27     description: |
   28       The regulator supply for DVDD, AVDD1 and AVDD2 when they
   29       are connected together.  Used to calculate voltage scaling of measurement
   30       channels.
   31 
   32   clocks:
   33     maxItems: 1
   34 
   35   clock-names:
   36     const: mclk
   37 
   38 additionalProperties: false
   39 
   40 required:
   41   - compatible
   42   - reg
   43   - vdd-supply
   44 
   45 examples:
   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 ...

Cache object: fec3d820291a7b9c6ee5cdb71f6e8f03


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.