Path: blob/master/Documentation/devicetree/bindings/iio/accel/adi,adis16201.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/accel/adi,adis16201.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: ADIS16201 Dual Axis Inclinometer and similar78maintainers:9- Jonathan Cameron <Jonathan.Cameron@huawei.com>1011description: |12Two similar parts from external interface point of view.13SPI interface.14https://www.analog.com/en/products/adis16201.html15https://www.analog.com/en/products/adis16209.html1617properties:18compatible:19enum:20- adi,adis1620121- adi,adis162092223reg:24maxItems: 12526interrupts:27maxItems: 12829vdd-supply: true3031required:32- compatible33- reg3435allOf:36- $ref: /schemas/spi/spi-peripheral-props.yaml#3738unevaluatedProperties: false3940examples:41- |42#include <dt-bindings/interrupt-controller/irq.h>43spi {44#address-cells = <1>;45#size-cells = <0>;4647accelerometer@0 {48compatible = "adi,adis16201";49reg = <0>;50spi-max-frequency = <2500000>;51interrupt-parent = <&gpio0>;52interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;53};54};55...565758