2019-05-27 09:55:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-08-16 15:41:40 +04:00
|
|
|
/*
|
|
|
|
* linux/include/linux/cpu_cooling.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
|
|
|
|
* Copyright (C) 2012 Amit Daniel <amit.kachhap@linaro.org>
|
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*
|
|
|
|
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CPU_COOLING_H__
|
|
|
|
#define __CPU_COOLING_H__
|
|
|
|
|
2013-09-13 03:26:45 +04:00
|
|
|
#include <linux/of.h>
|
2012-08-16 15:41:40 +04:00
|
|
|
#include <linux/thermal.h>
|
2013-04-24 19:10:28 +04:00
|
|
|
#include <linux/cpumask.h>
|
2012-08-16 15:41:40 +04:00
|
|
|
|
2017-04-25 13:27:14 +03:00
|
|
|
struct cpufreq_policy;
|
|
|
|
|
2019-12-04 18:39:27 +03:00
|
|
|
#ifdef CONFIG_CPU_FREQ_THERMAL
|
2012-08-16 15:41:40 +04:00
|
|
|
/**
|
|
|
|
* cpufreq_cooling_register - function to create cpufreq cooling device.
|
2017-04-25 13:27:14 +03:00
|
|
|
* @policy: cpufreq policy.
|
2012-08-16 15:41:40 +04:00
|
|
|
*/
|
2013-04-17 21:12:23 +04:00
|
|
|
struct thermal_cooling_device *
|
2017-04-25 13:27:14 +03:00
|
|
|
cpufreq_cooling_register(struct cpufreq_policy *policy);
|
2012-08-16 15:41:40 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_cooling_unregister - function to remove cpufreq cooling device.
|
|
|
|
* @cdev: thermal cooling device pointer.
|
|
|
|
*/
|
|
|
|
void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev);
|
2013-02-08 10:52:06 +04:00
|
|
|
|
2019-10-30 12:10:37 +03:00
|
|
|
/**
|
|
|
|
* of_cpufreq_cooling_register - create cpufreq cooling device based on DT.
|
|
|
|
* @policy: cpufreq policy.
|
|
|
|
*/
|
|
|
|
struct thermal_cooling_device *
|
|
|
|
of_cpufreq_cooling_register(struct cpufreq_policy *policy);
|
|
|
|
|
2019-12-04 18:39:27 +03:00
|
|
|
#else /* !CONFIG_CPU_FREQ_THERMAL */
|
2013-04-17 21:12:23 +04:00
|
|
|
static inline struct thermal_cooling_device *
|
2017-04-25 13:27:14 +03:00
|
|
|
cpufreq_cooling_register(struct cpufreq_policy *policy)
|
2012-08-16 15:41:40 +04:00
|
|
|
{
|
2014-12-17 14:11:24 +03:00
|
|
|
return ERR_PTR(-ENOSYS);
|
2012-08-16 15:41:40 +04:00
|
|
|
}
|
2015-02-26 22:00:29 +03:00
|
|
|
|
2017-12-05 08:32:45 +03:00
|
|
|
static inline
|
|
|
|
void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
|
2013-09-13 03:26:45 +04:00
|
|
|
{
|
2017-12-05 08:32:45 +03:00
|
|
|
return;
|
2013-09-13 03:26:45 +04:00
|
|
|
}
|
2015-02-26 22:00:29 +03:00
|
|
|
|
|
|
|
static inline struct thermal_cooling_device *
|
2017-12-05 08:32:45 +03:00
|
|
|
of_cpufreq_cooling_register(struct cpufreq_policy *policy)
|
2015-02-26 22:00:29 +03:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-12-04 18:39:27 +03:00
|
|
|
#endif /* CONFIG_CPU_FREQ_THERMAL */
|
2012-08-16 15:41:40 +04:00
|
|
|
|
2019-12-20 01:53:16 +03:00
|
|
|
struct cpuidle_driver;
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_IDLE_THERMAL
|
2020-04-29 13:36:41 +03:00
|
|
|
void cpuidle_cooling_register(struct cpuidle_driver *drv);
|
2019-12-20 01:53:16 +03:00
|
|
|
#else /* CONFIG_CPU_IDLE_THERMAL */
|
2020-04-29 13:36:41 +03:00
|
|
|
static inline void cpuidle_cooling_register(struct cpuidle_driver *drv)
|
2019-12-20 01:53:16 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CPU_IDLE_THERMAL */
|
|
|
|
|
2012-08-16 15:41:40 +04:00
|
|
|
#endif /* __CPU_COOLING_H__ */
|