kernel_samsung_a34x-permissive/include/linux/cpufreq_limit.h
2024-04-28 15:51:13 +02:00

29 lines
748 B
C

/*
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
* Minsung Kim <ms925.kim@samsung.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __LINUX_CPUFREQ_LIMIT_H__
#define __LINUX_CPUFREQ_LIMIT_H__
enum {
DVFS_USER_ID = 0,
DVFS_TOUCH_ID,
DVFS_FINGER_ID,
DVFS_OVERLIMIT_ID,
DVFS_MAX_ID
};
extern void cpufreq_limit_set_table(int cpu, struct cpufreq_frequency_table *ftbl);
#ifdef CONFIG_CPU_FREQ_LIMIT
extern int set_freq_limit(unsigned int id, int freq);
#else
static inline int set_freq_limit(unsigned int id, int freq) { return 0; }
#endif
#endif /* __LINUX_CPUFREQ_LIMIT_H__ */