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/ti,dac7512.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: Texas Instruments DAC7512 DAC 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Jonathan Cameron <jic23@kernel.org> 11*5def4c47SEmmanuel Vadot 12*5def4c47SEmmanuel Vadotproperties: 13*5def4c47SEmmanuel Vadot compatible: 14*5def4c47SEmmanuel Vadot const: ti,dac7512 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadot reg: 17*5def4c47SEmmanuel Vadot maxItems: 1 18*5def4c47SEmmanuel Vadot 19*5def4c47SEmmanuel Vadot spi-max-frequency: 20*5def4c47SEmmanuel Vadot description: 21*5def4c47SEmmanuel Vadot Maximum frequency is reduced for supply voltage of less than 3.6V 22*5def4c47SEmmanuel Vadot maximum: 30000000 23*5def4c47SEmmanuel Vadot 24*5def4c47SEmmanuel Vadotrequired: 25*5def4c47SEmmanuel Vadot - compatible 26*5def4c47SEmmanuel Vadot - reg 27*5def4c47SEmmanuel Vadot 28*5def4c47SEmmanuel VadotadditionalProperties: false 29*5def4c47SEmmanuel Vadot 30*5def4c47SEmmanuel Vadotexamples: 31*5def4c47SEmmanuel Vadot - | 32*5def4c47SEmmanuel Vadot spi { 33*5def4c47SEmmanuel Vadot #address-cells = <1>; 34*5def4c47SEmmanuel Vadot #size-cells = <0>; 35*5def4c47SEmmanuel Vadot 36*5def4c47SEmmanuel Vadot dac@0 { 37*5def4c47SEmmanuel Vadot compatible = "ti,dac7512"; 38*5def4c47SEmmanuel Vadot reg = <0>; /* CS0 */ 39*5def4c47SEmmanuel Vadot spi-max-frequency = <1000000>; 40*5def4c47SEmmanuel Vadot }; 41*5def4c47SEmmanuel Vadot }; 42*5def4c47SEmmanuel Vadot... 43