0001 # SPDX-License-Identifier: GPL-2.0-only or BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/hwmon/lm75.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: LM75 hwmon sensor
0008
0009 maintainers:
0010 - Jean Delvare <jdelvare@suse.com>
0011 - Guenter Roeck <linux@roeck-us.net>
0012
0013 properties:
0014 compatible:
0015 enum:
0016 - adi,adt75
0017 - atmel,at30ts74
0018 - dallas,ds1775
0019 - dallas,ds75
0020 - dallas,ds7505
0021 - gmt,g751
0022 - national,lm75
0023 - national,lm75a
0024 - national,lm75b
0025 - maxim,max6625
0026 - maxim,max6626
0027 - maxim,max31725
0028 - maxim,max31726
0029 - maxim,mcp980x
0030 - nxp,pct2075
0031 - st,stds75
0032 - st,stlm75
0033 - microchip,tcn75
0034 - ti,tmp1075
0035 - ti,tmp100
0036 - ti,tmp101
0037 - ti,tmp105
0038 - ti,tmp112
0039 - ti,tmp175
0040 - ti,tmp275
0041 - ti,tmp75
0042 - ti,tmp75b
0043 - ti,tmp75c
0044
0045 reg:
0046 maxItems: 1
0047
0048 vs-supply:
0049 description: phandle to the regulator that provides the +VS supply
0050
0051 required:
0052 - compatible
0053 - reg
0054
0055 additionalProperties: false
0056
0057 examples:
0058 - |
0059 i2c {
0060 #address-cells = <1>;
0061 #size-cells = <0>;
0062
0063 sensor@48 {
0064 compatible = "st,stlm75";
0065 reg = <0x48>;
0066 vs-supply = <&vs>;
0067 };
0068 };