Path: blob/main/sys/contrib/device-tree/Bindings/iio/dac/ltc2632.txt
48525 views
Linear Technology LTC2632/2634/2636 DAC12Required properties:3- compatible: Has to contain one of the following:4lltc,ltc2632-l125lltc,ltc2632-l106lltc,ltc2632-l87lltc,ltc2632-h128lltc,ltc2632-h109lltc,ltc2632-h810lltc,ltc2634-l1211lltc,ltc2634-l1012lltc,ltc2634-l813lltc,ltc2634-h1214lltc,ltc2634-h1015lltc,ltc2634-h816lltc,ltc2636-l1217lltc,ltc2636-l1018lltc,ltc2636-l819lltc,ltc2636-h1220lltc,ltc2636-h1021lltc,ltc2636-h82223Property rules described in Documentation/devicetree/bindings/spi/spi-bus.txt24apply. In particular, "reg" and "spi-max-frequency" properties must be given.2526Optional properties:27- vref-supply: Phandle to the external reference voltage supply. This should28only be set if there is an external reference voltage connected to the VREF29pin. If the property is not set the internal reference is used.3031Example:3233vref: regulator-vref {34compatible = "regulator-fixed";35regulator-name = "vref-ltc2632";36regulator-min-microvolt = <1250000>;37regulator-max-microvolt = <1250000>;38regulator-always-on;39};4041spi_master {42dac: ltc2632@0 {43compatible = "lltc,ltc2632-l12";44reg = <0>; /* CS0 */45spi-max-frequency = <1000000>;46vref-supply = <&vref>; /* optional */47};48};495051