]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
Thermal: handle thermal zone device properly during system sleep
authorZhang Rui <rui.zhang@intel.com>
Fri, 30 Oct 2015 08:31:58 +0000 (16:31 +0800)
committerZhang Rui <rui.zhang@intel.com>
Tue, 29 Dec 2015 07:59:53 +0000 (15:59 +0800)
commitff140fea847e1c2002a220571ab106c2456ed252
tree958ef262af25a87df477e4c9100a826541a477e8
parentbb431ba26c5cd0a17c941ca6c3a195a3a6d5d461
Thermal: handle thermal zone device properly during system sleep

Current thermal code does not handle system sleep well because
1. the cooling device cooling state may be changed during suspend
2. the previous temperature reading becomes invalid after resumed because
   it is got before system sleep
3. updating thermal zone device during suspending/resuming
   is wrong because some devices may have already been suspended
   or may have not been resumed.

Thus, the proper way to do this is to cancel all thermal zone
device update requirements during suspend/resume, and after all
the devices have been resumed, reset and update every registered
thermal zone devices.

This also fixes a regression introduced by:
Commit 19593a1fb1f6 ("ACPI / fan: convert to platform driver")
Because, with above commit applied, all the fan devices are attached
to the acpi_general_pm_domain, and they are turned on by the pm_domain
automatically after resume, without the awareness of thermal core.

CC: <stable@vger.kernel.org> #3.18+
Reference: https://bugzilla.kernel.org/show_bug.cgi?id=78201
Reference: https://bugzilla.kernel.org/show_bug.cgi?id=91411
Tested-by: Manuel Krause <manuelkrause@netscape.net>
Tested-by: szegad <szegadlo@poczta.onet.pl>
Tested-by: prash <prash.n.rao@gmail.com>
Tested-by: amish <ammdispose-arch@yahoo.com>
Tested-by: Matthias <morpheusxyz123@yahoo.de>
Reviewed-by: Javi Merino <javi.merino@arm.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Chen Yu <yu.c.chen@intel.com>
drivers/thermal/thermal_core.c