2019-05-27 06:55:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* acpi_thermal.c - ACPI Thermal Zone Driver ($Revision: 41 $)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
|
|
|
|
* Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
|
|
|
|
*
|
|
|
|
* This driver fully implements the ACPI thermal policy as described in the
|
|
|
|
* ACPI 2.0 Specification.
|
|
|
|
*
|
|
|
|
* TBD: 1. Implement passive cooling hysteresis.
|
|
|
|
* 2. Enhance passive cooling (CPU) states/limit interface to support
|
|
|
|
* concepts of 'multiple limiters', upper/lower limits, etc.
|
|
|
|
*/
|
|
|
|
|
2021-02-03 18:49:21 +00:00
|
|
|
#define pr_fmt(fmt) "ACPI: thermal: " fmt
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2007-08-12 04:13:02 +00:00
|
|
|
#include <linux/dmi.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/types.h>
|
[PATCH] remove many unneeded #includes of sched.h
After Al Viro (finally) succeeded in removing the sched.h #include in module.h
recently, it makes sense again to remove other superfluous sched.h includes.
There are quite a lot of files which include it but don't actually need
anything defined in there. Presumably these includes were once needed for
macros that used to live in sched.h, but moved to other header files in the
course of cleaning it up.
To ease the pain, this time I did not fiddle with any header files and only
removed #includes from .c-files, which tend to cause less trouble.
Compile tested against 2.6.20-rc2 and 2.6.20-rc2-mm2 (with offsets) on alpha,
arm, i386, ia64, mips, powerpc, and x86_64 with allnoconfig, defconfig,
allmodconfig, and allyesconfig as well as a few randconfigs on x86_64 and all
configs in arch/arm/configs on arm. I also checked that no new warnings were
introduced by the patch (actually, some warnings are removed that were emitted
by unnecessarily included header files).
Signed-off-by: Tim Schmielau <tim@physik3.uni-rostock.de>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-02-14 08:33:14 +00:00
|
|
|
#include <linux/jiffies.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/kmod.h>
|
2007-07-18 01:37:02 +00:00
|
|
|
#include <linux/reboot.h>
|
2009-03-03 01:47:17 +00:00
|
|
|
#include <linux/device.h>
|
2008-01-17 07:51:11 +00:00
|
|
|
#include <linux/thermal.h>
|
2013-12-03 00:49:16 +00:00
|
|
|
#include <linux/acpi.h>
|
2014-03-04 06:24:46 +00:00
|
|
|
#include <linux/workqueue.h>
|
2016-12-24 19:46:01 +00:00
|
|
|
#include <linux/uaccess.h>
|
2020-01-31 06:15:33 +00:00
|
|
|
#include <linux/units.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define ACPI_THERMAL_CLASS "thermal_zone"
|
|
|
|
#define ACPI_THERMAL_DEVICE_NAME "Thermal Zone"
|
|
|
|
#define ACPI_THERMAL_NOTIFY_TEMPERATURE 0x80
|
|
|
|
#define ACPI_THERMAL_NOTIFY_THRESHOLDS 0x81
|
|
|
|
#define ACPI_THERMAL_NOTIFY_DEVICES 0x82
|
|
|
|
#define ACPI_THERMAL_NOTIFY_CRITICAL 0xF0
|
|
|
|
#define ACPI_THERMAL_NOTIFY_HOT 0xF1
|
|
|
|
#define ACPI_THERMAL_MODE_ACTIVE 0x00
|
|
|
|
|
2023-06-04 12:15:20 +00:00
|
|
|
#define ACPI_THERMAL_MAX_ACTIVE 10
|
|
|
|
#define ACPI_THERMAL_MAX_LIMIT_STR_LEN 65
|
|
|
|
|
2023-09-21 17:49:24 +00:00
|
|
|
#define ACPI_THERMAL_TRIP_PASSIVE (-1)
|
|
|
|
|
2023-06-04 12:15:20 +00:00
|
|
|
/*
|
|
|
|
* This exception is thrown out in two cases:
|
|
|
|
* 1.An invalid trip point becomes invalid or a valid trip point becomes invalid
|
|
|
|
* when re-evaluating the AML code.
|
|
|
|
* 2.TODO: Devices listed in _PSL, _ALx, _TZD may change.
|
|
|
|
* We need to re-bind the cooling devices of a thermal zone when this occurs.
|
|
|
|
*/
|
2023-09-12 18:46:02 +00:00
|
|
|
#define ACPI_THERMAL_TRIPS_EXCEPTION(tz, str) \
|
2023-06-04 12:15:20 +00:00
|
|
|
do { \
|
2023-09-12 18:46:02 +00:00
|
|
|
acpi_handle_info(tz->device->handle, \
|
|
|
|
"ACPI thermal trip point %s changed\n" \
|
|
|
|
"Please report to linux-acpi@vger.kernel.org\n", str); \
|
2023-06-04 12:15:20 +00:00
|
|
|
} while (0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-08-12 04:12:54 +00:00
|
|
|
static int act;
|
|
|
|
module_param(act, int, 0644);
|
2007-08-14 19:12:56 +00:00
|
|
|
MODULE_PARM_DESC(act, "Disable or override all lowest active trip points.");
|
2007-08-12 04:12:54 +00:00
|
|
|
|
2007-08-14 19:49:32 +00:00
|
|
|
static int crt;
|
|
|
|
module_param(crt, int, 0644);
|
|
|
|
MODULE_PARM_DESC(crt, "Disable or lower all critical trip points.");
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
static int tzp;
|
ACPI: thermal: expose "thermal.tzp=" to set global polling frequency
Thermal Zone Polling frequency (_TZP) is an optional ACPI object
recommending the rate that the OS should poll the associated thermal zone.
If _TZP is 0, no polling should be used.
If _TZP is non-zero, then the platform recommends that
the OS poll the thermal zone at the specified rate.
The minimum period is 30 seconds.
The maximum period is 5 minutes.
(note _TZP and thermal.tzp units are in deci-seconds,
so _TZP = 300 corresponds to 30 seconds)
If _TZP is not present, ACPI 3.0b recommends that the
thermal zone be polled at an "OS provided default frequency".
However, common industry practice is:
1. The BIOS never specifies any _TZP
2. High volume OS's from this century never poll any thermal zones
Ie. The OS depends on the platform's ability to
provoke thermal events when necessary, and
the "OS provided default frequency" is "never":-)
There is a proposal that ACPI 4.0 be updated to reflect
common industry practice -- ie. no _TZP, no polling.
The Linux kernel already follows this practice --
thermal zones are not polled unless _TZP is present and non-zero.
But thermal zone polling is useful as a workaround for systems
which have ACPI thermal control, but have an issue preventing
thermal events. Indeed, some Linux distributions still
set a non-zero thermal polling frequency for this reason.
But rather than ask the user to write a polling frequency
into all the /proc/acpi/thermal_zone/*/polling_frequency
files, here we simply document and expose the already
existing module parameter to do the same at system level,
to simplify debugging those broken platforms.
Note that thermal.tzp is a module-load time parameter only.
Signed-off-by: Len Brown <len.brown@intel.com>
2007-08-12 04:12:26 +00:00
|
|
|
module_param(tzp, int, 0444);
|
2007-08-14 19:12:56 +00:00
|
|
|
MODULE_PARM_DESC(tzp, "Thermal zone polling frequency, in 1/10 seconds.");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-08-12 04:12:17 +00:00
|
|
|
static int off;
|
|
|
|
module_param(off, int, 0);
|
2007-08-14 19:12:56 +00:00
|
|
|
MODULE_PARM_DESC(off, "Set to disable ACPI thermal support.");
|
2007-08-12 04:12:17 +00:00
|
|
|
|
2007-08-12 04:12:35 +00:00
|
|
|
static int psv;
|
|
|
|
module_param(psv, int, 0644);
|
2007-08-14 19:12:56 +00:00
|
|
|
MODULE_PARM_DESC(psv, "Disable or override all passive trip points.");
|
2007-08-12 04:12:35 +00:00
|
|
|
|
2014-03-04 06:24:46 +00:00
|
|
|
static struct workqueue_struct *acpi_thermal_pm_queue;
|
|
|
|
|
2023-08-07 18:10:06 +00:00
|
|
|
struct acpi_thermal_trip {
|
2023-09-21 18:06:58 +00:00
|
|
|
unsigned long temp_dk;
|
2023-09-21 17:48:33 +00:00
|
|
|
struct acpi_handle_list devices;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_thermal_passive {
|
2023-08-07 18:10:06 +00:00
|
|
|
struct acpi_thermal_trip trip;
|
2005-08-05 04:44:28 +00:00
|
|
|
unsigned long tc1;
|
|
|
|
unsigned long tc2;
|
|
|
|
unsigned long tsp;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_thermal_active {
|
2023-08-07 18:10:06 +00:00
|
|
|
struct acpi_thermal_trip trip;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_thermal_trips {
|
|
|
|
struct acpi_thermal_passive passive;
|
|
|
|
struct acpi_thermal_active active[ACPI_THERMAL_MAX_ACTIVE];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_thermal {
|
2022-10-04 16:31:11 +00:00
|
|
|
struct acpi_device *device;
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_bus_id name;
|
2023-09-21 18:06:58 +00:00
|
|
|
unsigned long temp_dk;
|
|
|
|
unsigned long last_temp_dk;
|
2005-08-05 04:44:28 +00:00
|
|
|
unsigned long polling_frequency;
|
|
|
|
volatile u8 zombie;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct acpi_thermal_trips trips;
|
2023-08-09 11:07:23 +00:00
|
|
|
struct thermal_trip *trip_table;
|
2008-01-17 07:51:11 +00:00
|
|
|
struct thermal_zone_device *thermal_zone;
|
2020-01-31 06:15:33 +00:00
|
|
|
int kelvin_offset; /* in millidegrees */
|
2014-03-04 06:24:46 +00:00
|
|
|
struct work_struct thermal_check_work;
|
2021-01-14 18:34:22 +00:00
|
|
|
struct mutex thermal_check_lock;
|
|
|
|
refcount_t thermal_check_count;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Thermal Zone Management
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_thermal_get_temperature(struct acpi_thermal *tz)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
2008-10-10 06:22:59 +00:00
|
|
|
unsigned long long tmp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!tz)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2023-09-21 18:06:58 +00:00
|
|
|
tz->last_temp_dk = tz->temp_dk;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-10-10 06:22:59 +00:00
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_TMP", NULL, &tmp);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ACPI_FAILURE(status))
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2023-09-21 18:06:58 +00:00
|
|
|
tz->temp_dk = tmp;
|
2021-02-03 18:49:21 +00:00
|
|
|
|
|
|
|
acpi_handle_debug(tz->device->handle, "Temperature is %lu dK\n",
|
2023-09-21 18:06:58 +00:00
|
|
|
tz->temp_dk);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_thermal_get_polling_frequency(struct acpi_thermal *tz)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
2008-10-10 06:22:59 +00:00
|
|
|
unsigned long long tmp;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!tz)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-10-10 06:22:59 +00:00
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_TZP", NULL, &tmp);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ACPI_FAILURE(status))
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-10-10 06:22:59 +00:00
|
|
|
tz->polling_frequency = tmp;
|
2021-02-03 18:49:21 +00:00
|
|
|
acpi_handle_debug(tz->device->handle, "Polling frequency is %lu dS\n",
|
|
|
|
tz->polling_frequency);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2023-08-09 11:07:23 +00:00
|
|
|
static int acpi_thermal_temp(struct acpi_thermal *tz, int temp_deci_k)
|
|
|
|
{
|
|
|
|
if (temp_deci_k == THERMAL_TEMP_INVALID)
|
|
|
|
return THERMAL_TEMP_INVALID;
|
|
|
|
|
|
|
|
return deci_kelvin_to_millicelsius_with_offset(temp_deci_k,
|
|
|
|
tz->kelvin_offset);
|
|
|
|
}
|
|
|
|
|
2023-09-20 13:03:46 +00:00
|
|
|
static bool acpi_thermal_trip_valid(struct acpi_thermal_trip *acpi_trip)
|
2023-09-12 18:43:52 +00:00
|
|
|
{
|
2023-09-21 18:06:58 +00:00
|
|
|
return acpi_trip->temp_dk != THERMAL_TEMP_INVALID;
|
2023-09-12 18:43:52 +00:00
|
|
|
}
|
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
static int active_trip_index(struct acpi_thermal *tz,
|
|
|
|
struct acpi_thermal_trip *acpi_trip)
|
|
|
|
{
|
|
|
|
struct acpi_thermal_active *active;
|
|
|
|
|
|
|
|
active = container_of(acpi_trip, struct acpi_thermal_active, trip);
|
|
|
|
return active - tz->trips.active;
|
|
|
|
}
|
|
|
|
|
2023-09-12 18:43:52 +00:00
|
|
|
static long get_passive_temp(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
unsigned long long tmp;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_PSV", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return THERMAL_TEMP_INVALID;
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2023-10-03 13:18:31 +00:00
|
|
|
static long get_active_temp(struct acpi_thermal *tz, int index)
|
|
|
|
{
|
|
|
|
char method[] = { '_', 'A', 'C', '0' + index, '\0' };
|
|
|
|
unsigned long long tmp;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, method, NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return THERMAL_TEMP_INVALID;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If an override has been provided, apply it so there are no active
|
|
|
|
* trips with thresholds greater than the override.
|
|
|
|
*/
|
|
|
|
if (act > 0) {
|
|
|
|
unsigned long long override = celsius_to_deci_kelvin(act);
|
|
|
|
|
|
|
|
if (tmp > override)
|
|
|
|
tmp = override;
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2023-10-03 13:21:30 +00:00
|
|
|
static void acpi_thermal_update_trip(struct acpi_thermal *tz,
|
2023-10-03 13:24:12 +00:00
|
|
|
const struct thermal_trip *trip)
|
2023-09-12 18:43:52 +00:00
|
|
|
{
|
2023-10-03 13:24:12 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip = trip->priv;
|
2023-09-12 18:43:52 +00:00
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
if (trip->type == THERMAL_TRIP_PASSIVE) {
|
2023-10-03 13:21:30 +00:00
|
|
|
if (psv > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
acpi_trip->temp_dk = get_passive_temp(tz);
|
|
|
|
} else {
|
2023-10-03 13:24:12 +00:00
|
|
|
int index = active_trip_index(tz, acpi_trip);
|
|
|
|
|
2023-10-03 13:21:30 +00:00
|
|
|
acpi_trip->temp_dk = get_active_temp(tz, index);
|
|
|
|
}
|
|
|
|
|
2023-09-20 13:03:46 +00:00
|
|
|
if (!acpi_thermal_trip_valid(acpi_trip))
|
2023-09-12 18:46:02 +00:00
|
|
|
ACPI_THERMAL_TRIPS_EXCEPTION(tz, "state");
|
2023-09-12 18:43:52 +00:00
|
|
|
}
|
|
|
|
|
2023-09-21 17:49:24 +00:00
|
|
|
static bool update_trip_devices(struct acpi_thermal *tz,
|
|
|
|
struct acpi_thermal_trip *acpi_trip,
|
|
|
|
int index, bool compare)
|
2023-09-12 18:43:52 +00:00
|
|
|
{
|
2023-09-27 20:17:25 +00:00
|
|
|
struct acpi_handle_list devices = { 0 };
|
2023-09-21 17:49:24 +00:00
|
|
|
char method[] = "_PSL";
|
2023-09-12 18:43:52 +00:00
|
|
|
acpi_status status;
|
|
|
|
|
2023-09-21 17:49:24 +00:00
|
|
|
if (index != ACPI_THERMAL_TRIP_PASSIVE) {
|
|
|
|
method[1] = 'A';
|
|
|
|
method[2] = 'L';
|
|
|
|
method[3] = '0' + index;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = acpi_evaluate_reference(tz->device->handle, method, NULL, &devices);
|
2023-09-12 18:43:52 +00:00
|
|
|
if (ACPI_FAILURE(status)) {
|
2023-09-21 17:49:24 +00:00
|
|
|
acpi_handle_info(tz->device->handle, "%s evaluation failure\n", method);
|
2023-09-12 18:43:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-09-27 20:17:25 +00:00
|
|
|
if (acpi_handle_list_equal(&acpi_trip->devices, &devices)) {
|
|
|
|
acpi_handle_list_free(&devices);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compare)
|
2023-09-12 18:46:02 +00:00
|
|
|
ACPI_THERMAL_TRIPS_EXCEPTION(tz, "device");
|
2023-09-12 18:43:52 +00:00
|
|
|
|
2023-09-27 20:17:25 +00:00
|
|
|
acpi_handle_list_replace(&acpi_trip->devices, &devices);
|
2023-09-12 18:43:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
static void acpi_thermal_update_trip_devices(struct acpi_thermal *tz,
|
|
|
|
const struct thermal_trip *trip)
|
2023-09-12 18:43:52 +00:00
|
|
|
{
|
2023-10-03 13:24:12 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip = trip->priv;
|
|
|
|
int index = trip->type == THERMAL_TRIP_PASSIVE ?
|
|
|
|
ACPI_THERMAL_TRIP_PASSIVE : active_trip_index(tz, acpi_trip);
|
2023-09-12 18:43:52 +00:00
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
if (update_trip_devices(tz, acpi_trip, index, true))
|
2023-09-12 18:43:52 +00:00
|
|
|
return;
|
|
|
|
|
2023-09-21 18:06:58 +00:00
|
|
|
acpi_trip->temp_dk = THERMAL_TEMP_INVALID;
|
2023-09-12 18:46:02 +00:00
|
|
|
ACPI_THERMAL_TRIPS_EXCEPTION(tz, "state");
|
2023-09-20 12:35:46 +00:00
|
|
|
}
|
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
struct adjust_trip_data {
|
|
|
|
struct acpi_thermal *tz;
|
|
|
|
u32 event;
|
|
|
|
};
|
|
|
|
|
2023-08-09 11:07:23 +00:00
|
|
|
static int acpi_thermal_adjust_trip(struct thermal_trip *trip, void *data)
|
|
|
|
{
|
|
|
|
struct acpi_thermal_trip *acpi_trip = trip->priv;
|
2023-10-03 13:24:12 +00:00
|
|
|
struct adjust_trip_data *atd = data;
|
|
|
|
struct acpi_thermal *tz = atd->tz;
|
2023-08-09 11:07:23 +00:00
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
if (!acpi_trip || !acpi_thermal_trip_valid(acpi_trip))
|
2023-08-09 11:07:23 +00:00
|
|
|
return 0;
|
|
|
|
|
2023-10-03 13:24:12 +00:00
|
|
|
if (atd->event == ACPI_THERMAL_NOTIFY_THRESHOLDS)
|
|
|
|
acpi_thermal_update_trip(tz, trip);
|
|
|
|
else
|
|
|
|
acpi_thermal_update_trip_devices(tz, trip);
|
|
|
|
|
2023-09-20 13:03:46 +00:00
|
|
|
if (acpi_thermal_trip_valid(acpi_trip))
|
2023-09-21 18:06:58 +00:00
|
|
|
trip->temperature = acpi_thermal_temp(tz, acpi_trip->temp_dk);
|
2023-08-09 11:07:23 +00:00
|
|
|
else
|
|
|
|
trip->temperature = THERMAL_TEMP_INVALID;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-17 09:24:27 +00:00
|
|
|
static void acpi_queue_thermal_check(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
if (!work_pending(&tz->thermal_check_work))
|
|
|
|
queue_work(acpi_thermal_pm_queue, &tz->thermal_check_work);
|
|
|
|
}
|
|
|
|
|
2023-08-17 09:25:29 +00:00
|
|
|
static void acpi_thermal_trips_update(struct acpi_thermal *tz, u32 event)
|
2023-08-17 09:24:27 +00:00
|
|
|
{
|
2023-10-03 13:24:12 +00:00
|
|
|
struct adjust_trip_data atd = { .tz = tz, .event = event };
|
2023-08-17 09:25:29 +00:00
|
|
|
struct acpi_device *adev = tz->device;
|
|
|
|
|
2023-08-17 09:24:27 +00:00
|
|
|
/*
|
2023-10-03 13:24:12 +00:00
|
|
|
* Use thermal_zone_for_each_trip() to carry out the trip points
|
2023-08-17 09:24:27 +00:00
|
|
|
* update, so as to protect thermal_get_trend() from getting stale
|
|
|
|
* trip point temperatures and to prevent thermal_zone_device_update()
|
|
|
|
* invoked from acpi_thermal_check_fn() from producing inconsistent
|
|
|
|
* results.
|
|
|
|
*/
|
2023-10-03 13:24:12 +00:00
|
|
|
thermal_zone_for_each_trip(tz->thermal_zone,
|
|
|
|
acpi_thermal_adjust_trip, &atd);
|
2023-08-17 09:24:27 +00:00
|
|
|
acpi_queue_thermal_check(tz);
|
2023-08-17 09:25:29 +00:00
|
|
|
acpi_bus_generate_netlink_event(adev->pnp.device_class,
|
|
|
|
dev_name(&adev->dev), event, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2023-09-12 18:41:06 +00:00
|
|
|
static long acpi_thermal_get_critical_trip(struct acpi_thermal *tz)
|
2023-09-12 18:35:40 +00:00
|
|
|
{
|
|
|
|
unsigned long long tmp;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
if (crt > 0) {
|
|
|
|
tmp = celsius_to_deci_kelvin(crt);
|
|
|
|
goto set;
|
|
|
|
}
|
|
|
|
if (crt == -1) {
|
|
|
|
acpi_handle_debug(tz->device->handle, "Critical threshold disabled\n");
|
2023-09-21 18:04:49 +00:00
|
|
|
return THERMAL_TEMP_INVALID;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_CRT", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_handle_debug(tz->device->handle, "No critical threshold\n");
|
2023-09-21 18:04:49 +00:00
|
|
|
return THERMAL_TEMP_INVALID;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
if (tmp <= 2732) {
|
|
|
|
/*
|
|
|
|
* Below zero (Celsius) values clearly aren't right for sure,
|
|
|
|
* so discard them as invalid.
|
|
|
|
*/
|
|
|
|
pr_info(FW_BUG "Invalid critical threshold (%llu)\n", tmp);
|
2023-09-21 18:04:49 +00:00
|
|
|
return THERMAL_TEMP_INVALID;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set:
|
2023-09-12 18:41:06 +00:00
|
|
|
acpi_handle_debug(tz->device->handle, "Critical threshold [%llu]\n", tmp);
|
|
|
|
return tmp;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
|
2023-09-12 18:41:06 +00:00
|
|
|
static long acpi_thermal_get_hot_trip(struct acpi_thermal *tz)
|
2023-09-12 18:35:40 +00:00
|
|
|
{
|
|
|
|
unsigned long long tmp;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_HOT", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_handle_debug(tz->device->handle, "No hot threshold\n");
|
2023-09-12 18:41:06 +00:00
|
|
|
return THERMAL_TEMP_INVALID;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
|
2023-09-12 18:41:06 +00:00
|
|
|
acpi_handle_debug(tz->device->handle, "Hot threshold [%llu]\n", tmp);
|
|
|
|
return tmp;
|
2023-09-12 18:35:40 +00:00
|
|
|
}
|
|
|
|
|
2023-09-21 17:51:19 +00:00
|
|
|
static bool passive_trip_params_init(struct acpi_thermal *tz)
|
2023-09-12 18:43:52 +00:00
|
|
|
{
|
|
|
|
unsigned long long tmp;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_TC1", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
2023-09-21 17:51:19 +00:00
|
|
|
return false;
|
2023-09-12 18:43:52 +00:00
|
|
|
|
|
|
|
tz->trips.passive.tc1 = tmp;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_TC2", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
2023-09-21 17:51:19 +00:00
|
|
|
return false;
|
2023-09-12 18:43:52 +00:00
|
|
|
|
|
|
|
tz->trips.passive.tc2 = tmp;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(tz->device->handle, "_TSP", NULL, &tmp);
|
|
|
|
if (ACPI_FAILURE(status))
|
2023-09-21 17:51:19 +00:00
|
|
|
return false;
|
2023-09-12 18:43:52 +00:00
|
|
|
|
|
|
|
tz->trips.passive.tsp = tmp;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-09-21 17:51:19 +00:00
|
|
|
static bool acpi_thermal_init_trip(struct acpi_thermal *tz, int index)
|
2023-09-20 12:35:46 +00:00
|
|
|
{
|
2023-09-21 17:51:19 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip;
|
2023-09-20 12:35:46 +00:00
|
|
|
long temp;
|
|
|
|
|
2023-09-21 17:51:19 +00:00
|
|
|
if (index == ACPI_THERMAL_TRIP_PASSIVE) {
|
|
|
|
acpi_trip = &tz->trips.passive.trip;
|
|
|
|
|
|
|
|
if (psv == -1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (!passive_trip_params_init(tz))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
temp = psv > 0 ? celsius_to_deci_kelvin(psv) :
|
|
|
|
get_passive_temp(tz);
|
|
|
|
} else {
|
|
|
|
acpi_trip = &tz->trips.active[index].trip;
|
|
|
|
|
|
|
|
if (act == -1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
temp = get_active_temp(tz, index);
|
|
|
|
}
|
2023-09-20 12:35:46 +00:00
|
|
|
|
|
|
|
if (temp == THERMAL_TEMP_INVALID)
|
|
|
|
goto fail;
|
|
|
|
|
2023-09-21 17:51:19 +00:00
|
|
|
if (!update_trip_devices(tz, acpi_trip, index, false))
|
2023-09-20 12:35:46 +00:00
|
|
|
goto fail;
|
|
|
|
|
2023-09-21 18:06:58 +00:00
|
|
|
acpi_trip->temp_dk = temp;
|
2023-09-20 12:35:46 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
fail:
|
2023-09-21 18:06:58 +00:00
|
|
|
acpi_trip->temp_dk = THERMAL_TEMP_INVALID;
|
2023-09-20 12:35:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-17 07:51:25 +00:00
|
|
|
static int acpi_thermal_get_trip_points(struct acpi_thermal *tz)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2023-09-12 18:37:59 +00:00
|
|
|
unsigned int count = 0;
|
2023-08-17 09:24:27 +00:00
|
|
|
int i;
|
2010-02-16 21:55:51 +00:00
|
|
|
|
2023-09-21 17:51:19 +00:00
|
|
|
if (acpi_thermal_init_trip(tz, ACPI_THERMAL_TRIP_PASSIVE))
|
2023-09-12 18:37:59 +00:00
|
|
|
count++;
|
|
|
|
|
|
|
|
for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
|
2023-09-21 17:51:19 +00:00
|
|
|
if (acpi_thermal_init_trip(tz, i))
|
2023-09-12 18:37:59 +00:00
|
|
|
count++;
|
|
|
|
else
|
|
|
|
break;
|
2010-02-16 21:55:51 +00:00
|
|
|
|
|
|
|
}
|
2023-09-12 18:37:59 +00:00
|
|
|
|
2023-09-28 15:45:59 +00:00
|
|
|
while (++i < ACPI_THERMAL_MAX_ACTIVE)
|
2023-09-21 18:06:58 +00:00
|
|
|
tz->trips.active[i].trip.temp_dk = THERMAL_TEMP_INVALID;
|
2023-09-28 15:45:59 +00:00
|
|
|
|
2023-09-12 18:37:59 +00:00
|
|
|
return count;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-01-17 07:51:11 +00:00
|
|
|
/* sys I/F for generic thermal sysfs support */
|
2008-02-27 23:51:30 +00:00
|
|
|
|
2015-07-24 06:12:54 +00:00
|
|
|
static int thermal_get_temp(struct thermal_zone_device *thermal, int *temp)
|
2008-01-17 07:51:11 +00:00
|
|
|
{
|
2023-03-01 20:14:32 +00:00
|
|
|
struct acpi_thermal *tz = thermal_zone_device_priv(thermal);
|
2008-04-10 08:20:23 +00:00
|
|
|
int result;
|
2008-01-17 07:51:11 +00:00
|
|
|
|
|
|
|
if (!tz)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2008-04-10 08:20:23 +00:00
|
|
|
result = acpi_thermal_get_temperature(tz);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
2023-09-21 18:06:58 +00:00
|
|
|
*temp = deci_kelvin_to_millicelsius_with_offset(tz->temp_dk,
|
2014-03-25 02:40:09 +00:00
|
|
|
tz->kelvin_offset);
|
2008-11-27 17:48:13 +00:00
|
|
|
return 0;
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
|
2012-06-27 01:54:33 +00:00
|
|
|
static int thermal_get_trend(struct thermal_zone_device *thermal,
|
2023-09-07 18:18:56 +00:00
|
|
|
const struct thermal_trip *trip,
|
2023-08-22 11:40:06 +00:00
|
|
|
enum thermal_trend *trend)
|
2012-06-27 01:54:33 +00:00
|
|
|
{
|
2023-03-01 20:14:32 +00:00
|
|
|
struct acpi_thermal *tz = thermal_zone_device_priv(thermal);
|
2023-08-07 18:17:07 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip;
|
2023-08-22 11:40:06 +00:00
|
|
|
int t;
|
2012-06-27 01:54:33 +00:00
|
|
|
|
2023-08-22 11:40:06 +00:00
|
|
|
if (!tz || !trip)
|
2012-06-27 01:54:33 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2023-08-22 11:40:06 +00:00
|
|
|
acpi_trip = trip->priv;
|
2023-09-20 13:03:46 +00:00
|
|
|
if (!acpi_trip || !acpi_thermal_trip_valid(acpi_trip))
|
2023-08-07 18:17:07 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2023-08-22 11:40:06 +00:00
|
|
|
switch (trip->type) {
|
|
|
|
case THERMAL_TRIP_PASSIVE:
|
2023-09-21 18:06:58 +00:00
|
|
|
t = tz->trips.passive.tc1 * (tz->temp_dk -
|
|
|
|
tz->last_temp_dk) +
|
|
|
|
tz->trips.passive.tc2 * (tz->temp_dk -
|
|
|
|
acpi_trip->temp_dk);
|
2023-08-07 18:17:07 +00:00
|
|
|
if (t > 0)
|
2013-04-26 09:19:53 +00:00
|
|
|
*trend = THERMAL_TREND_RAISING;
|
2023-08-07 18:17:07 +00:00
|
|
|
else if (t < 0)
|
|
|
|
*trend = THERMAL_TREND_DROPPING;
|
|
|
|
else
|
|
|
|
*trend = THERMAL_TREND_STABLE;
|
|
|
|
|
|
|
|
return 0;
|
2012-06-27 01:54:33 +00:00
|
|
|
|
2023-08-22 11:40:06 +00:00
|
|
|
case THERMAL_TRIP_ACTIVE:
|
2023-09-21 18:06:58 +00:00
|
|
|
t = acpi_thermal_temp(tz, tz->temp_dk);
|
2023-08-22 11:40:06 +00:00
|
|
|
if (t <= trip->temperature)
|
2023-08-07 18:17:07 +00:00
|
|
|
break;
|
2023-08-22 11:40:06 +00:00
|
|
|
|
|
|
|
*trend = THERMAL_TREND_RAISING;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2023-08-07 18:17:07 +00:00
|
|
|
}
|
2022-10-04 16:31:11 +00:00
|
|
|
|
2023-08-07 18:17:07 +00:00
|
|
|
return -EINVAL;
|
2012-06-27 01:54:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-10 12:15:12 +00:00
|
|
|
static void acpi_thermal_zone_device_hot(struct thermal_zone_device *thermal)
|
2008-12-03 17:55:32 +00:00
|
|
|
{
|
2023-03-01 20:14:32 +00:00
|
|
|
struct acpi_thermal *tz = thermal_zone_device_priv(thermal);
|
2008-12-03 17:55:32 +00:00
|
|
|
|
|
|
|
acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
|
2020-12-10 12:15:12 +00:00
|
|
|
dev_name(&tz->device->dev),
|
|
|
|
ACPI_THERMAL_NOTIFY_HOT, 1);
|
|
|
|
}
|
2008-12-03 17:55:32 +00:00
|
|
|
|
2020-12-10 12:15:12 +00:00
|
|
|
static void acpi_thermal_zone_device_critical(struct thermal_zone_device *thermal)
|
|
|
|
{
|
2023-03-01 20:14:32 +00:00
|
|
|
struct acpi_thermal *tz = thermal_zone_device_priv(thermal);
|
2008-12-03 17:55:32 +00:00
|
|
|
|
2020-12-10 12:15:12 +00:00
|
|
|
acpi_bus_generate_netlink_event(tz->device->pnp.device_class,
|
|
|
|
dev_name(&tz->device->dev),
|
|
|
|
ACPI_THERMAL_NOTIFY_CRITICAL, 1);
|
|
|
|
|
|
|
|
thermal_zone_device_critical(thermal);
|
2008-12-03 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
2023-09-21 18:02:59 +00:00
|
|
|
struct acpi_thermal_bind_data {
|
|
|
|
struct thermal_zone_device *thermal;
|
|
|
|
struct thermal_cooling_device *cdev;
|
|
|
|
bool bind;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int bind_unbind_cdev_cb(struct thermal_trip *trip, void *arg)
|
2008-01-17 07:51:11 +00:00
|
|
|
{
|
2023-09-21 18:02:59 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip = trip->priv;
|
|
|
|
struct acpi_thermal_bind_data *bd = arg;
|
|
|
|
struct thermal_zone_device *thermal = bd->thermal;
|
|
|
|
struct thermal_cooling_device *cdev = bd->cdev;
|
|
|
|
struct acpi_device *cdev_adev = cdev->devdata;
|
2008-01-17 07:51:11 +00:00
|
|
|
int i;
|
|
|
|
|
2023-09-21 18:02:59 +00:00
|
|
|
/* Skip critical and hot trips. */
|
|
|
|
if (!acpi_trip)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < acpi_trip->devices.count; i++) {
|
|
|
|
acpi_handle handle = acpi_trip->devices.handles[i];
|
|
|
|
struct acpi_device *adev = acpi_fetch_acpi_dev(handle);
|
|
|
|
|
|
|
|
if (adev != cdev_adev)
|
|
|
|
continue;
|
2022-10-04 16:31:11 +00:00
|
|
|
|
2023-09-21 18:02:59 +00:00
|
|
|
if (bd->bind) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = thermal_bind_cdev_to_trip(thermal, trip, cdev,
|
|
|
|
THERMAL_NO_LIMIT,
|
|
|
|
THERMAL_NO_LIMIT,
|
|
|
|
THERMAL_WEIGHT_DEFAULT);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
|
|
thermal_unbind_cdev_from_trip(thermal, trip, cdev);
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 18:02:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int acpi_thermal_bind_unbind_cdev(struct thermal_zone_device *thermal,
|
|
|
|
struct thermal_cooling_device *cdev,
|
|
|
|
bool bind)
|
|
|
|
{
|
|
|
|
struct acpi_thermal_bind_data bd = {
|
|
|
|
.thermal = thermal, .cdev = cdev, .bind = bind
|
|
|
|
};
|
|
|
|
|
|
|
|
return for_each_thermal_trip(thermal, bind_unbind_cdev_cb, &bd);
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_thermal_bind_cooling_device(struct thermal_zone_device *thermal,
|
2022-10-04 16:31:11 +00:00
|
|
|
struct thermal_cooling_device *cdev)
|
2008-01-17 07:51:11 +00:00
|
|
|
{
|
2023-09-21 18:02:59 +00:00
|
|
|
return acpi_thermal_bind_unbind_cdev(thermal, cdev, true);
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_thermal_unbind_cooling_device(struct thermal_zone_device *thermal,
|
2022-10-04 16:31:11 +00:00
|
|
|
struct thermal_cooling_device *cdev)
|
2008-01-17 07:51:11 +00:00
|
|
|
{
|
2023-09-21 18:02:59 +00:00
|
|
|
return acpi_thermal_bind_unbind_cdev(thermal, cdev, false);
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
|
2014-01-07 16:24:55 +00:00
|
|
|
static struct thermal_zone_device_ops acpi_thermal_zone_ops = {
|
2008-01-17 07:51:11 +00:00
|
|
|
.bind = acpi_thermal_bind_cooling_device,
|
|
|
|
.unbind = acpi_thermal_unbind_cooling_device,
|
|
|
|
.get_temp = thermal_get_temp,
|
2012-06-27 01:54:33 +00:00
|
|
|
.get_trend = thermal_get_trend,
|
2020-12-10 12:15:12 +00:00
|
|
|
.hot = acpi_thermal_zone_device_hot,
|
|
|
|
.critical = acpi_thermal_zone_device_critical,
|
2008-01-17 07:51:11 +00:00
|
|
|
};
|
|
|
|
|
2023-04-19 08:33:42 +00:00
|
|
|
static int acpi_thermal_zone_sysfs_add(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
struct device *tzdev = thermal_zone_device(tz->thermal_zone);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = sysfs_create_link(&tz->device->dev.kobj,
|
|
|
|
&tzdev->kobj, "thermal_zone");
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = sysfs_create_link(&tzdev->kobj,
|
|
|
|
&tz->device->dev.kobj, "device");
|
|
|
|
if (ret)
|
|
|
|
sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_thermal_zone_sysfs_remove(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
struct device *tzdev = thermal_zone_device(tz->thermal_zone);
|
|
|
|
|
|
|
|
sysfs_remove_link(&tz->device->dev.kobj, "thermal_zone");
|
|
|
|
sysfs_remove_link(&tzdev->kobj, "device");
|
|
|
|
}
|
|
|
|
|
2023-09-12 18:37:59 +00:00
|
|
|
static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz,
|
2023-09-12 18:39:15 +00:00
|
|
|
unsigned int trip_count,
|
|
|
|
int passive_delay)
|
2008-01-17 07:51:11 +00:00
|
|
|
{
|
|
|
|
int result;
|
2023-08-09 11:07:23 +00:00
|
|
|
|
|
|
|
tz->thermal_zone = thermal_zone_device_register_with_trips("acpitz",
|
|
|
|
tz->trip_table,
|
|
|
|
trip_count,
|
|
|
|
0, tz,
|
|
|
|
&acpi_thermal_zone_ops,
|
|
|
|
NULL,
|
|
|
|
passive_delay,
|
|
|
|
tz->polling_frequency * 100);
|
2023-09-12 18:39:15 +00:00
|
|
|
if (IS_ERR(tz->thermal_zone))
|
|
|
|
return PTR_ERR(tz->thermal_zone);
|
2008-01-17 07:51:11 +00:00
|
|
|
|
2023-04-19 08:33:42 +00:00
|
|
|
result = acpi_thermal_zone_sysfs_add(tz);
|
2008-01-17 07:51:11 +00:00
|
|
|
if (result)
|
2020-06-29 12:29:15 +00:00
|
|
|
goto unregister_tzd;
|
2008-01-17 07:51:11 +00:00
|
|
|
|
thermal: Use mode helpers in drivers
Use thermal_zone_device_{en|dis}able() and thermal_zone_device_is_enabled().
Consequently, all set_mode() implementations in drivers:
- can stop modifying tzd's "mode" member,
- shall stop taking tzd's lock, as it is taken in the helpers
- shall stop calling thermal_zone_device_update() as it is called in the
helpers
- can assume they are called when the mode truly changes, so checks to
verify that can be dropped
Not providing set_mode() by a driver no longer prevents the core from
being able to set tzd's mode, so the relevant check in mode_store() is
removed.
Other comments:
- acpi/thermal.c: tz->thermal_zone->mode will be updated only after we
return from set_mode(), so use function parameter in thermal_set_mode()
instead, no need to call acpi_thermal_check() in set_mode()
- thermal/imx_thermal.c: regmap writes and mode assignment are done in
thermal_zone_device_{en|dis}able() and set_mode() callback
- thermal/intel/intel_quark_dts_thermal.c: soc_dts_{en|dis}able() are a
part of set_mode() callback, so they don't need to modify tzd->mode, and
don't need to fall back to the opposite mode if unsuccessful, as the return
value will be propagated to thermal_zone_device_{en|dis}able() and
ultimately tzd's member will not be changed in thermal_zone_device_set_mode().
- thermal/of-thermal.c: no need to set zone->mode to DISABLED in
of_parse_thermal_zones() as a tzd is kzalloc'ed so mode is DISABLED anyway
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@collabora.com>
[for acerhdf]
Acked-by: Peter Kaestle <peter@piie.net>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200629122925.21729-8-andrzej.p@collabora.com
2020-06-29 12:29:21 +00:00
|
|
|
result = thermal_zone_device_enable(tz->thermal_zone);
|
|
|
|
if (result)
|
2023-08-08 20:15:15 +00:00
|
|
|
goto remove_links;
|
2008-01-17 07:51:11 +00:00
|
|
|
|
2008-05-02 04:02:41 +00:00
|
|
|
dev_info(&tz->device->dev, "registered as thermal_zone%d\n",
|
2023-03-01 20:14:40 +00:00
|
|
|
thermal_zone_device_id(tz->thermal_zone));
|
2020-06-29 12:29:15 +00:00
|
|
|
|
2008-01-17 07:51:11 +00:00
|
|
|
return 0;
|
2020-06-29 12:29:15 +00:00
|
|
|
|
2023-04-19 08:33:42 +00:00
|
|
|
remove_links:
|
|
|
|
acpi_thermal_zone_sysfs_remove(tz);
|
2020-06-29 12:29:15 +00:00
|
|
|
unregister_tzd:
|
|
|
|
thermal_zone_device_unregister(tz->thermal_zone);
|
|
|
|
|
|
|
|
return result;
|
2008-01-17 07:51:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
|
|
|
|
{
|
2023-10-31 09:53:06 +00:00
|
|
|
thermal_zone_device_disable(tz->thermal_zone);
|
2023-04-19 08:33:42 +00:00
|
|
|
acpi_thermal_zone_sysfs_remove(tz);
|
2008-01-17 07:51:11 +00:00
|
|
|
thermal_zone_device_unregister(tz->thermal_zone);
|
|
|
|
tz->thermal_zone = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Driver Interface
|
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
|
2023-07-03 08:02:52 +00:00
|
|
|
static void acpi_thermal_notify(acpi_handle handle, u32 event, void *data)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2023-07-03 08:02:52 +00:00
|
|
|
struct acpi_device *device = data;
|
2009-04-07 15:37:06 +00:00
|
|
|
struct acpi_thermal *tz = acpi_driver_data(device);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!tz)
|
2006-06-27 04:41:40 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case ACPI_THERMAL_NOTIFY_TEMPERATURE:
|
2021-01-14 18:34:22 +00:00
|
|
|
acpi_queue_thermal_check(tz);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case ACPI_THERMAL_NOTIFY_THRESHOLDS:
|
|
|
|
case ACPI_THERMAL_NOTIFY_DEVICES:
|
2023-08-17 09:25:29 +00:00
|
|
|
acpi_thermal_trips_update(tz, event);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-02-03 18:49:21 +00:00
|
|
|
acpi_handle_debug(device->handle, "Unsupported event [0x%x]\n",
|
|
|
|
event);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-27 19:42:11 +00:00
|
|
|
/*
|
|
|
|
* On some platforms, the AML code has dependency about
|
|
|
|
* the evaluating order of _TMP and _CRT/_HOT/_PSV/_ACx.
|
|
|
|
* 1. On HP Pavilion G4-1016tx, _TMP must be invoked after
|
|
|
|
* /_CRT/_HOT/_PSV/_ACx, or else system will be power off.
|
|
|
|
* 2. On HP Compaq 6715b/6715s, the return value of _PSV is 0
|
|
|
|
* if _TMP has never been evaluated.
|
|
|
|
*
|
|
|
|
* As this dependency is totally transparent to OS, evaluate
|
|
|
|
* all of them once, in the order of _CRT/_HOT/_PSV/_ACx,
|
|
|
|
* _TMP, before they are actually used.
|
|
|
|
*/
|
|
|
|
static void acpi_thermal_aml_dependency_fix(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
acpi_handle handle = tz->device->handle;
|
|
|
|
unsigned long long value;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
acpi_evaluate_integer(handle, "_CRT", NULL, &value);
|
|
|
|
acpi_evaluate_integer(handle, "_HOT", NULL, &value);
|
|
|
|
acpi_evaluate_integer(handle, "_PSV", NULL, &value);
|
|
|
|
for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
|
|
|
|
char name[5] = { '_', 'A', 'C', ('0' + i), '\0' };
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(handle, name, NULL, &value);
|
|
|
|
if (status == AE_NOT_FOUND)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
acpi_evaluate_integer(handle, "_TMP", NULL, &value);
|
|
|
|
}
|
|
|
|
|
2009-04-06 14:01:46 +00:00
|
|
|
/*
|
|
|
|
* The exact offset between Kelvin and degree Celsius is 273.15. However ACPI
|
|
|
|
* handles temperature values with a single decimal place. As a consequence,
|
|
|
|
* some implementations use an offset of 273.1 and others use an offset of
|
|
|
|
* 273.2. Try to find out which one is being used, to present the most
|
|
|
|
* accurate and visually appealing number.
|
|
|
|
*
|
|
|
|
* The heuristic below should work for all ACPI thermal zones which have a
|
|
|
|
* critical trip point with a value being a multiple of 0.5 degree Celsius.
|
|
|
|
*/
|
2023-09-12 18:41:06 +00:00
|
|
|
static void acpi_thermal_guess_offset(struct acpi_thermal *tz, long crit_temp)
|
2009-04-06 14:01:46 +00:00
|
|
|
{
|
2023-09-21 18:04:49 +00:00
|
|
|
if (crit_temp != THERMAL_TEMP_INVALID && crit_temp % 5 == 1)
|
2020-01-31 06:15:33 +00:00
|
|
|
tz->kelvin_offset = 273100;
|
2009-04-06 14:01:46 +00:00
|
|
|
else
|
2020-01-31 06:15:33 +00:00
|
|
|
tz->kelvin_offset = 273200;
|
2009-04-06 14:01:46 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 06:24:46 +00:00
|
|
|
static void acpi_thermal_check_fn(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct acpi_thermal *tz = container_of(work, struct acpi_thermal,
|
|
|
|
thermal_check_work);
|
2021-01-14 18:34:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In general, it is not sufficient to check the pending bit, because
|
|
|
|
* subsequent instances of this function may be queued after one of them
|
|
|
|
* has started running (e.g. if _TMP sleeps). Avoid bailing out if just
|
|
|
|
* one of them is running, though, because it may have done the actual
|
|
|
|
* check some time ago, so allow at least one of them to block on the
|
|
|
|
* mutex while another one is running the update.
|
|
|
|
*/
|
|
|
|
if (!refcount_dec_not_one(&tz->thermal_check_count))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mutex_lock(&tz->thermal_check_lock);
|
|
|
|
|
|
|
|
thermal_zone_device_update(tz->thermal_zone, THERMAL_EVENT_UNSPECIFIED);
|
|
|
|
|
|
|
|
refcount_inc(&tz->thermal_check_count);
|
|
|
|
|
|
|
|
mutex_unlock(&tz->thermal_check_lock);
|
2014-03-04 06:24:46 +00:00
|
|
|
}
|
|
|
|
|
2023-09-27 20:17:25 +00:00
|
|
|
static void acpi_thermal_free_thermal_zone(struct acpi_thermal *tz)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
acpi_handle_list_free(&tz->trips.passive.trip.devices);
|
|
|
|
for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++)
|
|
|
|
acpi_handle_list_free(&tz->trips.active[i].trip.devices);
|
|
|
|
|
|
|
|
kfree(tz);
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int acpi_thermal_add(struct acpi_device *device)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2023-09-12 18:39:15 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip;
|
|
|
|
struct thermal_trip *trip;
|
2022-10-04 16:32:52 +00:00
|
|
|
struct acpi_thermal *tz;
|
2023-09-12 18:37:59 +00:00
|
|
|
unsigned int trip_count;
|
2023-09-12 18:41:06 +00:00
|
|
|
int crit_temp, hot_temp;
|
2023-09-12 18:39:15 +00:00
|
|
|
int passive_delay = 0;
|
2022-10-04 16:32:52 +00:00
|
|
|
int result;
|
2023-09-12 18:39:15 +00:00
|
|
|
int i;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!device)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-12-19 20:56:11 +00:00
|
|
|
tz = kzalloc(sizeof(struct acpi_thermal), GFP_KERNEL);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!tz)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENOMEM;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-05-19 20:54:40 +00:00
|
|
|
tz->device = device;
|
2005-04-16 22:20:36 +00:00
|
|
|
strcpy(tz->name, device->pnp.bus_id);
|
|
|
|
strcpy(acpi_device_name(device), ACPI_THERMAL_DEVICE_NAME);
|
|
|
|
strcpy(acpi_device_class(device), ACPI_THERMAL_CLASS);
|
2008-09-22 21:37:34 +00:00
|
|
|
device->driver_data = tz;
|
2008-01-17 07:51:11 +00:00
|
|
|
|
2023-09-12 18:36:21 +00:00
|
|
|
acpi_thermal_aml_dependency_fix(tz);
|
|
|
|
|
|
|
|
/* Get trip points [_CRT, _PSV, etc.] (required). */
|
2023-09-12 18:37:59 +00:00
|
|
|
trip_count = acpi_thermal_get_trip_points(tz);
|
2023-09-12 18:41:06 +00:00
|
|
|
|
|
|
|
crit_temp = acpi_thermal_get_critical_trip(tz);
|
2023-09-21 18:04:49 +00:00
|
|
|
if (crit_temp != THERMAL_TEMP_INVALID)
|
2023-09-12 18:41:06 +00:00
|
|
|
trip_count++;
|
|
|
|
|
|
|
|
hot_temp = acpi_thermal_get_hot_trip(tz);
|
2023-09-21 18:04:49 +00:00
|
|
|
if (hot_temp != THERMAL_TEMP_INVALID)
|
2023-09-12 18:41:06 +00:00
|
|
|
trip_count++;
|
|
|
|
|
2023-09-12 18:37:59 +00:00
|
|
|
if (!trip_count) {
|
|
|
|
pr_warn(FW_BUG "No valid trip points!\n");
|
|
|
|
result = -ENODEV;
|
2008-01-17 07:51:11 +00:00
|
|
|
goto free_memory;
|
2023-09-12 18:37:59 +00:00
|
|
|
}
|
2008-01-17 07:51:11 +00:00
|
|
|
|
2023-09-12 18:36:21 +00:00
|
|
|
/* Get temperature [_TMP] (required). */
|
|
|
|
result = acpi_thermal_get_temperature(tz);
|
|
|
|
if (result)
|
|
|
|
goto free_memory;
|
|
|
|
|
|
|
|
/* Set the cooling mode [_SCP] to active cooling. */
|
|
|
|
acpi_execute_simple_method(tz->device->handle, "_SCP",
|
|
|
|
ACPI_THERMAL_MODE_ACTIVE);
|
|
|
|
|
|
|
|
/* Determine the default polling frequency [_TZP]. */
|
|
|
|
if (tzp)
|
|
|
|
tz->polling_frequency = tzp;
|
|
|
|
else
|
|
|
|
acpi_thermal_get_polling_frequency(tz);
|
|
|
|
|
2023-09-12 18:41:06 +00:00
|
|
|
acpi_thermal_guess_offset(tz, crit_temp);
|
2009-04-06 14:01:46 +00:00
|
|
|
|
2023-09-12 18:39:15 +00:00
|
|
|
trip = kcalloc(trip_count, sizeof(*trip), GFP_KERNEL);
|
2023-09-27 12:37:26 +00:00
|
|
|
if (!trip) {
|
|
|
|
result = -ENOMEM;
|
|
|
|
goto free_memory;
|
|
|
|
}
|
2023-09-12 18:39:15 +00:00
|
|
|
|
|
|
|
tz->trip_table = trip;
|
|
|
|
|
2023-09-21 18:04:49 +00:00
|
|
|
if (crit_temp != THERMAL_TEMP_INVALID) {
|
2023-09-12 18:39:15 +00:00
|
|
|
trip->type = THERMAL_TRIP_CRITICAL;
|
2023-09-12 18:41:06 +00:00
|
|
|
trip->temperature = acpi_thermal_temp(tz, crit_temp);
|
2023-09-12 18:39:15 +00:00
|
|
|
trip++;
|
|
|
|
}
|
|
|
|
|
2023-09-21 18:04:49 +00:00
|
|
|
if (hot_temp != THERMAL_TEMP_INVALID) {
|
2023-09-12 18:39:15 +00:00
|
|
|
trip->type = THERMAL_TRIP_HOT;
|
2023-09-12 18:41:06 +00:00
|
|
|
trip->temperature = acpi_thermal_temp(tz, hot_temp);
|
2023-09-12 18:39:15 +00:00
|
|
|
trip++;
|
|
|
|
}
|
|
|
|
|
|
|
|
acpi_trip = &tz->trips.passive.trip;
|
2023-09-20 13:03:46 +00:00
|
|
|
if (acpi_thermal_trip_valid(acpi_trip)) {
|
2023-09-12 18:39:15 +00:00
|
|
|
passive_delay = tz->trips.passive.tsp * 100;
|
|
|
|
|
|
|
|
trip->type = THERMAL_TRIP_PASSIVE;
|
2023-09-21 18:06:58 +00:00
|
|
|
trip->temperature = acpi_thermal_temp(tz, acpi_trip->temp_dk);
|
2023-09-12 18:39:15 +00:00
|
|
|
trip->priv = acpi_trip;
|
|
|
|
trip++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
|
|
|
|
acpi_trip = &tz->trips.active[i].trip;
|
|
|
|
|
2023-09-20 13:03:46 +00:00
|
|
|
if (!acpi_thermal_trip_valid(acpi_trip))
|
2023-09-12 18:39:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
trip->type = THERMAL_TRIP_ACTIVE;
|
2023-09-21 18:06:58 +00:00
|
|
|
trip->temperature = acpi_thermal_temp(tz, acpi_trip->temp_dk);
|
2023-09-12 18:39:15 +00:00
|
|
|
trip->priv = acpi_trip;
|
|
|
|
trip++;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = acpi_thermal_register_thermal_zone(tz, trip_count, passive_delay);
|
2008-01-17 07:51:11 +00:00
|
|
|
if (result)
|
2023-09-12 18:39:15 +00:00
|
|
|
goto free_trips;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2021-01-14 18:34:22 +00:00
|
|
|
refcount_set(&tz->thermal_check_count, 3);
|
|
|
|
mutex_init(&tz->thermal_check_lock);
|
2014-03-04 06:24:46 +00:00
|
|
|
INIT_WORK(&tz->thermal_check_work, acpi_thermal_check_fn);
|
|
|
|
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_info("%s [%s] (%ld C)\n", acpi_device_name(device),
|
2023-09-21 18:06:58 +00:00
|
|
|
acpi_device_bid(device), deci_kelvin_to_celsius(tz->temp_dk));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2023-07-03 08:02:52 +00:00
|
|
|
result = acpi_dev_install_notify_handler(device, ACPI_DEVICE_NOTIFY,
|
2023-10-06 15:32:51 +00:00
|
|
|
acpi_thermal_notify, device);
|
2023-07-03 08:02:52 +00:00
|
|
|
if (result)
|
|
|
|
goto flush_wq;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
flush_wq:
|
|
|
|
flush_workqueue(acpi_thermal_pm_queue);
|
|
|
|
acpi_thermal_unregister_thermal_zone(tz);
|
2023-09-12 18:39:15 +00:00
|
|
|
free_trips:
|
|
|
|
kfree(tz->trip_table);
|
2008-01-17 07:51:11 +00:00
|
|
|
free_memory:
|
2023-09-27 20:17:25 +00:00
|
|
|
acpi_thermal_free_thermal_zone(tz);
|
2023-07-03 08:02:52 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return result;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 16:26:09 +00:00
|
|
|
static void acpi_thermal_remove(struct acpi_device *device)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2022-10-04 16:32:52 +00:00
|
|
|
struct acpi_thermal *tz;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!device || !acpi_driver_data(device))
|
2022-11-13 16:26:09 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-30 22:28:50 +00:00
|
|
|
tz = acpi_driver_data(device);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2023-07-03 08:02:52 +00:00
|
|
|
acpi_dev_remove_notify_handler(device, ACPI_DEVICE_NOTIFY,
|
|
|
|
acpi_thermal_notify);
|
|
|
|
|
|
|
|
flush_workqueue(acpi_thermal_pm_queue);
|
2008-01-17 07:51:11 +00:00
|
|
|
acpi_thermal_unregister_thermal_zone(tz);
|
2023-10-31 09:53:06 +00:00
|
|
|
kfree(tz->trip_table);
|
2023-09-27 20:17:25 +00:00
|
|
|
acpi_thermal_free_thermal_zone(tz);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-08-09 21:00:02 +00:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2014-03-04 06:24:46 +00:00
|
|
|
static int acpi_thermal_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
/* Make sure the previously queued thermal check work has been done */
|
|
|
|
flush_workqueue(acpi_thermal_pm_queue);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-27 21:26:18 +00:00
|
|
|
static int acpi_thermal_resume(struct device *dev)
|
2006-05-08 12:32:00 +00:00
|
|
|
{
|
2012-06-27 21:26:18 +00:00
|
|
|
struct acpi_thermal *tz;
|
2023-08-10 18:49:08 +00:00
|
|
|
int i, j, power_state;
|
2007-02-16 07:23:07 +00:00
|
|
|
|
2012-06-27 21:26:18 +00:00
|
|
|
if (!dev)
|
2006-06-27 04:41:40 +00:00
|
|
|
return -EINVAL;
|
2006-05-08 12:32:00 +00:00
|
|
|
|
2012-06-27 21:26:18 +00:00
|
|
|
tz = acpi_driver_data(to_acpi_device(dev));
|
|
|
|
if (!tz)
|
|
|
|
return -EINVAL;
|
2006-05-08 12:32:00 +00:00
|
|
|
|
2006-07-10 11:44:26 +00:00
|
|
|
for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
|
2023-09-21 17:48:33 +00:00
|
|
|
struct acpi_thermal_trip *acpi_trip = &tz->trips.active[i].trip;
|
|
|
|
|
|
|
|
if (!acpi_thermal_trip_valid(acpi_trip))
|
2007-02-16 07:23:07 +00:00
|
|
|
break;
|
2022-10-04 16:31:11 +00:00
|
|
|
|
2023-09-21 17:48:33 +00:00
|
|
|
for (j = 0; j < acpi_trip->devices.count; j++) {
|
|
|
|
acpi_bus_update_power(acpi_trip->devices.handles[j],
|
2023-08-10 18:49:08 +00:00
|
|
|
&power_state);
|
2006-07-10 11:44:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 18:34:22 +00:00
|
|
|
acpi_queue_thermal_check(tz);
|
2006-05-08 12:32:00 +00:00
|
|
|
|
|
|
|
return AE_OK;
|
|
|
|
}
|
2023-06-04 12:15:36 +00:00
|
|
|
#else
|
|
|
|
#define acpi_thermal_suspend NULL
|
|
|
|
#define acpi_thermal_resume NULL
|
2012-08-09 21:00:02 +00:00
|
|
|
#endif
|
2023-06-04 12:15:36 +00:00
|
|
|
static SIMPLE_DEV_PM_OPS(acpi_thermal_pm, acpi_thermal_suspend, acpi_thermal_resume);
|
|
|
|
|
|
|
|
static const struct acpi_device_id thermal_device_ids[] = {
|
|
|
|
{ACPI_THERMAL_HID, 0},
|
|
|
|
{"", 0},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, thermal_device_ids);
|
|
|
|
|
|
|
|
static struct acpi_driver acpi_thermal_driver = {
|
|
|
|
.name = "thermal",
|
|
|
|
.class = ACPI_THERMAL_CLASS,
|
|
|
|
.ids = thermal_device_ids,
|
|
|
|
.ops = {
|
|
|
|
.add = acpi_thermal_add,
|
|
|
|
.remove = acpi_thermal_remove,
|
|
|
|
},
|
|
|
|
.drv.pm = &acpi_thermal_pm,
|
|
|
|
};
|
2006-05-08 12:32:00 +00:00
|
|
|
|
2023-09-28 22:13:44 +00:00
|
|
|
static int thermal_act(const struct dmi_system_id *d)
|
|
|
|
{
|
2007-08-12 04:13:02 +00:00
|
|
|
if (act == 0) {
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_notice("%s detected: disabling all active thermal trip points\n",
|
|
|
|
d->ident);
|
2007-08-12 04:13:02 +00:00
|
|
|
act = -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2023-09-28 22:13:44 +00:00
|
|
|
|
|
|
|
static int thermal_nocrt(const struct dmi_system_id *d)
|
|
|
|
{
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_notice("%s detected: disabling all critical thermal trip point actions.\n",
|
|
|
|
d->ident);
|
2023-07-12 17:24:59 +00:00
|
|
|
crt = -1;
|
2007-08-20 22:46:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2023-09-28 22:13:44 +00:00
|
|
|
|
|
|
|
static int thermal_tzp(const struct dmi_system_id *d)
|
|
|
|
{
|
2007-08-12 04:13:02 +00:00
|
|
|
if (tzp == 0) {
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_notice("%s detected: enabling thermal zone polling\n",
|
|
|
|
d->ident);
|
2007-08-12 04:13:02 +00:00
|
|
|
tzp = 300; /* 300 dS = 30 Seconds */
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2023-09-28 22:13:44 +00:00
|
|
|
|
|
|
|
static int thermal_psv(const struct dmi_system_id *d)
|
|
|
|
{
|
2007-08-12 04:13:02 +00:00
|
|
|
if (psv == 0) {
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_notice("%s detected: disabling all passive thermal trip points\n",
|
|
|
|
d->ident);
|
2007-08-12 04:13:02 +00:00
|
|
|
psv = -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-14 09:59:30 +00:00
|
|
|
static const struct dmi_system_id thermal_dmi_table[] __initconst = {
|
2007-08-12 04:13:02 +00:00
|
|
|
/*
|
|
|
|
* Award BIOS on this AOpen makes thermal control almost worthless.
|
|
|
|
* http://bugzilla.kernel.org/show_bug.cgi?id=8842
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
.callback = thermal_act,
|
|
|
|
.ident = "AOpen i915GMm-HFS",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.callback = thermal_psv,
|
|
|
|
.ident = "AOpen i915GMm-HFS",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.callback = thermal_tzp,
|
|
|
|
.ident = "AOpen i915GMm-HFS",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
|
|
|
|
},
|
|
|
|
},
|
2007-08-20 22:46:50 +00:00
|
|
|
{
|
|
|
|
.callback = thermal_nocrt,
|
|
|
|
.ident = "Gigabyte GA-7ZX",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
|
|
|
|
DMI_MATCH(DMI_BOARD_NAME, "7ZX"),
|
|
|
|
},
|
|
|
|
},
|
2007-08-12 04:13:02 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static int __init acpi_thermal_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2022-10-04 16:32:52 +00:00
|
|
|
int result;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-08-12 04:13:02 +00:00
|
|
|
dmi_check_system(thermal_dmi_table);
|
|
|
|
|
2007-08-12 04:12:17 +00:00
|
|
|
if (off) {
|
2021-02-03 18:49:21 +00:00
|
|
|
pr_notice("thermal control disabled\n");
|
2007-08-12 04:12:17 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
2010-07-15 02:46:44 +00:00
|
|
|
|
2016-06-07 03:15:40 +00:00
|
|
|
acpi_thermal_pm_queue = alloc_workqueue("acpi_thermal_pm",
|
|
|
|
WQ_HIGHPRI | WQ_MEM_RECLAIM, 0);
|
2014-03-04 06:24:46 +00:00
|
|
|
if (!acpi_thermal_pm_queue)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
result = acpi_bus_register_driver(&acpi_thermal_driver);
|
2014-03-04 06:24:46 +00:00
|
|
|
if (result < 0) {
|
|
|
|
destroy_workqueue(acpi_thermal_pm_queue);
|
2006-06-27 04:41:40 +00:00
|
|
|
return -ENODEV;
|
2014-03-04 06:24:46 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
static void __exit acpi_thermal_exit(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
acpi_bus_unregister_driver(&acpi_thermal_driver);
|
2014-05-26 12:34:07 +00:00
|
|
|
destroy_workqueue(acpi_thermal_pm_queue);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(acpi_thermal_init);
|
|
|
|
module_exit(acpi_thermal_exit);
|
2023-06-04 12:15:36 +00:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Paul Diefenbaugh");
|
|
|
|
MODULE_DESCRIPTION("ACPI Thermal Zone Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|