1 /* cpufreq-bench CPUFreq microbenchmark
3 * Copyright (C) 2008 Christian Kornacker <ckornacker@suse.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include <sys/types.h>
35 * returns time since epoch in µs
40 long long int get_time()
44 gettimeofday(&now
, NULL
);
46 return (long long int)(now
.tv_sec
* 1000000LL + now
.tv_usec
);
50 * sets the cpufreq governor
52 * @param governor cpufreq governor name
53 * @param cpu cpu for which the governor should be set
55 * @retval 0 on success
56 * @retval -1 when failed
59 int set_cpufreq_governor(char *governor
, unsigned int cpu
)
62 dprintf("set %s as cpufreq governor\n", governor
);
64 if (cpupower_is_cpu_online(cpu
) != 0) {
65 perror("cpufreq_cpu_exists");
66 fprintf(stderr
, "error: cpu %u does not exist\n", cpu
);
70 if (cpufreq_modify_policy_governor(cpu
, governor
) != 0) {
71 perror("cpufreq_modify_policy_governor");
72 fprintf(stderr
, "error: unable to set %s governor\n", governor
);
80 * sets cpu affinity for the process
82 * @param cpu cpu# to which the affinity should be set
84 * @retval 0 on success
85 * @retval -1 when setting the affinity failed
88 int set_cpu_affinity(unsigned int cpu
)
93 CPU_SET(cpu
, &cpuset
);
95 dprintf("set affinity to cpu #%u\n", cpu
);
97 if (sched_setaffinity(getpid(), sizeof(cpu_set_t
), &cpuset
) < 0) {
98 perror("sched_setaffinity");
99 fprintf(stderr
, "warning: unable to set cpu affinity\n");
107 * sets the process priority parameter
109 * @param priority priority value
111 * @retval 0 on success
112 * @retval -1 when setting the priority failed
115 int set_process_priority(int priority
)
117 struct sched_param param
;
119 dprintf("set scheduler priority to %i\n", priority
);
121 param
.sched_priority
= priority
;
123 if (sched_setscheduler(0, SCHEDULER
, ¶m
) < 0) {
124 perror("sched_setscheduler");
125 fprintf(stderr
, "warning: unable to set scheduler priority\n");
133 * notifies the user that the benchmark may run some time
135 * @param config benchmark config values
139 void prepare_user(const struct config
*config
)
141 unsigned long sleep_time
= 0;
142 unsigned long load_time
= 0;
145 for (round
= 0; round
< config
->rounds
; round
++) {
146 sleep_time
+= 2 * config
->cycles
*
147 (config
->sleep
+ config
->sleep_step
* round
);
148 load_time
+= 2 * config
->cycles
*
149 (config
->load
+ config
->load_step
* round
) +
150 (config
->load
+ config
->load_step
* round
* 4);
153 if (config
->verbose
|| config
->output
!= stdout
)
154 printf("approx. test duration: %im\n",
155 (int)((sleep_time
+ load_time
) / 60000000));
159 * sets up the cpu affinity and scheduler priority
161 * @param config benchmark config values
165 void prepare_system(const struct config
*config
)
168 printf("set cpu affinity to cpu #%u\n", config
->cpu
);
170 set_cpu_affinity(config
->cpu
);
172 switch (config
->prio
) {
175 printf("high priority condition requested\n");
177 set_process_priority(PRIORITY_HIGH
);
181 printf("low priority condition requested\n");
183 set_process_priority(PRIORITY_LOW
);
187 printf("default priority condition requested\n");
189 set_process_priority(PRIORITY_DEFAULT
);