Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: f76349cf41451c5c42a99f18a9163377e4b364ff authored by Linus Torvalds on 25 September 2022, 21:01:02 UTC
Linux 6.0-rc7
Tip revision: f76349c
adi,ad5764.yaml
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/dac/adi,ad5764.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Analog Devices AD5744 and AD5764 DAC families

maintainers:
  - Lars-Peter Clausen <lars@metafoo.de>
  - Jonathan Cameron <jic23@kernel.org>

properties:

  compatible:
    enum:
      - adi,ad5744
      - adi,ad5744r
      - adi,ad5764
      - adi,ad5764r

  reg:
    maxItems: 1

  spi-max-frequency: true

  vrefAB-supply: true
  vrefCD-supply: true

additionalProperties: false

required:
  - compatible
  - reg

allOf:
  - if:
      properties:
        compatible:
          contains:
            enum:
              - adi,ad5744
              - adi,ad5764
    then:
      required:
        - vrefAB-supply
        - vrefCD-supply

examples:
  - |
    spi {
        #address-cells = <1>;
        #size-cells = <0>;

        dac@0 {
            compatible = "adi,ad5744";
            reg = <0>;
            vrefAB-supply = <&dac_vref>;
            vrefCD-supply = <&dac_vref>;
        };
    };
...
back to top