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