You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
/*
|
|
* 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__
|
|
|
|
struct cpufreq_limit_handle;
|
|
|
|
#ifdef CONFIG_CPU_FREQ_LIMIT
|
|
|
|
struct cpufreq_limit_handle *cpufreq_limit_get(unsigned long min_freq,
|
|
unsigned long max_freq, char *label);
|
|
int cpufreq_limit_put(struct cpufreq_limit_handle *handle);
|
|
void cpufreq_limit_corectl(int val);
|
|
|
|
static inline
|
|
struct cpufreq_limit_handle *cpufreq_limit_min_freq(unsigned long min_freq,
|
|
char *label)
|
|
{
|
|
return cpufreq_limit_get(min_freq, 0, label);
|
|
}
|
|
|
|
static inline
|
|
struct cpufreq_limit_handle *cpufreq_limit_max_freq(unsigned long max_freq,
|
|
char *label)
|
|
{
|
|
return cpufreq_limit_get(0, max_freq, label);
|
|
}
|
|
|
|
|
|
ssize_t cpufreq_limit_get_table(char *buf);
|
|
#else
|
|
static inline
|
|
struct cpufreq_limit_handle *cpufreq_limit_get(unsigned long min_freq,
|
|
unsigned long max_freq char *label)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
int cpufreq_limit_put(struct cpufreq_limit_handle *handle)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline
|
|
struct cpufreq_limit_handle *cpufreq_limit_min_freq(unsigned long min_freq,
|
|
char *label)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline
|
|
struct cpufreq_limit_handle *cpufreq_limit_max_freq(unsigned long max_freq,
|
|
char *label)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif
|
|
#endif /* __LINUX_CPUFREQ_LIMIT_H__ */
|
|
|