summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/iio/magnetometer/asahi-kasei,ak8974.yaml
blob: cefb70def1886b7bdcc7119b74e9c2e00f9511e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/magnetometer/asahi-kasei,ak8974.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Asahi Kasei AK8974 magnetometer sensor

maintainers:
  - Linus Walleij <linus.walleij@linaro.org>

properties:
  compatible:
    enum:
      - alps,hscdtd008a
      - asahi-kasei,ak8974

  reg:
    maxItems: 1

  interrupts:
    minItems: 1
    maxItems: 2
    description: |
      Data ready (DRDY) and interrupt (INT1) lines from the chip. The DRDY
      interrupt must be placed first. The interrupts can be triggered on
      rising or falling edges.

  avdd-supply: true

  dvdd-supply: true

  mount-matrix: true

additionalProperties: false

required:
  - compatible
  - reg

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        magnetometer@f {
            compatible = "asahi-kasei,ak8974";
            reg = <0x0f>;
            avdd-supply = <&foo_reg>;
            dvdd-supply = <&bar_reg>;
            interrupts = <0 IRQ_TYPE_EDGE_RISING>,
                         <1 IRQ_TYPE_EDGE_RISING>;
        };
    };
...