WIP FPC-III support
[linux/fpc-iii.git] / Documentation / devicetree / bindings / hwmon / lm75.yaml
blob96eed5cc7841bea10d59be130de4cb95286b7d4a
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#
7 title: LM75 hwmon sensor
9 maintainers:
10   - Jean Delvare <jdelvare@suse.com>
11   - Guenter Roeck <linux@roeck-us.net>
13 properties:
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,tmp100
34       - ti,tmp101
35       - ti,tmp105
36       - ti,tmp112
37       - ti,tmp175
38       - ti,tmp275
39       - ti,tmp75
40       - ti,tmp75b
41       - ti,tmp75c
43   reg:
44     maxItems: 1
46   vs-supply:
47     description: phandle to the regulator that provides the +VS supply
49 required:
50   - compatible
51   - reg
53 additionalProperties: false
55 examples:
56   - |
57     i2c {
58       #address-cells = <1>;
59       #size-cells = <0>;
61       sensor@48 {
62         compatible = "st,stlm75";
63         reg = <0x48>;
64         vs-supply = <&vs>;
65       };
66     };