Merge branch 'slab/urgent' into slab/next
[pandora-kernel.git] / tools / power / cpupower / utils / idle_monitor / cpupower-monitor.c
1 /*
2  *  (C) 2010,2011       Thomas Renninger <trenn@suse.de>, Novell Inc.
3  *
4  *  Licensed under the terms of the GNU GPL License version 2.
5  *
6  *  Output format inspired by Len Brown's <lenb@kernel.org> turbostat tool.
7  *
8  */
9
10
11 #include <stdio.h>
12 #include <unistd.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <time.h>
16 #include <signal.h>
17 #include <sys/types.h>
18 #include <sys/wait.h>
19 #include <libgen.h>
20
21 #include "idle_monitor/cpupower-monitor.h"
22 #include "idle_monitor/idle_monitors.h"
23 #include "helpers/helpers.h"
24
25 /* Define pointers to all monitors.  */
26 #define DEF(x) & x ## _monitor ,
27 struct cpuidle_monitor *all_monitors[] = {
28 #include "idle_monitors.def"
29 0
30 };
31
32 static struct cpuidle_monitor *monitors[MONITORS_MAX];
33 static unsigned int avail_monitors;
34
35 static char *progname;
36
37 enum operation_mode_e { list = 1, show, show_all };
38 static int mode;
39 static int interval = 1;
40 static char *show_monitors_param;
41 static struct cpupower_topology cpu_top;
42
43 /* ToDo: Document this in the manpage */
44 static char range_abbr[RANGE_MAX] = { 'T', 'C', 'P', 'M', };
45
46 long long timespec_diff_us(struct timespec start, struct timespec end)
47 {
48         struct timespec temp;
49         if ((end.tv_nsec - start.tv_nsec) < 0) {
50                 temp.tv_sec = end.tv_sec - start.tv_sec - 1;
51                 temp.tv_nsec = 1000000000 + end.tv_nsec - start.tv_nsec;
52         } else {
53                 temp.tv_sec = end.tv_sec - start.tv_sec;
54                 temp.tv_nsec = end.tv_nsec - start.tv_nsec;
55         }
56         return (temp.tv_sec * 1000000) + (temp.tv_nsec / 1000);
57 }
58
59 void monitor_help(void)
60 {
61         printf(_("cpupower monitor: [-m <mon1>,[<mon2>],.. ] command\n"));
62         printf(_("cpupower monitor: [-m <mon1>,[<mon2>],.. ] [ -i interval_sec ]\n"));
63         printf(_("cpupower monitor: -l\n"));
64         printf(_("\t command: pass an arbitrary command to measure specific workload\n"));
65         printf(_("\t -i: time intervall to measure for in seconds (default 1)\n"));
66         printf(_("\t -l: list available CPU sleep monitors (for use with -m)\n"));
67         printf(_("\t -m: show specific CPU sleep monitors only (in same order)\n"));
68         printf(_("\t -h: print this help\n"));
69         printf("\n");
70         printf(_("only one of: -l, -m are allowed\nIf none of them is passed,"));
71         printf(_(" all supported monitors are shown\n"));
72 }
73
74 void print_n_spaces(int n)
75 {
76         int x;
77         for (x = 0; x < n; x++)
78                 printf(" ");
79 }
80
81 /* size of s must be at least n + 1 */
82 int fill_string_with_spaces(char *s, int n)
83 {
84         int len = strlen(s);
85         if (len > n)
86                 return -1;
87         for (; len < n; len++)
88                 s[len] = ' ';
89         s[len] = '\0';
90         return 0;
91 }
92
93 void print_header(int topology_depth)
94 {
95         int unsigned mon;
96         int state, need_len, pr_mon_len;
97         cstate_t s;
98         char buf[128] = "";
99         int percent_width = 4;
100
101         fill_string_with_spaces(buf, topology_depth * 5 - 1);
102         printf("%s|", buf);
103
104         for (mon = 0; mon < avail_monitors; mon++) {
105                 pr_mon_len = 0;
106                 need_len = monitors[mon]->hw_states_num * (percent_width + 3)
107                         - 1;
108                 if (mon != 0) {
109                         printf("|| ");
110                         need_len--;
111                 }
112                 sprintf(buf, "%s", monitors[mon]->name);
113                 fill_string_with_spaces(buf, need_len);
114                 printf("%s", buf);
115         }
116         printf("\n");
117
118         if (topology_depth > 2)
119                 printf("PKG |");
120         if (topology_depth > 1)
121                 printf("CORE|");
122         if (topology_depth > 0)
123                 printf("CPU |");
124
125         for (mon = 0; mon < avail_monitors; mon++) {
126                 if (mon != 0)
127                         printf("|| ");
128                 else
129                         printf(" ");
130                 for (state = 0; state < monitors[mon]->hw_states_num; state++) {
131                         if (state != 0)
132                                 printf(" | ");
133                         s = monitors[mon]->hw_states[state];
134                         sprintf(buf, "%s", s.name);
135                         fill_string_with_spaces(buf, percent_width);
136                         printf("%s", buf);
137                 }
138                 printf(" ");
139         }
140         printf("\n");
141 }
142
143
144 void print_results(int topology_depth, int cpu)
145 {
146         unsigned int mon;
147         int state, ret;
148         double percent;
149         unsigned long long result;
150         cstate_t s;
151
152         if (topology_depth > 2)
153                 printf("%4d|", cpu_top.core_info[cpu].pkg);
154         if (topology_depth > 1)
155                 printf("%4d|", cpu_top.core_info[cpu].core);
156         if (topology_depth > 0)
157                 printf("%4d|", cpu_top.core_info[cpu].cpu);
158
159         for (mon = 0; mon < avail_monitors; mon++) {
160                 if (mon != 0)
161                         printf("||");
162
163                 for (state = 0; state < monitors[mon]->hw_states_num; state++) {
164                         if (state != 0)
165                                 printf("|");
166
167                         s = monitors[mon]->hw_states[state];
168
169                         if (s.get_count_percent) {
170                                 ret = s.get_count_percent(s.id, &percent,
171                                                   cpu_top.core_info[cpu].cpu);
172                                 if (ret)
173                                         printf("******");
174                                 else if (percent >= 100.0)
175                                         printf("%6.1f", percent);
176                                 else
177                                         printf("%6.2f", percent);
178                         } else if (s.get_count) {
179                                 ret = s.get_count(s.id, &result,
180                                                   cpu_top.core_info[cpu].cpu);
181                                 if (ret)
182                                         printf("******");
183                                 else
184                                         printf("%6llu", result);
185                         } else {
186                                 printf(_("Monitor %s, Counter %s has no count "
187                                          "function. Implementation error\n"),
188                                        monitors[mon]->name, s.name);
189                                 exit(EXIT_FAILURE);
190                         }
191                 }
192         }
193         /* cpu offline */
194         if (cpu_top.core_info[cpu].pkg == -1 ||
195             cpu_top.core_info[cpu].core == -1) {
196                 printf(_(" *is offline\n"));
197                 return;
198         } else
199                 printf("\n");
200 }
201
202
203 /* param: string passed by -m param (The list of monitors to show)
204  *
205  * Monitors must have been registered already, matching monitors
206  * are picked out and available monitors array is overridden
207  * with matching ones
208  *
209  * Monitors get sorted in the same order the user passes them
210 */
211
212 static void parse_monitor_param(char *param)
213 {
214         unsigned int num;
215         int mon, hits = 0;
216         char *tmp = param, *token;
217         struct cpuidle_monitor *tmp_mons[MONITORS_MAX];
218
219
220         for (mon = 0; mon < MONITORS_MAX; mon++, tmp = NULL) {
221                 token = strtok(tmp, ",");
222                 if (token == NULL)
223                         break;
224                 if (strlen(token) >= MONITOR_NAME_LEN) {
225                         printf(_("%s: max monitor name length"
226                                  " (%d) exceeded\n"), token, MONITOR_NAME_LEN);
227                         continue;
228                 }
229
230                 for (num = 0; num < avail_monitors; num++) {
231                         if (!strcmp(monitors[num]->name, token)) {
232                                 dprint("Found requested monitor: %s\n", token);
233                                 tmp_mons[hits] = monitors[num];
234                                 hits++;
235                         }
236                 }
237         }
238         if (hits == 0) {
239                 printf(_("No matching monitor found in %s, "
240                          "try -l option\n"), param);
241                 monitor_help();
242                 exit(EXIT_FAILURE);
243         }
244         /* Override detected/registerd monitors array with requested one */
245         memcpy(monitors, tmp_mons,
246                 sizeof(struct cpuidle_monitor *) * MONITORS_MAX);
247         avail_monitors = hits;
248 }
249
250 void list_monitors(void)
251 {
252         unsigned int mon;
253         int state;
254         cstate_t s;
255
256         for (mon = 0; mon < avail_monitors; mon++) {
257                 printf(_("Monitor \"%s\" (%d states) - Might overflow after %u "
258                          "s\n"),
259                         monitors[mon]->name, monitors[mon]->hw_states_num,
260                         monitors[mon]->overflow_s);
261
262                 for (state = 0; state < monitors[mon]->hw_states_num; state++) {
263                         s = monitors[mon]->hw_states[state];
264                         /*
265                          * ToDo show more state capabilities:
266                          * percent, time (granlarity)
267                          */
268                         printf("%s\t[%c] -> %s\n", s.name, range_abbr[s.range],
269                                gettext(s.desc));
270                 }
271         }
272 }
273
274 int fork_it(char **argv)
275 {
276         int status;
277         unsigned int num;
278         unsigned long long timediff;
279         pid_t child_pid;
280         struct timespec start, end;
281
282         child_pid = fork();
283         clock_gettime(CLOCK_REALTIME, &start);
284
285         for (num = 0; num < avail_monitors; num++)
286                 monitors[num]->start();
287
288         if (!child_pid) {
289                 /* child */
290                 execvp(argv[0], argv);
291         } else {
292                 /* parent */
293                 if (child_pid == -1) {
294                         perror("fork");
295                         exit(1);
296                 }
297
298                 signal(SIGINT, SIG_IGN);
299                 signal(SIGQUIT, SIG_IGN);
300                 if (waitpid(child_pid, &status, 0) == -1) {
301                         perror("wait");
302                         exit(1);
303                 }
304         }
305         clock_gettime(CLOCK_REALTIME, &end);
306         for (num = 0; num < avail_monitors; num++)
307                 monitors[num]->stop();
308
309         timediff = timespec_diff_us(start, end);
310         if (WIFEXITED(status))
311                 printf(_("%s took %.5f seconds and exited with status %d\n"),
312                         argv[0], timediff / (1000.0 * 1000),
313                         WEXITSTATUS(status));
314         return 0;
315 }
316
317 int do_interval_measure(int i)
318 {
319         unsigned int num;
320
321         for (num = 0; num < avail_monitors; num++) {
322                 dprint("HW C-state residency monitor: %s - States: %d\n",
323                        monitors[num]->name, monitors[num]->hw_states_num);
324                 monitors[num]->start();
325         }
326         sleep(i);
327         for (num = 0; num < avail_monitors; num++)
328                 monitors[num]->stop();
329
330         return 0;
331 }
332
333 static void cmdline(int argc, char *argv[])
334 {
335         int opt;
336         progname = basename(argv[0]);
337
338         while ((opt = getopt(argc, argv, "+hli:m:")) != -1) {
339                 switch (opt) {
340                 case 'h':
341                         monitor_help();
342                         exit(EXIT_SUCCESS);
343                 case 'l':
344                         if (mode) {
345                                 monitor_help();
346                                 exit(EXIT_FAILURE);
347                         }
348                         mode = list;
349                         break;
350                 case 'i':
351                         /* only allow -i with -m or no option */
352                         if (mode && mode != show) {
353                                 monitor_help();
354                                 exit(EXIT_FAILURE);
355                         }
356                         interval = atoi(optarg);
357                         break;
358                 case 'm':
359                         if (mode) {
360                                 monitor_help();
361                                 exit(EXIT_FAILURE);
362                         }
363                         mode = show;
364                         show_monitors_param = optarg;
365                         break;
366                 default:
367                         monitor_help();
368                         exit(EXIT_FAILURE);
369                 }
370         }
371         if (!mode)
372                 mode = show_all;
373 }
374
375 int cmd_monitor(int argc, char **argv)
376 {
377         unsigned int num;
378         struct cpuidle_monitor *test_mon;
379         int cpu;
380
381         cmdline(argc, argv);
382         cpu_count = get_cpu_topology(&cpu_top);
383         if (cpu_count < 0) {
384                 printf(_("Cannot read number of available processors\n"));
385                 return EXIT_FAILURE;
386         }
387
388         dprint("System has up to %d CPU cores\n", cpu_count);
389
390         for (num = 0; all_monitors[num]; num++) {
391                 dprint("Try to register: %s\n", all_monitors[num]->name);
392                 test_mon = all_monitors[num]->do_register();
393                 if (test_mon) {
394                         if (test_mon->needs_root && !run_as_root) {
395                                 fprintf(stderr, _("Available monitor %s needs "
396                                           "root access\n"), test_mon->name);
397                                 continue;
398                         }
399                         monitors[avail_monitors] = test_mon;
400                         dprint("%s registered\n", all_monitors[num]->name);
401                         avail_monitors++;
402                 }
403         }
404
405         if (avail_monitors == 0) {
406                 printf(_("No HW Cstate monitors found\n"));
407                 return 1;
408         }
409
410         if (mode == list) {
411                 list_monitors();
412                 exit(EXIT_SUCCESS);
413         }
414
415         if (mode == show)
416                 parse_monitor_param(show_monitors_param);
417
418         dprint("Packages: %d - Cores: %d - CPUs: %d\n",
419                cpu_top.pkgs, cpu_top.cores, cpu_count);
420
421         /*
422          * if any params left, it must be a command to fork
423          */
424         if (argc - optind)
425                 fork_it(argv + optind);
426         else
427                 do_interval_measure(interval);
428
429         /* ToDo: Topology parsing needs fixing first to do
430            this more generically */
431         if (cpu_top.pkgs > 1)
432                 print_header(3);
433         else
434                 print_header(1);
435
436         for (cpu = 0; cpu < cpu_count; cpu++) {
437                 if (cpu_top.pkgs > 1)
438                         print_results(3, cpu);
439                 else
440                         print_results(1, cpu);
441         }
442
443         for (num = 0; num < avail_monitors; num++)
444                 monitors[num]->unregister();
445
446         cpu_topology_release(cpu_top);
447         return 0;
448 }