xref: /linux/Documentation/devicetree/bindings/hwmon/winbond,w83781d.yaml (revision 4f9786035f9e519db41375818e1d0b5f20da2f10)
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/hwmon/winbond,w83781d.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Winbond W83781 and compatible hardware monitor IC
8
9maintainers:
10  - Linus Walleij <linus.walleij@linaro.org>
11
12properties:
13  compatible:
14    enum:
15      - winbond,w83781d
16      - winbond,w83781g
17      - winbond,w83782d
18      - winbond,w83783s
19      - asus,as99127f
20
21  reg:
22    maxItems: 1
23
24required:
25  - compatible
26  - reg
27
28additionalProperties: false
29
30examples:
31  - |
32    i2c {
33        #address-cells = <1>;
34        #size-cells = <0>;
35
36        temperature-sensor@28 {
37            compatible = "winbond,w83781d";
38            reg = <0x28>;
39        };
40    };
41