Path: blob/master/Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/dac/ti,dac7612.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Texas Instruments DAC7612 family of DACs78description:9The DAC7612 is a dual, 12-bit digital-to-analog converter (DAC) with10guaranteed 12-bit monotonicity performance over the industrial temperature11range. Is is programmable through an SPI interface.1213maintainers:14- Ricardo Ribalda Delgado <ricardo@ribalda.com>1516properties:17compatible:18enum:19- ti,dac761220- ti,dac7612u21- ti,dac7612ub2223reg:24maxItems: 12526ti,loaddacs-gpios:27description:28DACs are loaded when the pin connected to this GPIO is pulled low.29maxItems: 13031required:32- compatible33- reg3435allOf:36- $ref: /schemas/spi/spi-peripheral-props.yaml#3738unevaluatedProperties: false3940examples:41- |42#include <dt-bindings/gpio/gpio.h>43spi {44#address-cells = <1>;45#size-cells = <0>;4647dac@1 {48compatible = "ti,dac7612";49reg = <0x1>;50ti,loaddacs-gpios = <&msmgpio 25 GPIO_ACTIVE_LOW>;51};52};53...545556