lineage_kernel_xcoverpro/include/linux/isp_cooling.h

139 lines
4.1 KiB
C
Executable File

/*
* linux/include/linux/gpu_cooling.h
*
* Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
* Copyright (C) 2012 Amit Daniel <amit.kachhap@linaro.org>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#ifndef __ISP_COOLING_H__
#define __ISP_COOLING_H__
#include <linux/of.h>
#include <linux/thermal.h>
#include <linux/cpumask.h>
#include <linux/platform_device.h>
#define ISP_FPS_INVALID ~1
#ifdef CONFIG_ISP_THERMAL
#define ISP_FPS_ENTRY_INVALID ~0
#define ISP_FPS_TABLE_END ~1
struct isp_fps_table {
unsigned int flags;
unsigned int driver_data; /* driver specific data, not used by core */
unsigned int fps; /* kHz - doesn't need to be in ascending
* order */
};
static inline bool isp_fps_next_valid(struct isp_fps_table **pos)
{
while ((*pos)->fps != ISP_FPS_TABLE_END)
if ((*pos)->fps != ISP_FPS_ENTRY_INVALID)
return true;
else
(*pos)++;
return false;
}
/*
* isp_fps_for_each_entry - iterate over a cpufreq_frequency_table
* @pos: the cpufreq_frequency_table * to use as a loop cursor.
* @table: the cpufreq_frequency_table * to iterate over.
*/
#define isp_fps_for_each_entry(pos, table) \
for (pos = table; pos->fps != ISP_FPS_TABLE_END; pos++)
/*
* isp_fps_for_each_valid_entry - iterate over a cpufreq_frequency_table
* excluding CPUFREQ_ENTRY_INVALID frequencies.
* @pos: the cpufreq_frequency_table * to use as a loop cursor.
* @table: the cpufreq_frequency_table * to iterate over.
*/
#define isp_fps_for_each_valid_entry(pos, table) \
for (pos = table; isp_fps_next_valid(&pos); pos++)
/**
* isp_cooling_register - function to create isp cooling device.
* @clip_gpus: cpumask of gpus where the frequency constraints will happen
*/
struct thermal_cooling_device *
isp_cooling_register(const struct cpumask *clip_gpus);
/**
* of_isp_cooling_register - create isp cooling device based on DT.
* @np: a valid struct device_node to the cooling device device tree node.
* @clip_gpus: cpumask of gpus where the frequency constraints will happen
*/
#ifdef CONFIG_THERMAL_OF
struct thermal_cooling_device *
of_isp_cooling_register(struct device_node *np,
const struct cpumask *clip_gpus);
#else
static inline struct thermal_cooling_device *
of_isp_cooling_register(struct device_node *np,
const struct cpumask *clip_gpus)
{
return NULL;
}
#endif
/**
* isp_cooling_unregister - function to remove isp cooling device.
* @cdev: thermal cooling device pointer.
*/
void isp_cooling_unregister(struct thermal_cooling_device *cdev);
unsigned long isp_cooling_get_level(unsigned int isp, unsigned int fps);
unsigned long isp_cooling_get_fps(unsigned int isp, unsigned long level);
#else /* !CONFIG_ISP_THERMAL */
static inline struct thermal_cooling_device *
isp_cooling_register(const struct cpumask *clip_gpus)
{
return NULL;
}
static inline struct thermal_cooling_device *
of_isp_cooling_register(struct device_node *np,
const struct cpumask *clip_gpus)
{
return NULL;
}
static inline
void isp_cooling_unregister(struct thermal_cooling_device *cdev)
{
return;
}
static inline
unsigned long isp_cooling_get_level(unsigned int isp, unsigned int fps)
{
return THERMAL_CSTATE_INVALID;
}
static inline
unsigned long isp_cooling_get_fps(unsigned int isp, unsigned long level)
{
return ISP_FPS_INVALID;
}
#endif /* CONFIG_ISP_THERMAL */
#endif /* __ISP_COOLING_H__ */