0001 *LM87 hwmon sensor.
0002
0003 Required properties:
0004 - compatible: Should be
0005 "ti,lm87"
0006
0007 - reg: I2C address
0008
0009 optional properties:
0010 - has-temp3: This configures pins 18 and 19 to be used as a second
0011 remote temperature sensing channel. By default the pins
0012 are configured as voltage input pins in0 and in5.
0013
0014 - has-in6: When set, pin 5 is configured to be used as voltage input
0015 in6. Otherwise the pin is set as FAN1 input.
0016
0017 - has-in7: When set, pin 6 is configured to be used as voltage input
0018 in7. Otherwise the pin is set as FAN2 input.
0019
0020 - vcc-supply: a Phandle for the regulator supplying power, can be
0021 cofigured to measure 5.0V power supply. Default is 3.3V.
0022
0023 Example:
0024
0025 lm87@2e {
0026 compatible = "ti,lm87";
0027 reg = <0x2e>;
0028 has-temp3;
0029 vcc-supply = <®_5v0>;
0030 };