xref: /freebsd-src/sys/contrib/device-tree/src/arm/cros-adc-thermistors.dtsi (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only
2*c66ec88fSEmmanuel Vadot/*
3*c66ec88fSEmmanuel Vadot * Thermistor dts fragment for devices that use Thermistors as
4*c66ec88fSEmmanuel Vadot * children of the IIO based ADC.
5*c66ec88fSEmmanuel Vadot *
6*c66ec88fSEmmanuel Vadot * Currently, used by Exynos5420 based Peach PIT and
7*c66ec88fSEmmanuel Vadot * Exynos5800 based Peach PI.
8*c66ec88fSEmmanuel Vadot *
9*c66ec88fSEmmanuel Vadot * Copyright (c) 2014 Samsung Electronics Co., Ltd.
10*c66ec88fSEmmanuel Vadot*/
11*c66ec88fSEmmanuel Vadot
12*c66ec88fSEmmanuel Vadot&adc {
13*c66ec88fSEmmanuel Vadot	thermistor3 {
14*c66ec88fSEmmanuel Vadot		compatible = "murata,ncp15wb473";
15*c66ec88fSEmmanuel Vadot		pullup-uv = <1800000>;
16*c66ec88fSEmmanuel Vadot		pullup-ohm = <47000>;
17*c66ec88fSEmmanuel Vadot		pulldown-ohm = <0>;
18*c66ec88fSEmmanuel Vadot		io-channels = <&adc 3>;
19*c66ec88fSEmmanuel Vadot	};
20*c66ec88fSEmmanuel Vadot	thermistor4 {
21*c66ec88fSEmmanuel Vadot		compatible = "murata,ncp15wb473";
22*c66ec88fSEmmanuel Vadot		pullup-uv = <1800000>;
23*c66ec88fSEmmanuel Vadot		pullup-ohm = <47000>;
24*c66ec88fSEmmanuel Vadot		pulldown-ohm = <0>;
25*c66ec88fSEmmanuel Vadot		io-channels = <&adc 4>;
26*c66ec88fSEmmanuel Vadot	};
27*c66ec88fSEmmanuel Vadot	thermistor5 {
28*c66ec88fSEmmanuel Vadot		compatible = "murata,ncp15wb473";
29*c66ec88fSEmmanuel Vadot		pullup-uv = <1800000>;
30*c66ec88fSEmmanuel Vadot		pullup-ohm = <47000>;
31*c66ec88fSEmmanuel Vadot		pulldown-ohm = <0>;
32*c66ec88fSEmmanuel Vadot		io-channels = <&adc 5>;
33*c66ec88fSEmmanuel Vadot	};
34*c66ec88fSEmmanuel Vadot	thermistor6 {
35*c66ec88fSEmmanuel Vadot		compatible = "murata,ncp15wb473";
36*c66ec88fSEmmanuel Vadot		pullup-uv = <1800000>;
37*c66ec88fSEmmanuel Vadot		pullup-ohm = <47000>;
38*c66ec88fSEmmanuel Vadot		pulldown-ohm = <0>;
39*c66ec88fSEmmanuel Vadot		io-channels = <&adc 6>;
40*c66ec88fSEmmanuel Vadot	};
41*c66ec88fSEmmanuel Vadot};
42