1# SPDX-License-Identifier: GPL-2.0-only or BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/hwmon/lm75.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: LM75 hwmon sensor
8
9maintainers:
10  - Jean Delvare <jdelvare@suse.com>
11  - Guenter Roeck <linux@roeck-us.net>
12
13properties:
14  compatible:
15    enum:
16      - adi,adt75
17      - dallas,ds1775
18      - dallas,ds75
19      - dallas,ds7505
20      - gmt,g751
21      - national,lm75
22      - national,lm75a
23      - national,lm75b
24      - maxim,max6625
25      - maxim,max6626
26      - maxim,max31725
27      - maxim,max31726
28      - maxim,mcp980x
29      - nxp,pct2075
30      - st,stds75
31      - st,stlm75
32      - microchip,tcn75
33      - ti,tmp1075
34      - ti,tmp100
35      - ti,tmp101
36      - ti,tmp105
37      - ti,tmp112
38      - ti,tmp175
39      - ti,tmp275
40      - ti,tmp75
41      - ti,tmp75b
42      - ti,tmp75c
43
44  reg:
45    maxItems: 1
46
47  vs-supply:
48    description: phandle to the regulator that provides the +VS supply
49
50required:
51  - compatible
52  - reg
53
54additionalProperties: false
55
56examples:
57  - |
58    i2c {
59      #address-cells = <1>;
60      #size-cells = <0>;
61
62      sensor@48 {
63        compatible = "st,stlm75";
64        reg = <0x48>;
65        vs-supply = <&vs>;
66      };
67    };
68