blob: cc29a2f2111a417cb7ef7b35e240499bb615c9f8 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/iio/adc/dlg,da9150-gpadc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Dialog Semiconductor DA9150 IIO GPADC
8
9maintainers:
10 - Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
11
12description:
13 This patch adds support for general purpose ADC within the
14 DA9150 Charger & Fuel-Gauge IC.
15
16properties:
17 compatible:
18 const: dlg,da9150-gpadc
19
20 "#io-channel-cells":
21 const: 1
22
23required:
24 - compatible
25 - "#io-channel-cells"
26
27additionalProperties: false
28
29examples:
30 - |
31 adc {
32 compatible = "dlg,da9150-gpadc";
33 #io-channel-cells = <1>;
34 };
35...