mirror of https://gitee.com/openkylin/linux.git
dt-bindings: iio: dac: ad5686: add binding
Add a binding for AD5686 Signed-off-by: Michael Auchter <michael.auchter@ni.com> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20200924195215.49443-3-michael.auchter@ni.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
bf7cfa685d
commit
d93dd06080
|
@ -0,0 +1,57 @@
|
||||||
|
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
$id: http://devicetree.org/schemas/iio/dac/adi,ad5686.yaml#
|
||||||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||||
|
|
||||||
|
title: Analog Devices AD5686 and similar multi-channel DACs
|
||||||
|
|
||||||
|
maintainers:
|
||||||
|
- Michael Auchter <michael.auchter@ni.com>
|
||||||
|
|
||||||
|
description: |
|
||||||
|
Binding for Analog Devices AD5686 and similar multi-channel DACs
|
||||||
|
|
||||||
|
properties:
|
||||||
|
compatible:
|
||||||
|
enum:
|
||||||
|
- adi,ad5311r
|
||||||
|
- adi,ad5338r
|
||||||
|
- adi,ad5671r
|
||||||
|
- adi,ad5675r
|
||||||
|
- adi,ad5691r
|
||||||
|
- adi,ad5692r
|
||||||
|
- adi,ad5693
|
||||||
|
- adi,ad5693r
|
||||||
|
- adi,ad5694
|
||||||
|
- adi,ad5694r
|
||||||
|
- adi,ad5695r
|
||||||
|
- adi,ad5696
|
||||||
|
- adi,ad5696r
|
||||||
|
|
||||||
|
reg:
|
||||||
|
maxItems: 1
|
||||||
|
|
||||||
|
vcc-supply:
|
||||||
|
description: |
|
||||||
|
The regulator supply for DAC reference voltage.
|
||||||
|
|
||||||
|
required:
|
||||||
|
- compatible
|
||||||
|
- reg
|
||||||
|
|
||||||
|
additionalProperties: false
|
||||||
|
|
||||||
|
examples:
|
||||||
|
- |
|
||||||
|
i2c {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
ad5686: dac@0 {
|
||||||
|
compatible = "adi,ad5686";
|
||||||
|
reg = <0>;
|
||||||
|
vcc-supply = <&dac_vref>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
...
|
Loading…
Reference in New Issue