mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 08:13:56 -04:00
adi,ad5686.yaml and adi,ad5696.yaml duplicate all the I2C device compatible strings with the exception of "adi,ad5337r". Since adi,ad5686.yaml references spi-peripheral-props.yaml, drop the I2C devices from it making it only SPI devices. Update the titles to make the distinction clear. Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Reviewed-by: Nuno Sa <nuno.sa@analog.com> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://patch.msgid.link/20240910234440.1045098-1-robh@kernel.org Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/iio/dac/adi,ad5696.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Analog Devices AD5696 and similar I2C multi-channel DACs
|
|
|
|
maintainers:
|
|
- Michael Auchter <michael.auchter@ni.com>
|
|
|
|
description: |
|
|
Binding for Analog Devices AD5696 and similar multi-channel DACs
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- adi,ad5311r
|
|
- adi,ad5337r
|
|
- 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>;
|
|
|
|
ad5696: dac@0 {
|
|
compatible = "adi,ad5696";
|
|
reg = <0>;
|
|
vcc-supply = <&dac_vref>;
|
|
};
|
|
};
|
|
...
|