mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
ed67f0872b
This patch adds support for the ntc thermistor B57330V2103 from EPCOS. Signed-off-by: Johannes Pointner <johannes.pointner@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
39 lines
982 B
Plaintext
39 lines
982 B
Plaintext
NTC Thermistor hwmon sensors
|
|
-------------------------------
|
|
|
|
Requires node properties:
|
|
- "compatible" value : one of
|
|
"epcos,b57330v2103"
|
|
"murata,ncp15wb473"
|
|
"murata,ncp18wb473"
|
|
"murata,ncp21wb473"
|
|
"murata,ncp03wb473"
|
|
"murata,ncp15wl333"
|
|
|
|
/* Usage of vendor name "ntc" is deprecated */
|
|
<DEPRECATED> "ntc,ncp15wb473"
|
|
<DEPRECATED> "ntc,ncp18wb473"
|
|
<DEPRECATED> "ntc,ncp21wb473"
|
|
<DEPRECATED> "ntc,ncp03wb473"
|
|
<DEPRECATED> "ntc,ncp15wl333"
|
|
|
|
- "pullup-uv" Pull up voltage in micro volts
|
|
- "pullup-ohm" Pull up resistor value in ohms
|
|
- "pulldown-ohm" Pull down resistor value in ohms
|
|
- "connected-positive" Always ON, If not specified.
|
|
Status change is possible.
|
|
- "io-channels" Channel node of ADC to be used for
|
|
conversion.
|
|
|
|
Read more about iio bindings at
|
|
Documentation/devicetree/bindings/iio/iio-bindings.txt
|
|
|
|
Example:
|
|
ncp15wb473@0 {
|
|
compatible = "murata,ncp15wb473";
|
|
pullup-uv = <1800000>;
|
|
pullup-ohm = <47000>;
|
|
pulldown-ohm = <0>;
|
|
io-channels = <&adc 3>;
|
|
};
|