Re: [PATCH v8 0/7] add thermal sensor driver for A64, A83T, H3, H5, H6, R40

From: Corentin Labbe
Date: Tue Dec 24 2019 - 08:12:03 EST


On Thu, Dec 19, 2019 at 09:28:16AM -0800, Vasily Khoruzhick wrote:
> This patchset adds driver for thermal sensor in A64, A83T, H3, H5,
> H6 and R40 SoCs.
>
> v8:
> - [vasily] Address more Maxime's comments for dt-schema
> - [vasily] Add myself to MAINTAINERS for the driver and schema
> - [vasily] Round calibration data size to word boundary for H6 and A64
> - [vasily] Change offset for A64 since it reports too low temp otherwise.
> Likely conversion formula in user manual is not correct.
>
> v7:
> - [vasily] Address Maxime's comments for dt-schema
> - [vasily] Move common part of H3 and H5 dts into sunxi-h3-h5.dtsi
> - [vasily] Add Maxime's a-b to the driver patch
>
> 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: h5: Add thermal sensor and thermal zones
> arm64: dts: allwinner: 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/A83T/R40
> dt-bindings: thermal: add YAML schema for sun8i-thermal driver
> bindings
>
> .../thermal/allwinner,sun8i-a83t-ths.yaml | 160 +++++
> MAINTAINERS | 8 +
> arch/arm/boot/dts/sun8i-a83t.dtsi | 36 +
> arch/arm/boot/dts/sun8i-h3.dtsi | 20 +
> arch/arm/boot/dts/sunxi-h3-h5.dtsi | 6 +
> arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 42 ++
> arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi | 26 +
> arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi | 33 +
> drivers/thermal/Kconfig | 14 +
> drivers/thermal/Makefile | 1 +
> drivers/thermal/sun8i_thermal.c | 639 ++++++++++++++++++
> 11 files changed, 985 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
> create mode 100644 drivers/thermal/sun8i_thermal.c
>
> --
> 2.24.1
>

Hello

Thanks for your work.

Tested-by: Corentin Labbe <clabbe.montjoie@xxxxxxxxx>
Tested-on: sun50i-h6-pine-h64-model-b
Tested-on: sun50i-h6-pine-h64
Tested-on: sun8i-a83t-bananapi-m3
Tested-on: sun8i-h2-plus-orangepi-zero
Tested-on: sun8i-h2-plus-orangepi-r1
Tested-on: sun8i-h2-plus-libretech-all-h3-cc
Tested-on: sun8i-h3-libretech-all-h3-cc
Tested-on: sun50i-h5-libretech-all-h3-cc
Tested-on: sun50i-a64-pine64-plus

Note that your patch serie support R40 but you do not have any R40 DT patch.
If you need testing, do not hesitate to ask.

Regards