GNU Linux-libre 6.1.90-gnu
[releases.git] / Documentation / devicetree / bindings / iio / accel / adi,adis16240.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/iio/accel/adi,adis16240.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: ADIS16240 Programmable Impact Sensor and Recorder driver
8
9 maintainers:
10   - Alexandru Tachici <alexandru.tachici@analog.com>
11
12 description: |
13   ADIS16240 Programmable Impact Sensor and Recorder driver that supports
14   SPI interface.
15     https://www.analog.com/en/products/adis16240.html
16
17 properties:
18   compatible:
19     enum:
20       - adi,adis16240
21
22   reg:
23     maxItems: 1
24
25   interrupts:
26     maxItems: 1
27
28 required:
29   - compatible
30   - reg
31   - interrupts
32
33 allOf:
34   - $ref: /schemas/spi/spi-peripheral-props.yaml#
35
36 unevaluatedProperties: false
37
38 examples:
39   - |
40     #include <dt-bindings/gpio/gpio.h>
41     #include <dt-bindings/interrupt-controller/irq.h>
42     spi0 {
43         #address-cells = <1>;
44         #size-cells = <0>;
45
46         /* Example for a SPI device node */
47         accelerometer@0 {
48             compatible = "adi,adis16240";
49             reg = <0>;
50             spi-max-frequency = <2500000>;
51             interrupt-parent = <&gpio0>;
52             interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
53         };
54     };