mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
667de5c684
- Add compatible DT bindings for imx6sll and imx6ul to fix a dtbs check warning (Stefan Wahren). - Update the example in the DT bindings to reflect changes with the ADC node name for QCom TM and TM5 (Marijn Suijten). - Fix comments for the cpuidle_cooling_register() function to match the function prototype (Chenggang Wang). - Fix inconsistent temperature read and some Mediatek variant board reboot by reverting a change and handling the temperature differently (AngeloGioacchino Del Regno). - Fix a memory leak in the initialization error path for the Mediatek driver (Kang Chen). - Use of_address_to_resource() in the Mediatek driver (Rob Herring). - Fix unit address in the QCom tsens driver DT bindings (Krzysztof Kozlowski). - Clean up the step-wise thermal governor (Zhang Rui). - Introduce thermal_zone_device() for accessing the device field of struct thermal_zone_device and two drivers use it (Daniel Lezcano). - Clean up the ACPI thermal driver a bit (Daniel Lezcano). - Delete the thermal driver for Intel Menlow platforms that is not expected to have any users (Rafael Wysocki). -----BEGIN PGP SIGNATURE----- iQJGBAABCAAwFiEE4fcc61cGeeHD/fCwgsRv/nhiVHEFAmRSa9kSHHJqd0Byand5 c29ja2kubmV0AAoJEILEb/54YlRxlv8P/j84O8Sds7Zb5jA9r3RYtZ07iqMHjjV6 EUjS+aZ33d2koQ+X2m+ZqJZ51XmbFMEmtz0jc7zoSwOReMYQhnf1dm/EFvEIJvej zNT1wFEhtLtVoMMsTygKywH6sTEbGCi5i+QybN+n96qOwYqI2LaSvfqygkGT9yGC b4H42o4S34JcV4Ofdhzd9H7p6AQheKBpvNfAF86DShVioNQZGY0KgOw73bpt+HO0 9LASf5VN78rS++0JxoJ4tza0VMWM/UdkYmxpj4v2lq6GKUEQlu2XFGCjs3NBEaG8 CMe4ZEqJXVgGsEwFmEgzzUi9doqFL7vQdRb9LHa/LdHBRF8Eba1VbNLHZQY0mMTZ 4wgjdyXmuH9dt1cITNJG+ZPXC6xNbjydKgDG++hw7fZ3oOUZnZsndy1uc0Nl56ao pNurhxxOZIpMs/EqP8yv+4FKEk2fOQXFEC8Ppo+clKme4DWmK5/ICuiKi0eFzZcG kAS3wzeDgXGJyumPUP2/qIoMcKEVtbXypqlE55ILwC1DF5XE4TnMfWxVndMW52Qr ZYW3JcPFZdST8afFZ0yXKSF1zyXmrwG8qKCcIzO/7m0/UkHoTujrPJ0/0sQsdv9a nrG0P40ygVfHRCLDRjWp7VQrj0PSHdzYx/X82xkLmHxAPShJ+LuUm4dFOZ224y2b UnrEvlq+rVSW =/bW2 -----END PGP SIGNATURE----- Merge tag 'thermal-6.4-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm Pull more thermal control updates from Rafael Wysocki: "These are mostly cleanups on top of the previously merged thermal control changes plus some driver fixes and the removal of the Intel Menlow thermal driver. Specifics: - Add compatible DT bindings for imx6sll and imx6ul to fix a dtbs check warning (Stefan Wahren) - Update the example in the DT bindings to reflect changes with the ADC node name for QCom TM and TM5 (Marijn Suijten) - Fix comments for the cpuidle_cooling_register() function to match the function prototype (Chenggang Wang) - Fix inconsistent temperature read and some Mediatek variant board reboot by reverting a change and handling the temperature differently (AngeloGioacchino Del Regno) - Fix a memory leak in the initialization error path for the Mediatek driver (Kang Chen) - Use of_address_to_resource() in the Mediatek driver (Rob Herring) - Fix unit address in the QCom tsens driver DT bindings (Krzysztof Kozlowski) - Clean up the step-wise thermal governor (Zhang Rui) - Introduce thermal_zone_device() for accessing the device field of struct thermal_zone_device and two drivers use it (Daniel Lezcano) - Clean up the ACPI thermal driver a bit (Daniel Lezcano) - Delete the thermal driver for Intel Menlow platforms that is not expected to have any users (Rafael Wysocki)" * tag 'thermal-6.4-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: thermal: intel: menlow: Get rid of this driver ACPI: thermal: Move to dedicated function sysfs extra attr creation ACPI: thermal: Use thermal_zone_device() thermal: intel: pch_thermal: Use thermal driver device to write a trace thermal: core: Encapsulate tz->device field thermal: gov_step_wise: Adjust code logic to match comment thermal: gov_step_wise: Delete obsolete comment dt-bindings: thermal: qcom-tsens: Correct unit address thermal/drivers/mediatek: Use of_address_to_resource() thermal/drivers/mediatek: Change clk_prepare_enable to devm_clk_get_enabled in mtk_thermal_probe thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe thermal/drivers/mediatek: Add temperature constraints to validate read Revert "thermal/drivers/mediatek: Add delay after thermal banks initialization" thermal/drivers/cpuidle_cooling: Delete unmatched comments dt-bindings: thermal: Use generic ADC node name in examples dt-bindings: imx-thermal: Add imx6sll and imx6ul compatible
271 lines
7.3 KiB
C
271 lines
7.3 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2019 Linaro Limited.
|
|
*
|
|
* Author: Daniel Lezcano <daniel.lezcano@linaro.org>
|
|
*
|
|
*/
|
|
#define pr_fmt(fmt) "cpuidle cooling: " fmt
|
|
|
|
#include <linux/cpu.h>
|
|
#include <linux/cpu_cooling.h>
|
|
#include <linux/cpuidle.h>
|
|
#include <linux/device.h>
|
|
#include <linux/err.h>
|
|
#include <linux/idle_inject.h>
|
|
#include <linux/of.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/thermal.h>
|
|
|
|
/**
|
|
* struct cpuidle_cooling_device - data for the idle cooling device
|
|
* @ii_dev: an atomic to keep track of the last task exiting the idle cycle
|
|
* @state: a normalized integer giving the state of the cooling device
|
|
*/
|
|
struct cpuidle_cooling_device {
|
|
struct idle_inject_device *ii_dev;
|
|
unsigned long state;
|
|
};
|
|
|
|
/**
|
|
* cpuidle_cooling_runtime - Running time computation
|
|
* @idle_duration_us: CPU idle time to inject in microseconds
|
|
* @state: a percentile based number
|
|
*
|
|
* The running duration is computed from the idle injection duration
|
|
* which is fixed. If we reach 100% of idle injection ratio, that
|
|
* means the running duration is zero. If we have a 50% ratio
|
|
* injection, that means we have equal duration for idle and for
|
|
* running duration.
|
|
*
|
|
* The formula is deduced as follows:
|
|
*
|
|
* running = idle x ((100 / ratio) - 1)
|
|
*
|
|
* For precision purpose for integer math, we use the following:
|
|
*
|
|
* running = (idle x 100) / ratio - idle
|
|
*
|
|
* For example, if we have an injected duration of 50%, then we end up
|
|
* with 10ms of idle injection and 10ms of running duration.
|
|
*
|
|
* Return: An unsigned int for a usec based runtime duration.
|
|
*/
|
|
static unsigned int cpuidle_cooling_runtime(unsigned int idle_duration_us,
|
|
unsigned long state)
|
|
{
|
|
if (!state)
|
|
return 0;
|
|
|
|
return ((idle_duration_us * 100) / state) - idle_duration_us;
|
|
}
|
|
|
|
/**
|
|
* cpuidle_cooling_get_max_state - Get the maximum state
|
|
* @cdev : the thermal cooling device
|
|
* @state : a pointer to the state variable to be filled
|
|
*
|
|
* The function always returns 100 as the injection ratio. It is
|
|
* percentile based for consistency accross different platforms.
|
|
*
|
|
* Return: The function can not fail, it is always zero
|
|
*/
|
|
static int cpuidle_cooling_get_max_state(struct thermal_cooling_device *cdev,
|
|
unsigned long *state)
|
|
{
|
|
/*
|
|
* Depending on the configuration or the hardware, the running
|
|
* cycle and the idle cycle could be different. We want to
|
|
* unify that to an 0..100 interval, so the set state
|
|
* interface will be the same whatever the platform is.
|
|
*
|
|
* The state 100% will make the cluster 100% ... idle. A 0%
|
|
* injection ratio means no idle injection at all and 50%
|
|
* means for 10ms of idle injection, we have 10ms of running
|
|
* time.
|
|
*/
|
|
*state = 100;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* cpuidle_cooling_get_cur_state - Get the current cooling state
|
|
* @cdev: the thermal cooling device
|
|
* @state: a pointer to the state
|
|
*
|
|
* The function just copies the state value from the private thermal
|
|
* cooling device structure, the mapping is 1 <-> 1.
|
|
*
|
|
* Return: The function can not fail, it is always zero
|
|
*/
|
|
static int cpuidle_cooling_get_cur_state(struct thermal_cooling_device *cdev,
|
|
unsigned long *state)
|
|
{
|
|
struct cpuidle_cooling_device *idle_cdev = cdev->devdata;
|
|
|
|
*state = idle_cdev->state;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* cpuidle_cooling_set_cur_state - Set the current cooling state
|
|
* @cdev: the thermal cooling device
|
|
* @state: the target state
|
|
*
|
|
* The function checks first if we are initiating the mitigation which
|
|
* in turn wakes up all the idle injection tasks belonging to the idle
|
|
* cooling device. In any case, it updates the internal state for the
|
|
* cooling device.
|
|
*
|
|
* Return: The function can not fail, it is always zero
|
|
*/
|
|
static int cpuidle_cooling_set_cur_state(struct thermal_cooling_device *cdev,
|
|
unsigned long state)
|
|
{
|
|
struct cpuidle_cooling_device *idle_cdev = cdev->devdata;
|
|
struct idle_inject_device *ii_dev = idle_cdev->ii_dev;
|
|
unsigned long current_state = idle_cdev->state;
|
|
unsigned int runtime_us, idle_duration_us;
|
|
|
|
idle_cdev->state = state;
|
|
|
|
idle_inject_get_duration(ii_dev, &runtime_us, &idle_duration_us);
|
|
|
|
runtime_us = cpuidle_cooling_runtime(idle_duration_us, state);
|
|
|
|
idle_inject_set_duration(ii_dev, runtime_us, idle_duration_us);
|
|
|
|
if (current_state == 0 && state > 0) {
|
|
idle_inject_start(ii_dev);
|
|
} else if (current_state > 0 && !state) {
|
|
idle_inject_stop(ii_dev);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* cpuidle_cooling_ops - thermal cooling device ops
|
|
*/
|
|
static struct thermal_cooling_device_ops cpuidle_cooling_ops = {
|
|
.get_max_state = cpuidle_cooling_get_max_state,
|
|
.get_cur_state = cpuidle_cooling_get_cur_state,
|
|
.set_cur_state = cpuidle_cooling_set_cur_state,
|
|
};
|
|
|
|
/**
|
|
* __cpuidle_cooling_register: register the cooling device
|
|
* @drv: a cpuidle driver structure pointer
|
|
* @np: a device node structure pointer used for the thermal binding
|
|
*
|
|
* This function is in charge of allocating the cpuidle cooling device
|
|
* structure, the idle injection, initialize them and register the
|
|
* cooling device to the thermal framework.
|
|
*
|
|
* Return: zero on success, a negative value returned by one of the
|
|
* underlying subsystem in case of error
|
|
*/
|
|
static int __cpuidle_cooling_register(struct device_node *np,
|
|
struct cpuidle_driver *drv)
|
|
{
|
|
struct idle_inject_device *ii_dev;
|
|
struct cpuidle_cooling_device *idle_cdev;
|
|
struct thermal_cooling_device *cdev;
|
|
struct device *dev;
|
|
unsigned int idle_duration_us = TICK_USEC;
|
|
unsigned int latency_us = UINT_MAX;
|
|
char *name;
|
|
int ret;
|
|
|
|
idle_cdev = kzalloc(sizeof(*idle_cdev), GFP_KERNEL);
|
|
if (!idle_cdev) {
|
|
ret = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
ii_dev = idle_inject_register(drv->cpumask);
|
|
if (!ii_dev) {
|
|
ret = -EINVAL;
|
|
goto out_kfree;
|
|
}
|
|
|
|
of_property_read_u32(np, "duration-us", &idle_duration_us);
|
|
of_property_read_u32(np, "exit-latency-us", &latency_us);
|
|
|
|
idle_inject_set_duration(ii_dev, TICK_USEC, idle_duration_us);
|
|
idle_inject_set_latency(ii_dev, latency_us);
|
|
|
|
idle_cdev->ii_dev = ii_dev;
|
|
|
|
dev = get_cpu_device(cpumask_first(drv->cpumask));
|
|
|
|
name = kasprintf(GFP_KERNEL, "idle-%s", dev_name(dev));
|
|
if (!name) {
|
|
ret = -ENOMEM;
|
|
goto out_unregister;
|
|
}
|
|
|
|
cdev = thermal_of_cooling_device_register(np, name, idle_cdev,
|
|
&cpuidle_cooling_ops);
|
|
if (IS_ERR(cdev)) {
|
|
ret = PTR_ERR(cdev);
|
|
goto out_kfree_name;
|
|
}
|
|
|
|
pr_debug("%s: Idle injection set with idle duration=%u, latency=%u\n",
|
|
name, idle_duration_us, latency_us);
|
|
|
|
kfree(name);
|
|
|
|
return 0;
|
|
|
|
out_kfree_name:
|
|
kfree(name);
|
|
out_unregister:
|
|
idle_inject_unregister(ii_dev);
|
|
out_kfree:
|
|
kfree(idle_cdev);
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* cpuidle_cooling_register - Idle cooling device initialization function
|
|
* @drv: a cpuidle driver structure pointer
|
|
*
|
|
* This function is in charge of creating a cooling device per cpuidle
|
|
* driver and register it to the thermal framework.
|
|
*/
|
|
void cpuidle_cooling_register(struct cpuidle_driver *drv)
|
|
{
|
|
struct device_node *cooling_node;
|
|
struct device_node *cpu_node;
|
|
int cpu, ret;
|
|
|
|
for_each_cpu(cpu, drv->cpumask) {
|
|
|
|
cpu_node = of_cpu_device_node_get(cpu);
|
|
|
|
cooling_node = of_get_child_by_name(cpu_node, "thermal-idle");
|
|
|
|
of_node_put(cpu_node);
|
|
|
|
if (!cooling_node) {
|
|
pr_debug("'thermal-idle' node not found for cpu%d\n", cpu);
|
|
continue;
|
|
}
|
|
|
|
ret = __cpuidle_cooling_register(cooling_node, drv);
|
|
|
|
of_node_put(cooling_node);
|
|
|
|
if (ret) {
|
|
pr_err("Failed to register the cpuidle cooling device" \
|
|
"for cpu%d: %d\n", cpu, ret);
|
|
break;
|
|
}
|
|
}
|
|
}
|