ntc_thermistor.txt 1.1 KB

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