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/dac/adi,ad8801.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/dac/adi,ad8801.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Analog Devices AD8801 and AD8803 DACs
    8 
    9 maintainers:
   10   - Jonathan Cameron <jic23@kernel.org>
   11 
   12 properties:
   13 
   14   compatible:
   15     enum:
   16       - adi,ad8801
   17       - adi,ad8803
   18 
   19   reg:
   20     maxItems: 1
   21 
   22   spi-max-frequency: true
   23 
   24   vrefh-supply: true
   25   vrefl-supply: true
   26 
   27 additionalProperties: false
   28 
   29 required:
   30   - compatible
   31   - reg
   32   - vrefh-supply
   33 
   34 allOf:
   35   - if:
   36       properties:
   37         compatible:
   38           contains:
   39             const: adi,ad8803
   40     then:
   41       required:
   42         - vrefl-supply
   43     else:
   44       properties:
   45         vrefl-supply: false
   46 
   47 examples:
   48   - |
   49     spi {
   50         #address-cells = <1>;
   51         #size-cells = <0>;
   52 
   53         dac@0 {
   54             compatible = "adi,ad8803";
   55             reg = <0>;
   56             vrefl-supply = <&dac_vrefl>;
   57             vrefh-supply = <&dac_vrefh>;
   58         };
   59     };
   60 ...

Cache object: b712bc8494721325fe55d70baa8e50d1


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