summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/iio/adc/ti,twl6030-gpadc.yaml
blob: e779a8986e0b8e2cf9f8b860eeb8697f86ea2e08 (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
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/adc/ti,twl6030-gpadc.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: GPADC subsystem in the TWL6030 power module

maintainers:
  - Andreas Kemnade <andreas@kemnade.info>

description:
  The GPADC subsystem in the TWL603X consists of a 10-bit ADC
  combined with a 15-input analog multiplexer in the TWL6030 resp. a
  19-input analog muliplexer in the TWL6032.

properties:
  compatible:
    enum:
      - ti,twl6030-gpadc
      - ti,twl6032-gpadc

  interrupts:
    maxItems: 1

  "#io-channel-cells":
    const: 1

required:
  - compatible
  - interrupts
  - "#io-channel-cells"

additionalProperties: false

examples:
  - |
    gpadc {
        compatible = "ti,twl6030-gpadc";
        interrupts = <3>;
        #io-channel-cells = <1>;
    };
...