linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 0/7] add thermal sensor driver for A64, A83T, H3, H5, H6, R40
@ 2019-11-27  5:29 Vasily Khoruzhick
  2019-11-27  5:29 ` [PATCH v6 1/7] thermal: sun8i: add thermal driver for H6/H5/H3/A64/A83T/R40 Vasily Khoruzhick
                   ` (6 more replies)
  0 siblings, 7 replies; 31+ messages in thread
From: Vasily Khoruzhick @ 2019-11-27  5:29 UTC (permalink / raw)
  To: Yangtao Li, Zhang Rui, Eduardo Valentin, Daniel Lezcano,
	Amit Kucheria, Rob Herring, Mark Rutland, Maxime Ripard,
	Chen-Yu Tsai, Mauro Carvalho Chehab, David S. Miller,
	Greg Kroah-Hartman, linux-pm, devicetree, linux-arm-kernel,
	Ondřej Jirman, linux-kernel
  Cc: Vasily Khoruzhick

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


^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2019-12-09 18:04 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-27  5:29 [PATCH v6 0/7] add thermal sensor driver for A64, A83T, H3, H5, H6, R40 Vasily Khoruzhick
2019-11-27  5:29 ` [PATCH v6 1/7] thermal: sun8i: add thermal driver for H6/H5/H3/A64/A83T/R40 Vasily Khoruzhick
2019-11-27 11:14   ` Ondřej Jirman
2019-11-27 17:35     ` Maxime Ripard
2019-11-27 19:44       ` Frank Lee
2019-11-27 19:48         ` Vasily Khoruzhick
2019-11-27 22:24           ` Ondřej Jirman
2019-11-28 15:16             ` Frank Lee
2019-11-29  0:53               ` Ondřej Jirman
2019-11-28  7:42           ` Maxime Ripard
2019-11-27 17:27   ` Maxime Ripard
2019-11-28 16:43   ` Frank Lee
2019-11-28 17:06     ` Ondřej Jirman
2019-11-29 11:46       ` Frank Lee
2019-12-02  1:58         ` Ondřej Jirman
2019-12-09 18:04           ` Frank Lee
2019-11-27  5:29 ` [PATCH v6 2/7] dt-bindings: thermal: add YAML schema for sun8i-thermal driver bindings Vasily Khoruzhick
2019-11-27 17:44   ` Maxime Ripard
2019-11-27 18:07     ` Ondřej Jirman
2019-11-27 18:52       ` Vasily Khoruzhick
2019-11-27 20:23     ` Vasily Khoruzhick
2019-11-28  7:43       ` Maxime Ripard
2019-11-28 14:35         ` Frank Lee
2019-11-28 14:45           ` Frank Lee
2019-11-28 16:24             ` Vasily Khoruzhick
2019-11-27  5:29 ` [PATCH v6 3/7] ARM: dts: sun8i-a83t: Add thermal sensor and thermal zones Vasily Khoruzhick
2019-11-27  5:29 ` [PATCH v6 4/7] ARM: dts: sun8i-h3: " Vasily Khoruzhick
2019-11-27 19:40   ` Samuel Holland
2019-11-27  5:29 ` [PATCH v6 5/7] arm64: dts: allwinner: sun50i-h5: " Vasily Khoruzhick
2019-11-27  5:29 ` [PATCH v6 6/7] arm64: dts: allwinner: sun50i-h6: " Vasily Khoruzhick
2019-11-27  5:29 ` [PATCH v6 7/7] arm64: dts: allwinner: a64: Add thermal sensors " Vasily Khoruzhick

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).