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