15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 25def4c47SEmmanuel Vadot%YAML 1.2 35def4c47SEmmanuel Vadot--- 45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/dac/adi,ad5696.yaml# 55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 65def4c47SEmmanuel Vadot 7*b2d2a78aSEmmanuel Vadottitle: Analog Devices AD5696 and similar I2C multi-channel DACs 85def4c47SEmmanuel Vadot 95def4c47SEmmanuel Vadotmaintainers: 105def4c47SEmmanuel Vadot - Michael Auchter <michael.auchter@ni.com> 115def4c47SEmmanuel Vadot 125def4c47SEmmanuel Vadotdescription: | 135def4c47SEmmanuel Vadot Binding for Analog Devices AD5696 and similar multi-channel DACs 145def4c47SEmmanuel Vadot 155def4c47SEmmanuel Vadotproperties: 165def4c47SEmmanuel Vadot compatible: 175def4c47SEmmanuel Vadot enum: 185def4c47SEmmanuel Vadot - adi,ad5311r 19*b2d2a78aSEmmanuel Vadot - adi,ad5337r 205def4c47SEmmanuel Vadot - adi,ad5338r 215def4c47SEmmanuel Vadot - adi,ad5671r 225def4c47SEmmanuel Vadot - adi,ad5675r 235def4c47SEmmanuel Vadot - adi,ad5691r 245def4c47SEmmanuel Vadot - adi,ad5692r 255def4c47SEmmanuel Vadot - adi,ad5693 265def4c47SEmmanuel Vadot - adi,ad5693r 275def4c47SEmmanuel Vadot - adi,ad5694 285def4c47SEmmanuel Vadot - adi,ad5694r 295def4c47SEmmanuel Vadot - adi,ad5695r 305def4c47SEmmanuel Vadot - adi,ad5696 315def4c47SEmmanuel Vadot - adi,ad5696r 325def4c47SEmmanuel Vadot 335def4c47SEmmanuel Vadot reg: 345def4c47SEmmanuel Vadot maxItems: 1 355def4c47SEmmanuel Vadot 365def4c47SEmmanuel Vadot vcc-supply: 375def4c47SEmmanuel Vadot description: | 385def4c47SEmmanuel Vadot The regulator supply for DAC reference voltage. 395def4c47SEmmanuel Vadot 405def4c47SEmmanuel Vadotrequired: 415def4c47SEmmanuel Vadot - compatible 425def4c47SEmmanuel Vadot - reg 435def4c47SEmmanuel Vadot 445def4c47SEmmanuel VadotadditionalProperties: false 455def4c47SEmmanuel Vadot 465def4c47SEmmanuel Vadotexamples: 475def4c47SEmmanuel Vadot - | 485def4c47SEmmanuel Vadot i2c { 495def4c47SEmmanuel Vadot #address-cells = <1>; 505def4c47SEmmanuel Vadot #size-cells = <0>; 515def4c47SEmmanuel Vadot 525def4c47SEmmanuel Vadot ad5696: dac@0 { 535def4c47SEmmanuel Vadot compatible = "adi,ad5696"; 545def4c47SEmmanuel Vadot reg = <0>; 555def4c47SEmmanuel Vadot vcc-supply = <&dac_vref>; 565def4c47SEmmanuel Vadot }; 575def4c47SEmmanuel Vadot }; 585def4c47SEmmanuel Vadot... 59