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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#include <fcntl.h>
#include <sys/syscall.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include "debug.h"
#include "sysfs.h"
#define DIR_BUF_SIZE 1024
int cpufreq_is_cpu(char *name)
{
if (strncmp(name,"cpu",3)!=0) return 0;
if ((name[3]<'0') || (name[3]>'9')) return 0;
return 1;
}
int cpufreq_set_str(char *parameter,char *value,int checkdelay)
{
int fd;
char sysfs_file[128];
DEBUG1_CPUFREQ("Set %s to %s\n",parameter,value)
char buf[DIR_BUF_SIZE];
long nread;
struct linux_dirent {
unsigned long d_ino;
off_t d_off;
unsigned short d_reclen;
char d_name[];
};
struct linux_dirent *d;
size_t bpos;
fd=open("/sys/devices/system/cpu",O_RDONLY|O_DIRECTORY);
if (fd==-1)
{
DEBUG1_CPUFREQ("Unable to find CPU's\n");
return -1;
}
while(1)
{
nread=syscall(SYS_getdents,fd,buf,DIR_BUF_SIZE);
if (nread==-1)
{
DEBUG1_CPUFREQ("Unable to find CPU's\n");
close(fd);
return -1;
}
if (nread==0) break;
for(bpos=0;bpos<nread;)
{
d=(struct linux_dirent *)(buf+bpos);
if (cpufreq_is_cpu(d->d_name))
{
DEBUG2_CPUFREQ("Found CPU %s\n",d->d_name);
snprintf(sysfs_file,128,"/sys/devices/system/cpu/%s/cpufreq/%s",d->d_name,parameter);
if (sysfs_write_str(sysfs_file,value,checkdelay)!=0)
{
DEBUG1_CPUFREQ("Failed to set %s\n",d->d_name);
return -1;
}
}
bpos+=d->d_reclen;
}
}
close(fd);
}
int cpufreq_set_long_int(char *parameter,long int value,int checkdelay)
{
char buf[255];
snprintf(buf,255,"%ld",value);
cpufreq_set_str(parameter,buf,checkdelay);
}
|