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/frequency/adf4371.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
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/iio/frequency/adf4371.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Analog Devices ADF4371/ADF4372 Wideband Synthesizers
    8 
    9 maintainers:
   10   - Popa Stefan <stefan.popa@analog.com>
   11 
   12 description: |
   13   Analog Devices ADF4371/ADF4372 SPI Wideband Synthesizers
   14   https://www.analog.com/media/en/technical-documentation/data-sheets/adf4371.pdf
   15   https://www.analog.com/media/en/technical-documentation/data-sheets/adf4372.pdf
   16 
   17 properties:
   18   compatible:
   19     enum:
   20       - adi,adf4371
   21       - adi,adf4372
   22 
   23   reg:
   24     maxItems: 1
   25 
   26   clocks:
   27     description:
   28       Definition of the external clock (see clock/clock-bindings.txt)
   29     maxItems: 1
   30 
   31   clock-names:
   32     description:
   33       Must be "clkin"
   34     maxItems: 1
   35 
   36   adi,mute-till-lock-en:
   37     type: boolean
   38     description:
   39       If this property is present, then the supply current to RF8P and RF8N
   40       output stage will shut down until the ADF4371/ADF4372 achieves lock as
   41       measured by the digital lock detect circuitry.
   42 
   43   spi-max-frequency: true
   44 
   45 required:
   46   - compatible
   47   - reg
   48   - clocks
   49   - clock-names
   50 
   51 additionalProperties: false
   52 
   53 examples:
   54   - |
   55     spi0 {
   56         #address-cells = <1>;
   57         #size-cells = <0>;
   58 
   59         frequency@0 {
   60                 compatible = "adi,adf4371";
   61                 reg = <0>;
   62                 spi-max-frequency = <1000000>;
   63                 clocks = <&adf4371_clkin>;
   64                 clock-names = "clkin";
   65         };
   66     };
   67 ...

Cache object: 82517a2576b0eae9dcaac77a50c322ee


[ 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.