All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] Add Mediatek thermal dirver and dtsi
@ 2019-05-02 10:43 ` michael.kao
  0 siblings, 0 replies; 52+ messages in thread
From: michael.kao @ 2019-05-02 10:43 UTC (permalink / raw)
  To: michael.kao-NuS5LvNUpcJWk0Htik3J/w,
	fan.chen-NuS5LvNUpcJWk0Htik3J/w,
	jamesjj.liao-NuS5LvNUpcJWk0Htik3J/w,
	dawei.chien-NuS5LvNUpcJWk0Htik3J/w,
	louis.yu-NuS5LvNUpcJWk0Htik3J/w, roger.lu-NuS5LvNUpcJWk0Htik3J/w,
	Zhang Rui, Eduardo Valentin, Daniel Lezcano, Rob Herring,
	Mark Rutland, Matthias Brugger
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-pm-u79uwXL29TY76Z2rM5mHXA

This patchset supports for MT8183 chip to mtk_thermal.c.
Add thermal zone of all the thermal sensor in SoC for
another get temperatrue. And we add thermal zone nodes
and bind coolers.

This patch series base on these patches [1][2][3][4].

[1]support for reading chip ID and efuse (https://patchwork.kernel.org/patch/10902131/)
[2]arm64: dts: mt8183: Add reset-cells in infracfg (https://patchwork.kernel.org/patch/10908653/)
[3]clk: reset: Modify reset-controller driver (https://patchwork.kernel.org/patch/10908657/)
[4]PM / AVS: SVS: Introduce SVS engine (https://patchwork.kernel.org/patch/10923289/)

Matthias Kaehlcke (2):
	arm64: dts: mt8183: Configure CPU cooling
	arm64: dts: mt8183: Increase polling frequency for CPU thermal zone

Michael Kao (6):
	arm64: dts: mt8183: add thermal zone node
	arm64: dts: mt8183: add/update dynamic power coefficients
	arm64: dts: mt8183: Add #cooling-cells to CPU nodes
	thermal: mediatek: mt8183: fix bank number settings
	thermal: mediatek: add another get_temp ops for thermal sensors
	thermal: mediatek: use spinlock to protect PTPCORESEL

 arch/arm64/boot/dts/mediatek/mt8183.dtsi | 137 +++++++++++++++++++++++++++++++
 drivers/thermal/mtk_thermal.c            |  82 ++++++++++++++----
 2 files changed, 205 insertions(+), 14 deletions(-)

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

end of thread, other threads:[~2019-05-11  2:31 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-02 10:43 [PATCH 0/8] Add Mediatek thermal dirver and dtsi michael.kao
2019-05-02 10:43 ` michael.kao
2019-05-02 10:43 ` [PATCH 2/8] arm64: dts: mt8183: add/update dynamic power coefficients michael.kao
2019-05-02 10:43   ` michael.kao
2019-05-03  7:16   ` Hsin-Yi Wang
2019-05-03  7:16     ` Hsin-Yi Wang
2019-05-08 12:27     ` Michael Kao
2019-05-08 12:27       ` Michael Kao
2019-05-08 12:27       ` Michael Kao
2019-05-02 10:43 ` [PATCH 3/8] arm64: dts: mt8183: Add #cooling-cells to CPU nodes michael.kao
2019-05-02 10:43   ` michael.kao
2019-05-06  5:25   ` Eddie Huang
2019-05-06  5:25     ` Eddie Huang
2019-05-08 12:29     ` Michael Kao
2019-05-08 12:29       ` Michael Kao
2019-05-02 10:43 ` [PATCH 4/8] arm64: dts: mt8183: Configure CPU cooling michael.kao
2019-05-02 10:43   ` michael.kao
2019-05-07  8:57   ` Hsin-Yi Wang
2019-05-07  8:57     ` Hsin-Yi Wang
2019-05-02 10:43 ` [PATCH 5/8] arm64: dts: mt8183: Increase polling frequency for CPU thermal zone michael.kao
2019-05-02 10:43   ` michael.kao
2019-05-07  8:58   ` Hsin-Yi Wang
2019-05-07  8:58     ` Hsin-Yi Wang
     [not found] ` <1556793795-25204-1-git-send-email-michael.kao-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2019-05-02 10:43   ` [PATCH 1/8] arm64: dts: mt8183: add thermal zone node michael.kao
2019-05-02 10:43     ` michael.kao
2019-05-03  8:03     ` Hsin-Yi Wang
2019-05-03  8:03       ` Hsin-Yi Wang
2019-05-03 16:46       ` Matthias Kaehlcke
2019-05-03 16:46         ` Matthias Kaehlcke
2019-05-06 10:43         ` Daniel Lezcano
2019-05-06 10:43           ` Daniel Lezcano
2019-05-08 12:23           ` Michael Kao
2019-05-08 12:23             ` Michael Kao
2019-05-08 12:23             ` Michael Kao
2019-05-10  8:14             ` Daniel Lezcano
2019-05-10  8:14               ` Daniel Lezcano
2019-05-10 10:52             ` Michael Kao
2019-05-10 10:52               ` Michael Kao
2019-05-10 10:52               ` Michael Kao
2019-05-06  9:43     ` Daniel Lezcano
2019-05-06  9:43       ` Daniel Lezcano
2019-05-02 10:43   ` [PATCH 6/8] thermal: mediatek: mt8183: fix bank number settings michael.kao
2019-05-02 10:43     ` michael.kao
2019-05-07  8:58     ` Hsin-Yi Wang
2019-05-07  8:58       ` Hsin-Yi Wang
2019-05-02 10:43 ` [PATCH 7/8] thermal: mediatek: add another get_temp ops for thermal sensors michael.kao
2019-05-02 10:43   ` michael.kao
2019-05-11  2:31   ` Nicolas Boichat
2019-05-11  2:31     ` Nicolas Boichat
2019-05-11  2:31     ` Nicolas Boichat
2019-05-02 10:43 ` [PATCH 8/8] thermal: mediatek: use spinlock to protect PTPCORESEL michael.kao
2019-05-02 10:43   ` michael.kao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.