blob: 31ce77a4b087efe3934ccb7187e029a69a19b094 [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
5$id: http://devicetree.org/schemas/hwmon/winbond,w83781d.yaml#
6$schema: http://devicetree.org/meta-schemas/core.yaml#
7
8title: Winbond W83781 and compatible hardware monitor IC
9
10maintainers:
11 - Linus Walleij <linus.walleij@linaro.org>
12
13properties:
14 compatible:
15 enum:
16 - winbond,w83781d
17 - winbond,w83781g
18 - winbond,w83782d
19 - winbond,w83783s
20 - asus,as99127f
21
22 reg:
23 maxItems: 1
24
25required:
26 - compatible
27 - reg
28
29additionalProperties: false
30
31examples:
32 - |
33 i2c {
34 #address-cells = <1>;
35 #size-cells = <0>;
36
37 temperature-sensor@28 {
38 compatible = "winbond,w83781d";
39 reg = <0x28>;
40 };
41 };