1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/dac/maxim,ds4424.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: Maxim Integrated DS4422/DS4424 7-bit Sink/Source Current DAC 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Ismail Kose <ihkose@gmail.com> 11*5def4c47SEmmanuel Vadot 12*5def4c47SEmmanuel Vadotdescription: | 13*5def4c47SEmmanuel Vadot Datasheet publicly available at: 14*5def4c47SEmmanuel Vadot https://datasheets.maximintegrated.com/en/ds/DS4422-DS4424.pdf 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadotproperties: 17*5def4c47SEmmanuel Vadot compatible: 18*5def4c47SEmmanuel Vadot enum: 19*5def4c47SEmmanuel Vadot - maxim,ds4422 20*5def4c47SEmmanuel Vadot - maxim,ds4424 21*5def4c47SEmmanuel Vadot 22*5def4c47SEmmanuel Vadot reg: 23*5def4c47SEmmanuel Vadot maxItems: 1 24*5def4c47SEmmanuel Vadot 25*5def4c47SEmmanuel Vadot vcc-supply: true 26*5def4c47SEmmanuel Vadot 27*5def4c47SEmmanuel Vadotrequired: 28*5def4c47SEmmanuel Vadot - compatible 29*5def4c47SEmmanuel Vadot - reg 30*5def4c47SEmmanuel Vadot 31*5def4c47SEmmanuel VadotadditionalProperties: false 32*5def4c47SEmmanuel Vadot 33*5def4c47SEmmanuel Vadotexamples: 34*5def4c47SEmmanuel Vadot - | 35*5def4c47SEmmanuel Vadot i2c { 36*5def4c47SEmmanuel Vadot #address-cells = <1>; 37*5def4c47SEmmanuel Vadot #size-cells = <0>; 38*5def4c47SEmmanuel Vadot 39*5def4c47SEmmanuel Vadot dac@10 { 40*5def4c47SEmmanuel Vadot compatible = "maxim,ds4424"; 41*5def4c47SEmmanuel Vadot reg = <0x10>; /* When A0, A1 pins are ground */ 42*5def4c47SEmmanuel Vadot vcc-supply = <&vcc_3v3>; 43*5def4c47SEmmanuel Vadot }; 44*5def4c47SEmmanuel Vadot }; 45*5def4c47SEmmanuel Vadot... 46