1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#include <fcntl.h>
#include <sys/syscall.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <dirent.h>
#include <sys/types.h>
#include "debug.h"
#include "sysfs.h"
#include "cputemp2maxfreq.h"
extern struct s_cpudata cpudata;
// Set a cpufreq parameter to a value
int cpufreq_set_str(char *parameter,char *value,long int checkdelay)
{
int cpu;
char sysfs_file[128];
int done=0;
DEBUG1_CPUFREQ("Set %s to %s\n",parameter,value)
if (cpudata.cpulist==NULL)
{
DEBUG1_CPUFREQ("No CPU list\n");
return -1;
}
for(cpu=0;cpu<cpudata.cpulist_len;cpu++)
{
DEBUG2_CPUFREQ("Set CPU %s\n",cpudata.cpulist[cpu]);
snprintf(sysfs_file,128,"/sys/devices/system/cpu/%s/cpufreq/%s",cpudata.cpulist[cpu],parameter);
if (sysfs_write_str(sysfs_file,value,checkdelay)!=0)
{
DEBUG1_CPUFREQ("Failed to set %s\n",cpudata.cpulist[cpu]);
return -1;
}
done++;
}
return done;
}
// This is just a wrapper around cpufreq_set_str with long int to string
// conversion
int cpufreq_set_long_int(char *parameter,long int value,long int checkdelay)
{
char buf[255];
snprintf(buf,255,"%ld",value);
return cpufreq_set_str(parameter,buf,checkdelay);
}
|