mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 11:58:32 -04:00
The iio-bindings.txt was converted into two files and merged
at the dt-schema git tree at:
https://github.com/devicetree-org/dt-schema
Yet, some documents still refer to the old file. Fix their
references, in order to point to the right URL.
Fixes: dba91f82d5 ("dt-bindings:iio:iio-binding.txt Drop file as content now in dt-schema")
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/4efd81eca266ca0875d3bf9d1672097444146c69.1617972339.git.mchehab+huawei@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
NTC Thermistor hwmon sensors
|
|
-------------------------------
|
|
|
|
Requires node properties:
|
|
- "compatible" value : one of
|
|
"epcos,b57330v2103"
|
|
"epcos,b57891s0103"
|
|
"murata,ncp15wb473"
|
|
"murata,ncp18wb473"
|
|
"murata,ncp21wb473"
|
|
"murata,ncp03wb473"
|
|
"murata,ncp15wl333"
|
|
"murata,ncp03wf104"
|
|
"murata,ncp15xh103"
|
|
|
|
/* 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.
|
|
|
|
Optional node properties:
|
|
- "#thermal-sensor-cells" Used to expose itself to thermal fw.
|
|
|
|
Read more about iio bindings at
|
|
https://github.com/devicetree-org/dt-schema/blob/master/schemas/iio/
|
|
|
|
Example:
|
|
ncp15wb473@0 {
|
|
compatible = "murata,ncp15wb473";
|
|
pullup-uv = <1800000>;
|
|
pullup-ohm = <47000>;
|
|
pulldown-ohm = <0>;
|
|
io-channels = <&adc 3>;
|
|
};
|