ntc_thermistor.txt 961 B

12345678910111213141516171819202122232425262728293031323334353637
  1. NTC Thermistor hwmon sensors
  2. -------------------------------
  3. Requires node properties:
  4. - "compatible" value : one of
  5. "murata,ncp15wb473"
  6. "murata,ncp18wb473"
  7. "murata,ncp21wb473"
  8. "murata,ncp03wb473"
  9. "murata,ncp15wl333"
  10. /* Usage of vendor name "ntc" is deprecated */
  11. <DEPRECATED> "ntc,ncp15wb473"
  12. <DEPRECATED> "ntc,ncp18wb473"
  13. <DEPRECATED> "ntc,ncp21wb473"
  14. <DEPRECATED> "ntc,ncp03wb473"
  15. <DEPRECATED> "ntc,ncp15wl333"
  16. - "pullup-uv" Pull up voltage in micro volts
  17. - "pullup-ohm" Pull up resistor value in ohms
  18. - "pulldown-ohm" Pull down resistor value in ohms
  19. - "connected-positive" Always ON, If not specified.
  20. Status change is possible.
  21. - "io-channels" Channel node of ADC to be used for
  22. conversion.
  23. Read more about iio bindings at
  24. Documentation/devicetree/bindings/iio/iio-bindings.txt
  25. Example:
  26. ncp15wb473@0 {
  27. compatible = "murata,ncp15wb473";
  28. pullup-uv = <1800000>;
  29. pullup-ohm = <47000>;
  30. pulldown-ohm = <0>;
  31. io-channels = <&adc 3>;
  32. };