lm87.txt 810 B

123456789101112131415161718192021222324252627282930
  1. *LM87 hwmon sensor.
  2. Required properties:
  3. - compatible: Should be
  4. "ti,lm87"
  5. - reg: I2C address
  6. optional properties:
  7. - has-temp3: This configures pins 18 and 19 to be used as a second
  8. remote temperature sensing channel. By default the pins
  9. are configured as voltage input pins in0 and in5.
  10. - has-in6: When set, pin 5 is configured to be used as voltage input
  11. in6. Otherwise the pin is set as FAN1 input.
  12. - has-in7: When set, pin 6 is configured to be used as voltage input
  13. in7. Otherwise the pin is set as FAN2 input.
  14. - vcc-supply: a Phandle for the regulator supplying power, can be
  15. cofigured to measure 5.0V power supply. Default is 3.3V.
  16. Example:
  17. lm87@2e {
  18. compatible = "ti,lm87";
  19. reg = <0x2e>;
  20. has-temp3;
  21. vcc-supply = <&reg_5v0>;
  22. };