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