blob: c3b9c4cfe8dfe32962642e36cbe4ec625190f8d5 [file] [log] [blame]
Naveen Krishna Chatradhi9e8269d2013-03-13 09:38:20 +05301NTC Thermistor hwmon sensors
2-------------------------------
3
4Requires node properties:
5- "compatible" value : one of
Johannes Pointnered67f082014-07-01 08:05:52 +02006 "epcos,b57330v2103"
Naveen Krishna Chatradhi8b6f5e02014-06-25 11:59:31 +05307 "murata,ncp15wb473"
8 "murata,ncp18wb473"
9 "murata,ncp21wb473"
10 "murata,ncp03wb473"
11 "murata,ncp15wl333"
Beomho Seo887ee432015-04-30 13:07:43 +090012 "murata,ncp03wf104"
Joseph McNally54ce3a02016-02-28 22:31:23 +000013 "murata,ncp15xh103"
Naveen Krishna Chatradhi8b6f5e02014-06-25 11:59:31 +053014
15/* Usage of vendor name "ntc" is deprecated */
16<DEPRECATED> "ntc,ncp15wb473"
17<DEPRECATED> "ntc,ncp18wb473"
18<DEPRECATED> "ntc,ncp21wb473"
19<DEPRECATED> "ntc,ncp03wb473"
20<DEPRECATED> "ntc,ncp15wl333"
21
Naveen Krishna Chatradhi9e8269d2013-03-13 09:38:20 +053022- "pullup-uv" Pull up voltage in micro volts
23- "pullup-ohm" Pull up resistor value in ohms
24- "pulldown-ohm" Pull down resistor value in ohms
25- "connected-positive" Always ON, If not specified.
26 Status change is possible.
27- "io-channels" Channel node of ADC to be used for
28 conversion.
29
Jonghwa Leec08860f2014-09-17 14:54:37 +090030Optional node properties:
31- "#thermal-sensor-cells" Used to expose itself to thermal fw.
32
Naveen Krishna Chatradhi9e8269d2013-03-13 09:38:20 +053033Read more about iio bindings at
34 Documentation/devicetree/bindings/iio/iio-bindings.txt
35
36Example:
37 ncp15wb473@0 {
Naveen Krishna Chatradhi8b6f5e02014-06-25 11:59:31 +053038 compatible = "murata,ncp15wb473";
Naveen Krishna Chatradhi9e8269d2013-03-13 09:38:20 +053039 pullup-uv = <1800000>;
40 pullup-ohm = <47000>;
41 pulldown-ohm = <0>;
42 io-channels = <&adc 3>;
43 };