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,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 42 43 reg: 44 maxItems: 1 45 46 vs-supply: 47 description: phandle to the regulator that provides the +VS supply 48 49required: 50 - compatible 51 - reg 52 53additionalProperties: false 54 55examples: 56 - | 57 i2c { 58 #address-cells = <1>; 59 #size-cells = <0>; 60 61 sensor@48 { 62 compatible = "st,stlm75"; 63 reg = <0x48>; 64 vs-supply = <&vs>; 65 }; 66 }; 67