Path: blob/master/Documentation/devicetree/bindings/iio/potentiometer/adi,ad5272.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/potentiometer/adi,ad5272.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Analog Devices AD5272 digital potentiometer78maintainers:9- Phil Reid <preid@electromag.com.au>1011description: |12Datasheet: https://www.analog.com/en/products/ad5272.html1314properties:15compatible:16enum:17- adi,ad5272-02018- adi,ad5272-05019- adi,ad5272-10020- adi,ad5274-02021- adi,ad5274-1002223reg:24maxItems: 12526reset-gpios:27maxItems: 128description:29Active low signal to the AD5272 RESET input.3031additionalProperties: false3233required:34- compatible35- reg3637examples:38- |39#include <dt-bindings/gpio/gpio.h>40i2c {41#address-cells = <1>;42#size-cells = <0>;4344potentiometer@2f {45compatible = "adi,ad5272-020";46reg = <0x2f>;47reset-gpios = <&gpio3 6 GPIO_ACTIVE_LOW>;48};49};50...515253