add thermal sensor driver for A64, A83T, H3, H5, H6, R40
From: | Vasily Khoruzhick <anarsoul-AT-gmail.com> | |
To: | Yangtao Li <tiny.windzz-AT-gmail.com>, Zhang Rui <rui.zhang-AT-intel.com>, Eduardo Valentin <edubezval-AT-gmail.com>, Daniel Lezcano <daniel.lezcano-AT-linaro.org>, Amit Kucheria <amit.kucheria-AT-verdurent.com>, Rob Herring <robh+dt-AT-kernel.org>, Mark Rutland <mark.rutland-AT-arm.com>, Maxime Ripard <mripard-AT-kernel.org>, Chen-Yu Tsai <wens-AT-csie.org>, Mauro Carvalho Chehab <mchehab+samsung-AT-kernel.org>, "David S. Miller" <davem-AT-davemloft.net>, Greg Kroah-Hartman <gregkh-AT-linuxfoundation.org>, linux-pm-AT-vger.kernel.org, devicetree-AT-vger.kernel.org, linux-arm-kernel-AT-lists.infradead.org, Ondřej Jirman <megous-AT-megous.com>, linux-kernel-AT-vger.kernel.org | |
Subject: | [PATCH v6 0/7] add thermal sensor driver for A64, A83T, H3, H5, H6, R40 | |
Date: | Tue, 26 Nov 2019 21:29:28 -0800 | |
Message-ID: | <20191127052935.1719897-1-anarsoul@gmail.com> | |
Cc: | Vasily Khoruzhick <anarsoul-AT-gmail.com> | |
Archive-link: | Article |
This patchset adds driver for thermal sensor in A64, A83T, H3, H5, H6 and R40 SoCs. v6: - [ondrej, vasily] Squash all driver related changes into a single patch - [ondrej] Rename calib -> calibration - [ondrej] Fix thermal zone registration check - [ondrej] Lower rate of sensor data interrupts to 4/sec/sensor - [ondrej] Rework scale/offset values, H6 calibration - [ondrej] Explicitly set mod clock to 24 MHz - [ondrej] Set undocumented bits in CTRL0 for H6 - [ondrej] Add support for A83T - [ondrej] Add dts changes for A83T, H3, H5, H6 - [vasily] Add dts changes for A64 - [vasily] Address Maxime's comments for YAML scheme - [vasily] Make .calc_temp callback mandatory - [vasily] Set .max_register in regmap config, so regs can be inspected using debugfs Ondrej Jirman (4): ARM: dts: sun8i-a83t: Add thermal sensor and thermal zones ARM: dts: sun8i-h3: Add thermal sensor and thermal zones arm64: dts: allwinner: sun50i-h5: Add thermal sensor and thermal zones arm64: dts: allwinner: sun50i-h6: Add thermal sensor and thermal zones Vasily Khoruzhick (1): arm64: dts: allwinner: a64: Add thermal sensors and thermal zones Yangtao Li (2): thermal: sun8i: add thermal driver for H6/H5/H3/A64/R40 dt-bindings: thermal: add YAML schema for sun8i-thermal driver bindings .../thermal/allwinner,sun8i-a83t-ths.yaml | 103 +++ MAINTAINERS | 7 + arch/arm/boot/dts/sun8i-a83t.dtsi | 36 + arch/arm/boot/dts/sun8i-h3.dtsi | 26 + arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 42 ++ arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi | 32 + arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi | 33 + drivers/thermal/Kconfig | 14 + drivers/thermal/Makefile | 1 + drivers/thermal/sun8i_thermal.c | 643 ++++++++++++++++++ 10 files changed, 937 insertions(+) create mode 100644 Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml create mode 100644 drivers/thermal/sun8i_thermal.c -- 2.24.0