2019-05-27 13:55:15 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-08-16 18:41:40 +07: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 06:26:45 +07:00
|
|
|
#include <linux/of.h>
|
2012-08-16 18:41:40 +07:00
|
|
|
#include <linux/thermal.h>
|
2013-04-24 22:10:28 +07:00
|
|
|
#include <linux/cpumask.h>
|
2012-08-16 18:41:40 +07:00
|
|
|
|
2017-04-25 17:27:14 +07:00
|
|
|
struct cpufreq_policy;
|
|
|
|
|
2013-03-26 22:57:01 +07:00
|
|
|
#ifdef CONFIG_CPU_THERMAL
|
2012-08-16 18:41:40 +07:00
|
|
|
/**
|
|
|
|
* cpufreq_cooling_register - function to create cpufreq cooling device.
|
2017-04-25 17:27:14 +07:00
|
|
|
* @policy: cpufreq policy.
|
2012-08-16 18:41:40 +07:00
|
|
|
*/
|
2013-04-18 00:12:23 +07:00
|
|
|
struct thermal_cooling_device *
|
2017-04-25 17:27:14 +07:00
|
|
|
cpufreq_cooling_register(struct cpufreq_policy *policy);
|
2012-08-16 18:41:40 +07: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 13:52:06 +07:00
|
|
|
|
2019-10-30 16:10:37 +07: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);
|
|
|
|
|
2012-08-16 18:41:40 +07:00
|
|
|
#else /* !CONFIG_CPU_THERMAL */
|
2013-04-18 00:12:23 +07:00
|
|
|
static inline struct thermal_cooling_device *
|
2017-04-25 17:27:14 +07:00
|
|
|
cpufreq_cooling_register(struct cpufreq_policy *policy)
|
2012-08-16 18:41:40 +07:00
|
|
|
{
|
2014-12-17 18:11:24 +07:00
|
|
|
return ERR_PTR(-ENOSYS);
|
2012-08-16 18:41:40 +07:00
|
|
|
}
|
2015-02-27 02:00:29 +07:00
|
|
|
|
2017-12-05 12:32:45 +07:00
|
|
|
static inline
|
|
|
|
void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
|
2013-09-13 06:26:45 +07:00
|
|
|
{
|
2017-12-05 12:32:45 +07:00
|
|
|
return;
|
2013-09-13 06:26:45 +07:00
|
|
|
}
|
2015-02-27 02:00:29 +07:00
|
|
|
|
|
|
|
static inline struct thermal_cooling_device *
|
2017-12-05 12:32:45 +07:00
|
|
|
of_cpufreq_cooling_register(struct cpufreq_policy *policy)
|
2015-02-27 02:00:29 +07:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-10-30 16:10:36 +07:00
|
|
|
#endif /* CONFIG_CPU_THERMAL */
|
2012-08-16 18:41:40 +07:00
|
|
|
|
|
|
|
#endif /* __CPU_COOLING_H__ */
|