From mboxrd@z Thu Jan 1 00:00:00 1970 From: manu@freebsd.org (Emmanuel Vadot) Date: Sat, 4 Aug 2018 09:03:50 +0200 Subject: [PATCH 2/7] ARM: dts: sun8i: h3: Add thermal sensor controller node In-Reply-To: <20180804070355.14857-1-manu@freebsd.org> References: <20180804070355.14857-1-manu@freebsd.org> Message-ID: <20180804070355.14857-2-manu@freebsd.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org This add the ths controller for the H3 and the nvmem cell for the calibration data on the sid node. Signed-off-by: Emmanuel Vadot --- arch/arm/boot/dts/sun8i-h3.dtsi | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-h3.dtsi b/arch/arm/boot/dts/sun8i-h3.dtsi index 281038a7d7b4..fcfcd50b398a 100644 --- a/arch/arm/boot/dts/sun8i-h3.dtsi +++ b/arch/arm/boot/dts/sun8i-h3.dtsi @@ -145,6 +145,25 @@ sid: eeprom at 1c14000 { compatible = "allwinner,sun8i-h3-sid"; reg = <0x1c14000 0x400>; + + ths_calib: calib at 234 { + reg = <0x234 0x2>; + }; + }; + + ths: thermal_sensor at 1c25000 { + compatible = "allwinner,sun8i-h3-ths"; + reg = <0x01c25000 0x100>; + interrupts = ; + clocks = <&ccu CLK_BUS_THS>, <&ccu CLK_THS>; + clock-names = "apb", "ths"; + resets = <&ccu RST_BUS_THS>; + reset-names = "apb"; + #thermal-sensor-cells = <0>; + status = "disabled"; + + nvmem-cells = <&ths_calib>; + nvmem-cell-names = "ths-calib"; }; mali: gpu at 1c40000 { -- 2.18.0