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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
/*
* Copyright 2008, Intel Corporation
* Copyright 2008, Sun Microsystems, Inc
*
* This file is part of PowerTOP
*
* This program file is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program in a file named COPYING; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* Authors:
* Arjan van de Ven <arjan@linux.intel.com>
* Eric C Saxe <eric.saxe@sun.com>
* Aubrey Li <aubrey.li@intel.com>
*/
/*
* GPL Disclaimer
*
* For the avoidance of doubt, except that if any license choice other
* than GPL or LGPL is available it will apply instead, Sun elects to
* use only the General Public License version 2 (GPLv2) at this time
* for any software where a choice of GPL license versions is made
* available with the language indicating that GPLv2 or any later
* version may be used, or where a choice of which version of the GPL
* is applied is otherwise unspecified.
*/
#include <stdlib.h>
#include <string.h>
#include <dtrace.h>
#include <kstat.h>
#include <errno.h>
#include "powertop.h"
#define HZ2MHZ(speed) ((speed) / 1000000)
static uint64_t max_cpufreq = 0;
static dtrace_hdl_t *g_dtp;
/*
* Enabling PM through /etc/power.conf
* See suggest_p_state()
*/
static char default_conf[] = "/etc/power.conf";
static char default_pmconf[] = "/usr/sbin/pmconfig";
static char cpupm_enable[] = " echo cpupm enable >> /etc/power.conf";
static char cpupm_treshold[] = " echo cpu-threshold 1s >> /etc/power.conf";
/*
* Buffer containing DTrace program to track CPU frequency transitions
*/
static const char *pt_cpufreq_dtrace_prog =
""
"hrtime_t last[int];"
""
"BEGIN"
"{"
" begin = timestamp;"
"}"
""
":::cpu-change-speed"
"/last[((cpudrv_devstate_t *)arg0)->cpu_id] != 0/"
"{"
" this->cpu = ((cpudrv_devstate_t *)arg0)->cpu_id;"
" this->oldspeed = ((cpudrv_pm_t *)arg1)->cur_spd->speed;"
" @times[this->cpu, this->oldspeed] = sum(timestamp - last[this->cpu]);"
" last[this->cpu] = timestamp;"
"}"
":::cpu-change-speed"
"/last[((cpudrv_devstate_t *)arg0)->cpu_id] == 0/"
"{"
" this->cpu = ((cpudrv_devstate_t *)arg0)->cpu_id;"
" this->oldspeed = ((cpudrv_pm_t *)arg1)->cur_spd->speed;"
" @times[this->cpu, this->oldspeed] = sum(timestamp - begin);"
" last[this->cpu] = timestamp;"
"}";
static int pt_cpufreq_snapshot(void);
static int pt_cpufreq_dtrace_walk(const dtrace_aggdata_t *, void *);
/*
* Perform setup necessary to enumerate and track CPU speed changes
*/
int
pt_cpufreq_stat_prepare(void)
{
dtrace_prog_t *prog;
dtrace_proginfo_t info;
dtrace_optval_t statustime;
kstat_ctl_t *kc;
kstat_t *ksp;
kstat_named_t *knp;
pstate_info_t *state;
char *s, *token;
int err;
state = pstate_info;
cpu_power_states = calloc((size_t)g_ncpus, sizeof (cpu_power_info_t));
/*
* Enumerate the CPU frequencies
*/
if ((kc = kstat_open()) == NULL)
return (errno);
ksp = kstat_lookup(kc, "cpu_info", cpu_table[0], NULL);
if (ksp == NULL)
return (errno);
(void) kstat_read(kc, ksp, NULL);
knp = kstat_data_lookup(ksp, "supported_frequencies_Hz");
s = knp->value.str.addr.ptr;
npstates = 0;
for (token = strtok(s, ":"), s = NULL;
NULL != token && npstates < NSTATES;
token = strtok(NULL, ":")) {
state->speed = HZ2MHZ(atoll(token));
if (state->speed > max_cpufreq)
max_cpufreq = state->speed;
state->total_time = (uint64_t)0;
npstates++;
state++;
}
if (token != NULL)
pt_error("%s : exceeded NSTATES\n", __FILE__);
(void) kstat_close(kc);
/*
* Return if speed transition is not supported
*/
if (npstates < 2)
return (-1);
/*
* Setup DTrace to look for CPU frequency changes
*/
if ((g_dtp = dtrace_open(DTRACE_VERSION, 0, &err)) == NULL) {
pt_error("%s : cannot open dtrace library: %s\n", __FILE__,
dtrace_errmsg(NULL, err));
return (-2);
}
if ((prog = dtrace_program_strcompile(g_dtp, pt_cpufreq_dtrace_prog,
DTRACE_PROBESPEC_NAME, 0, 0, NULL)) == NULL) {
pt_error("%s : cpu-change-speed probe unavailable\n", __FILE__);
return (dtrace_errno(g_dtp));
}
if (dtrace_program_exec(g_dtp, prog, &info) == -1) {
pt_error("%s : failed to enable speed probe\n", __FILE__);
return (dtrace_errno(g_dtp));
}
if (dtrace_setopt(g_dtp, "aggsize", "128k") == -1) {
pt_error("%s : failed to set speed 'aggsize'\n", __FILE__);
}
if (dtrace_setopt(g_dtp, "aggrate", "0") == -1) {
pt_error("%s : failed to set speed 'aggrate'\n", __FILE__);
}
if (dtrace_setopt(g_dtp, "aggpercpu", 0) == -1) {
pt_error("%s : failed to set speed 'aggpercpu'\n", __FILE__);
}
if (dtrace_go(g_dtp) != 0) {
pt_error("%s : failed to start speed observation", __FILE__);
return (dtrace_errno(g_dtp));
}
if (dtrace_getopt(g_dtp, "statusrate", &statustime) == -1) {
pt_error("%s : failed to get speed 'statusrate'\n", __FILE__);
return (dtrace_errno(g_dtp));
}
return (0);
}
/*
* The DTrace probes have already been enabled, and are tracking
* CPU speed transitions. Take a snapshot of the aggregations, and
* look for any CPUs that have made a speed transition over the last
* sampling interval. Note that the aggregations may be empty if no
* speed transitions took place over the last interval. In that case,
* notate that we have already accounted for the time, so that when
* we do encounter a speed transition in a future sampling interval
* we can subtract that time back out.
*/
int
pt_cpufreq_stat_collect(double interval)
{
int cpu, i, ret;
uint64_t speed;
hrtime_t duration;
cpu_power_info_t *cpu_pow;
/*
* Zero out the interval time reported by DTrace for
* this interval
*/
for (i = 0; i < npstates; i++)
pstate_info[i].total_time = 0;
for (i = 0; i < g_ncpus; i++)
cpu_power_states[i].dtrace_time = 0;
if (dtrace_status(g_dtp) == -1)
return (-1);
if (dtrace_aggregate_snap(g_dtp) != 0)
pt_error("%s : failed to add to stats aggregation", __FILE__);
if (dtrace_aggregate_walk_keyvarsorted(g_dtp, pt_cpufreq_dtrace_walk,
NULL) != 0)
pt_error("%s : failed to sort stats aggregation", __FILE__);
dtrace_aggregate_clear(g_dtp);
if ((ret = pt_cpufreq_snapshot()) != 0) {
pt_error("%s : failed to add to stats aggregation", __FILE__);
return (ret);
}
for (cpu = 0; cpu < g_ncpus; cpu++) {
cpu_pow = &cpu_power_states[cpu];
speed = cpu_pow->current_pstate;
duration = (hrtime_t)((interval * NANOSEC)) -
cpu_pow->dtrace_time;
for (i = 0; i < npstates; i++) {
if (pstate_info[i].speed == speed) {
pstate_info[i].total_time += duration;
cpu_pow->time_accounted += duration;
}
}
}
return (0);
}
/*
* Take a snapshot of each CPU's speed by looking through the cpu_info kstats.
*/
static int
pt_cpufreq_snapshot(void)
{
kstat_ctl_t *kc;
kstat_t *ksp;
kstat_named_t *knp;
int cpu;
cpu_power_info_t *state;
if ((kc = kstat_open()) == NULL)
return (errno);
for (cpu = 0; cpu < g_ncpus; cpu++) {
ksp = kstat_lookup(kc, "cpu_info", cpu_table[cpu], NULL);
if (ksp == NULL) {
pt_error("%s : couldn't find cpu_info kstat for CPU "
"%d\n", __FILE__, cpu);
(void) kstat_close(kc);
return (1);
}
if (kstat_read(kc, ksp, NULL) == -1) {
pt_error("%s : couldn't read cpu_info kstat for "
"CPU %d\n", __FILE__, cpu);
(void) kstat_close(kc);
return (2);
}
knp = kstat_data_lookup(ksp, "current_clock_Hz");
if (knp == NULL) {
pt_error("%s : couldn't find current_clock_Hz "
"kstat for CPU %d\n", __FILE__, cpu);
(void) kstat_close(kc);
return (3);
}
state = &cpu_power_states[cpu];
state->current_pstate = HZ2MHZ(knp->value.ui64);
}
if (kstat_close(kc) != 0)
pt_error("%s : couldn't close kstat\n", __FILE__);
return (0);
}
/*
* DTrace aggregation walker that sorts through a snapshot of the
* aggregation data collected during firings of the cpu-change-speed
* probe.
*/
/*ARGSUSED*/
static int
pt_cpufreq_dtrace_walk(const dtrace_aggdata_t *data, void *arg)
{
dtrace_aggdesc_t *aggdesc = data->dtada_desc;
dtrace_recdesc_t *cpu_rec, *speed_rec;
cpu_power_info_t *cpu_pow;
int32_t cpu;
uint64_t speed;
hrtime_t dt_state_time = 0;
int i;
if (strcmp(aggdesc->dtagd_name, "times") == 0) {
cpu_rec = &aggdesc->dtagd_rec[1];
speed_rec = &aggdesc->dtagd_rec[2];
for (i = 0; i < g_ncpus; i++) {
/* LINTED - alignment */
dt_state_time += *((hrtime_t *)(data->dtada_percpu[i]));
}
/* LINTED - alignment */
cpu = *(int32_t *)(data->dtada_data + cpu_rec->dtrd_offset);
/* LINTED - alignment */
speed = *(uint64_t *)(data->dtada_data +
speed_rec->dtrd_offset);
if (speed == 0) {
speed = max_cpufreq;
}
/*
* We have an aggregation record for "cpu" being at "speed"
* for an interval of "n" nanoseconds. The reported interval
* may exceed the powertop sampling interval, since we only
* notice during potentially infrequent firings of the
* "speed change" DTrace probe. In this case powertop would
* have already accounted for the portions of the interval
* that happened during prior powertop sampings, so subtract
* out time already accounted.
*/
cpu_pow = &cpu_power_states[cpu];
for (i = 0; i < npstates; i++) {
if (pstate_info[i].speed == speed) {
if (cpu_pow->time_accounted > 0) {
if (dt_state_time == 0)
continue;
if (dt_state_time >
cpu_pow->time_accounted) {
dt_state_time -=
cpu_pow->time_accounted;
cpu_pow->time_accounted = 0;
}
}
pstate_info[i].total_time += dt_state_time;
cpu_pow->dtrace_time += dt_state_time;
}
}
}
return (DTRACE_AGGWALK_NEXT);
}
/*
* Used as a suggestion, sets PM in /etc/power.conf and
* a 1sec threshold, then calls /usr/sbin/pmconfig
*/
void
enable_p_state(void)
{
(void) system(cpupm_enable);
(void) system(cpupm_treshold);
(void) system(default_pmconf);
}
/*
* Checks if PM is enabled in /etc/power.conf, enabling if not
*/
void
suggest_p_state(void)
{
char line[1024];
FILE *file;
/*
* Return if speed transition is not supported
*/
if (npstates < 2)
return;
file = fopen(default_conf, "r");
if (!file)
return;
(void) memset(line, 0, 1024);
while (fgets(line, 1023, file)) {
if (strstr(line, "cpupm")) {
if (strstr(line, "enable")) {
(void) fclose(file);
return;
}
}
}
add_suggestion("Suggestion: enable CPU power management by "
"pressing the P key", 40, 'P', "P - Enable p-state",
enable_p_state);
(void) fclose(file);
}
|