blob: b815a12159b28126d7c698af687965498305f623 [file] [log] [blame]
Len Brown103a8fe2010-10-22 23:53:03 -04001/*
2 * turbostat -- show CPU frequency and C-state residency
3 * on modern Intel turbo-capable processors.
4 *
Len Browne23da032012-02-06 18:37:16 -05005 * Copyright (c) 2012 Intel Corporation.
Len Brown103a8fe2010-10-22 23:53:03 -04006 * Len Brown <len.brown@intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
Len Brown88c32812012-03-29 21:44:40 -040022#define _GNU_SOURCE
Len Brown103a8fe2010-10-22 23:53:03 -040023#include <stdio.h>
24#include <unistd.h>
25#include <sys/types.h>
26#include <sys/wait.h>
27#include <sys/stat.h>
28#include <sys/resource.h>
29#include <fcntl.h>
30#include <signal.h>
31#include <sys/time.h>
32#include <stdlib.h>
33#include <dirent.h>
34#include <string.h>
35#include <ctype.h>
Len Brown88c32812012-03-29 21:44:40 -040036#include <sched.h>
Len Brown103a8fe2010-10-22 23:53:03 -040037
38#define MSR_TSC 0x10
39#define MSR_NEHALEM_PLATFORM_INFO 0xCE
40#define MSR_NEHALEM_TURBO_RATIO_LIMIT 0x1AD
41#define MSR_APERF 0xE8
42#define MSR_MPERF 0xE7
43#define MSR_PKG_C2_RESIDENCY 0x60D /* SNB only */
44#define MSR_PKG_C3_RESIDENCY 0x3F8
45#define MSR_PKG_C6_RESIDENCY 0x3F9
46#define MSR_PKG_C7_RESIDENCY 0x3FA /* SNB only */
47#define MSR_CORE_C3_RESIDENCY 0x3FC
48#define MSR_CORE_C6_RESIDENCY 0x3FD
49#define MSR_CORE_C7_RESIDENCY 0x3FE /* SNB only */
50
51char *proc_stat = "/proc/stat";
52unsigned int interval_sec = 5; /* set with -i interval_sec */
53unsigned int verbose; /* set with -v */
Len Browne23da032012-02-06 18:37:16 -050054unsigned int summary_only; /* set with -s */
Len Brown103a8fe2010-10-22 23:53:03 -040055unsigned int skip_c0;
56unsigned int skip_c1;
57unsigned int do_nhm_cstates;
58unsigned int do_snb_cstates;
59unsigned int has_aperf;
60unsigned int units = 1000000000; /* Ghz etc */
61unsigned int genuine_intel;
62unsigned int has_invariant_tsc;
63unsigned int do_nehalem_platform_info;
64unsigned int do_nehalem_turbo_ratio_limit;
65unsigned int extra_msr_offset;
66double bclk;
67unsigned int show_pkg;
68unsigned int show_core;
69unsigned int show_cpu;
Len Brownc98d5d92012-06-04 00:56:40 -040070unsigned int show_pkg_only;
71unsigned int show_core_only;
72char *output_buffer, *outp;
Len Brown103a8fe2010-10-22 23:53:03 -040073
74int aperf_mperf_unstable;
75int backwards_count;
76char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -040077
Len Brownc98d5d92012-06-04 00:56:40 -040078cpu_set_t *cpu_present_set, *cpu_affinity_set;
79size_t cpu_present_setsize, cpu_affinity_setsize;
Len Brown103a8fe2010-10-22 23:53:03 -040080
Len Brownc98d5d92012-06-04 00:56:40 -040081struct thread_data {
82 unsigned long long tsc;
83 unsigned long long aperf;
84 unsigned long long mperf;
85 unsigned long long c1; /* derived */
86 unsigned long long extra_msr;
87 unsigned int cpu_id;
88 unsigned int flags;
89#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
90#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
91} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -040092
Len Brownc98d5d92012-06-04 00:56:40 -040093struct core_data {
94 unsigned long long c3;
95 unsigned long long c6;
96 unsigned long long c7;
97 unsigned int core_id;
98} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -040099
Len Brownc98d5d92012-06-04 00:56:40 -0400100struct pkg_data {
101 unsigned long long pc2;
102 unsigned long long pc3;
103 unsigned long long pc6;
104 unsigned long long pc7;
105 unsigned int package_id;
106} *package_even, *package_odd;
107
108#define ODD_COUNTERS thread_odd, core_odd, package_odd
109#define EVEN_COUNTERS thread_even, core_even, package_even
110
111#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
112 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
113 topo.num_threads_per_core + \
114 (core_no) * topo.num_threads_per_core + (thread_no))
115#define GET_CORE(core_base, core_no, pkg_no) \
116 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
117#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
118
119struct system_summary {
120 struct thread_data threads;
121 struct core_data cores;
122 struct pkg_data packages;
123} sum, average;
124
125
126struct topo_params {
127 int num_packages;
128 int num_cpus;
129 int num_cores;
130 int max_cpu_num;
131 int num_cores_per_pkg;
132 int num_threads_per_core;
133} topo;
134
135struct timeval tv_even, tv_odd, tv_delta;
136
137void setup_all_buffers(void);
138
139int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400140{
Len Brownc98d5d92012-06-04 00:56:40 -0400141 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400142}
Len Brown88c32812012-03-29 21:44:40 -0400143/*
Len Brownc98d5d92012-06-04 00:56:40 -0400144 * run func(thread, core, package) in topology order
145 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400146 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400147
Len Brownc98d5d92012-06-04 00:56:40 -0400148int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
149 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400150{
Len Brownc98d5d92012-06-04 00:56:40 -0400151 int retval, pkg_no, core_no, thread_no;
152
153 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
154 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
155 for (thread_no = 0; thread_no <
156 topo.num_threads_per_core; ++thread_no) {
157 struct thread_data *t;
158 struct core_data *c;
159 struct pkg_data *p;
160
161 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
162
163 if (cpu_is_not_present(t->cpu_id))
164 continue;
165
166 c = GET_CORE(core_base, core_no, pkg_no);
167 p = GET_PKG(pkg_base, pkg_no);
168
169 retval = func(t, c, p);
170 if (retval)
171 return retval;
172 }
173 }
174 }
175 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400176}
177
178int cpu_migrate(int cpu)
179{
Len Brownc98d5d92012-06-04 00:56:40 -0400180 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
181 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
182 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400183 return -1;
184 else
185 return 0;
186}
187
Len Brown15aaa342012-03-29 22:19:58 -0400188int get_msr(int cpu, off_t offset, unsigned long long *msr)
Len Brown103a8fe2010-10-22 23:53:03 -0400189{
190 ssize_t retval;
Len Brown103a8fe2010-10-22 23:53:03 -0400191 char pathname[32];
192 int fd;
193
194 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
195 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400196 if (fd < 0)
197 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -0400198
Len Brown15aaa342012-03-29 22:19:58 -0400199 retval = pread(fd, msr, sizeof *msr, offset);
Len Brown103a8fe2010-10-22 23:53:03 -0400200 close(fd);
Len Brown15aaa342012-03-29 22:19:58 -0400201
202 if (retval != sizeof *msr)
203 return -1;
204
205 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400206}
207
Len Browna829eb42011-02-10 23:36:34 -0500208void print_header(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400209{
210 if (show_pkg)
Len Brownc98d5d92012-06-04 00:56:40 -0400211 outp += sprintf(outp, "pk");
Len Browne23da032012-02-06 18:37:16 -0500212 if (show_pkg)
Len Brownc98d5d92012-06-04 00:56:40 -0400213 outp += sprintf(outp, " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400214 if (show_core)
Len Brownc98d5d92012-06-04 00:56:40 -0400215 outp += sprintf(outp, "cor");
Len Brown103a8fe2010-10-22 23:53:03 -0400216 if (show_cpu)
Len Brownc98d5d92012-06-04 00:56:40 -0400217 outp += sprintf(outp, " CPU");
Len Browne23da032012-02-06 18:37:16 -0500218 if (show_pkg || show_core || show_cpu)
Len Brownc98d5d92012-06-04 00:56:40 -0400219 outp += sprintf(outp, " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400220 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400221 outp += sprintf(outp, " %%c0");
Len Brown103a8fe2010-10-22 23:53:03 -0400222 if (has_aperf)
Len Brownc98d5d92012-06-04 00:56:40 -0400223 outp += sprintf(outp, " GHz");
224 outp += sprintf(outp, " TSC");
Len Brown103a8fe2010-10-22 23:53:03 -0400225 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400226 outp += sprintf(outp, " %%c1");
Len Brown103a8fe2010-10-22 23:53:03 -0400227 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400228 outp += sprintf(outp, " %%c3");
Len Brown103a8fe2010-10-22 23:53:03 -0400229 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400230 outp += sprintf(outp, " %%c6");
Len Brown103a8fe2010-10-22 23:53:03 -0400231 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400232 outp += sprintf(outp, " %%c7");
Len Brown103a8fe2010-10-22 23:53:03 -0400233 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400234 outp += sprintf(outp, " %%pc2");
Len Brown103a8fe2010-10-22 23:53:03 -0400235 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400236 outp += sprintf(outp, " %%pc3");
Len Brown103a8fe2010-10-22 23:53:03 -0400237 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400238 outp += sprintf(outp, " %%pc6");
Len Brown103a8fe2010-10-22 23:53:03 -0400239 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400240 outp += sprintf(outp, " %%pc7");
Len Brown103a8fe2010-10-22 23:53:03 -0400241 if (extra_msr_offset)
Len Brownc98d5d92012-06-04 00:56:40 -0400242 outp += sprintf(outp, " MSR 0x%x ", extra_msr_offset);
Len Brown103a8fe2010-10-22 23:53:03 -0400243
Len Brownc98d5d92012-06-04 00:56:40 -0400244 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400245}
246
Len Brownc98d5d92012-06-04 00:56:40 -0400247int dump_counters(struct thread_data *t, struct core_data *c,
248 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400249{
Len Brownc98d5d92012-06-04 00:56:40 -0400250 fprintf(stderr, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400251
Len Brownc98d5d92012-06-04 00:56:40 -0400252 if (t) {
253 fprintf(stderr, "CPU: %d flags 0x%x\n", t->cpu_id, t->flags);
254 fprintf(stderr, "TSC: %016llX\n", t->tsc);
255 fprintf(stderr, "aperf: %016llX\n", t->aperf);
256 fprintf(stderr, "mperf: %016llX\n", t->mperf);
257 fprintf(stderr, "c1: %016llX\n", t->c1);
258 fprintf(stderr, "msr0x%x: %016llX\n",
259 extra_msr_offset, t->extra_msr);
260 }
Len Brown103a8fe2010-10-22 23:53:03 -0400261
Len Brownc98d5d92012-06-04 00:56:40 -0400262 if (c) {
263 fprintf(stderr, "core: %d\n", c->core_id);
264 fprintf(stderr, "c3: %016llX\n", c->c3);
265 fprintf(stderr, "c6: %016llX\n", c->c6);
266 fprintf(stderr, "c7: %016llX\n", c->c7);
267 }
268
269 if (p) {
270 fprintf(stderr, "package: %d\n", p->package_id);
271 fprintf(stderr, "pc2: %016llX\n", p->pc2);
272 fprintf(stderr, "pc3: %016llX\n", p->pc3);
273 fprintf(stderr, "pc6: %016llX\n", p->pc6);
274 fprintf(stderr, "pc7: %016llX\n", p->pc7);
275 }
276 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400277}
278
Len Browne23da032012-02-06 18:37:16 -0500279/*
280 * column formatting convention & formats
281 * package: "pk" 2 columns %2d
282 * core: "cor" 3 columns %3d
283 * CPU: "CPU" 3 columns %3d
284 * GHz: "GHz" 3 columns %3.2
285 * TSC: "TSC" 3 columns %3.2
286 * percentage " %pc3" %6.2
287 */
Len Brownc98d5d92012-06-04 00:56:40 -0400288int format_counters(struct thread_data *t, struct core_data *c,
289 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400290{
291 double interval_float;
292
Len Brownc98d5d92012-06-04 00:56:40 -0400293 /* if showing only 1st thread in core and this isn't one, bail out */
294 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
295 return 0;
296
297 /* if showing only 1st thread in pkg and this isn't one, bail out */
298 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
299 return 0;
300
Len Brown103a8fe2010-10-22 23:53:03 -0400301 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
302
Len Brownc98d5d92012-06-04 00:56:40 -0400303 /* topo columns, print blanks on 1st (average) line */
304 if (t == &average.threads) {
Len Brown103a8fe2010-10-22 23:53:03 -0400305 if (show_pkg)
Len Brownc98d5d92012-06-04 00:56:40 -0400306 outp += sprintf(outp, " ");
Len Browne23da032012-02-06 18:37:16 -0500307 if (show_pkg && show_core)
Len Brownc98d5d92012-06-04 00:56:40 -0400308 outp += sprintf(outp, " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400309 if (show_core)
Len Brownc98d5d92012-06-04 00:56:40 -0400310 outp += sprintf(outp, " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400311 if (show_cpu)
Len Brownc98d5d92012-06-04 00:56:40 -0400312 outp += sprintf(outp, " " " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400313 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400314 if (show_pkg) {
315 if (p)
316 outp += sprintf(outp, "%2d", p->package_id);
317 else
318 outp += sprintf(outp, " ");
319 }
Len Browne23da032012-02-06 18:37:16 -0500320 if (show_pkg && show_core)
Len Brownc98d5d92012-06-04 00:56:40 -0400321 outp += sprintf(outp, " ");
322 if (show_core) {
323 if (c)
324 outp += sprintf(outp, "%3d", c->core_id);
325 else
326 outp += sprintf(outp, " ");
327 }
Len Brown103a8fe2010-10-22 23:53:03 -0400328 if (show_cpu)
Len Brownc98d5d92012-06-04 00:56:40 -0400329 outp += sprintf(outp, " %3d", t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400330 }
331
332 /* %c0 */
333 if (do_nhm_cstates) {
Len Browne23da032012-02-06 18:37:16 -0500334 if (show_pkg || show_core || show_cpu)
Len Brownc98d5d92012-06-04 00:56:40 -0400335 outp += sprintf(outp, " ");
Len Brown103a8fe2010-10-22 23:53:03 -0400336 if (!skip_c0)
Len Brownc98d5d92012-06-04 00:56:40 -0400337 outp += sprintf(outp, "%6.2f", 100.0 * t->mperf/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400338 else
Len Brownc98d5d92012-06-04 00:56:40 -0400339 outp += sprintf(outp, " ****");
Len Brown103a8fe2010-10-22 23:53:03 -0400340 }
341
342 /* GHz */
343 if (has_aperf) {
344 if (!aperf_mperf_unstable) {
Len Brownc98d5d92012-06-04 00:56:40 -0400345 outp += sprintf(outp, " %3.2f",
346 1.0 * t->tsc / units * t->aperf /
347 t->mperf / interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400348 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400349 if (t->aperf > t->tsc || t->mperf > t->tsc) {
350 outp += sprintf(outp, " ***");
Len Brown103a8fe2010-10-22 23:53:03 -0400351 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400352 outp += sprintf(outp, "%3.1f*",
353 1.0 * t->tsc /
354 units * t->aperf /
355 t->mperf / interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400356 }
357 }
358 }
359
360 /* TSC */
Len Brownc98d5d92012-06-04 00:56:40 -0400361 outp += sprintf(outp, "%5.2f", 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400362
363 if (do_nhm_cstates) {
364 if (!skip_c1)
Len Brownc98d5d92012-06-04 00:56:40 -0400365 outp += sprintf(outp, " %6.2f", 100.0 * t->c1/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400366 else
Len Brownc98d5d92012-06-04 00:56:40 -0400367 outp += sprintf(outp, " ****");
Len Brown103a8fe2010-10-22 23:53:03 -0400368 }
Len Brownc98d5d92012-06-04 00:56:40 -0400369
370 /* print per-core data only for 1st thread in core */
371 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
372 goto done;
373
Len Brown103a8fe2010-10-22 23:53:03 -0400374 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400375 outp += sprintf(outp, " %6.2f", 100.0 * c->c3/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400376 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400377 outp += sprintf(outp, " %6.2f", 100.0 * c->c6/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400378 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400379 outp += sprintf(outp, " %6.2f", 100.0 * c->c7/t->tsc);
380
381 /* print per-package data only for 1st core in package */
382 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
383 goto done;
384
Len Brown103a8fe2010-10-22 23:53:03 -0400385 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400386 outp += sprintf(outp, " %6.2f", 100.0 * p->pc2/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400387 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400388 outp += sprintf(outp, " %6.2f", 100.0 * p->pc3/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400389 if (do_nhm_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400390 outp += sprintf(outp, " %6.2f", 100.0 * p->pc6/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400391 if (do_snb_cstates)
Len Brownc98d5d92012-06-04 00:56:40 -0400392 outp += sprintf(outp, " %6.2f", 100.0 * p->pc7/t->tsc);
393done:
Len Brown103a8fe2010-10-22 23:53:03 -0400394 if (extra_msr_offset)
Len Brownc98d5d92012-06-04 00:56:40 -0400395 outp += sprintf(outp, " 0x%016llx", t->extra_msr);
396 outp += sprintf(outp, "\n");
397
398 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400399}
400
Len Brownc98d5d92012-06-04 00:56:40 -0400401void flush_stdout()
Len Brown103a8fe2010-10-22 23:53:03 -0400402{
Len Brownc98d5d92012-06-04 00:56:40 -0400403 fputs(output_buffer, stdout);
404 outp = output_buffer;
405}
406void flush_stderr()
407{
408 fputs(output_buffer, stderr);
409 outp = output_buffer;
410}
411void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
412{
Len Browne23da032012-02-06 18:37:16 -0500413 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -0400414
Len Browne23da032012-02-06 18:37:16 -0500415 if (!printed || !summary_only)
416 print_header();
Len Brown103a8fe2010-10-22 23:53:03 -0400417
Len Brownc98d5d92012-06-04 00:56:40 -0400418 if (topo.num_cpus > 1)
419 format_counters(&average.threads, &average.cores,
420 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -0400421
Len Browne23da032012-02-06 18:37:16 -0500422 printed = 1;
423
424 if (summary_only)
425 return;
426
Len Brownc98d5d92012-06-04 00:56:40 -0400427 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400428}
429
Len Brownc98d5d92012-06-04 00:56:40 -0400430void
431delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -0400432{
Len Brownc98d5d92012-06-04 00:56:40 -0400433 old->pc2 = new->pc2 - old->pc2;
434 old->pc3 = new->pc3 - old->pc3;
435 old->pc6 = new->pc6 - old->pc6;
436 old->pc7 = new->pc7 - old->pc7;
437}
Len Brown103a8fe2010-10-22 23:53:03 -0400438
Len Brownc98d5d92012-06-04 00:56:40 -0400439void
440delta_core(struct core_data *new, struct core_data *old)
441{
442 old->c3 = new->c3 - old->c3;
443 old->c6 = new->c6 - old->c6;
444 old->c7 = new->c7 - old->c7;
445}
Len Brown103a8fe2010-10-22 23:53:03 -0400446
Len Brownc98d5d92012-06-04 00:56:40 -0400447void
448delta_thread(struct thread_data *new, struct thread_data *old,
449 struct core_data *core_delta)
450{
451 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -0400452
Len Brownc98d5d92012-06-04 00:56:40 -0400453 /* check for TSC < 1 Mcycles over interval */
454 if (old->tsc < (1000 * 1000)) {
455 fprintf(stderr, "Insanely slow TSC rate, TSC stops in idle?\n");
456 fprintf(stderr, "You can disable all c-states by booting with \"idle=poll\"\n");
457 fprintf(stderr, "or just the deep ones with \"processor.max_cstate=1\"\n");
458 exit(-3);
459 }
Len Brown103a8fe2010-10-22 23:53:03 -0400460
Len Brownc98d5d92012-06-04 00:56:40 -0400461 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -0400462
Len Brownc98d5d92012-06-04 00:56:40 -0400463 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
464 old->aperf = new->aperf - old->aperf;
465 old->mperf = new->mperf - old->mperf;
466 } else {
Len Brown103a8fe2010-10-22 23:53:03 -0400467
Len Brownc98d5d92012-06-04 00:56:40 -0400468 if (!aperf_mperf_unstable) {
469 fprintf(stderr, "%s: APERF or MPERF went backwards *\n", progname);
470 fprintf(stderr, "* Frequency results do not cover entire interval *\n");
471 fprintf(stderr, "* fix this by running Linux-2.6.30 or later *\n");
472
473 aperf_mperf_unstable = 1;
474 }
Len Brown103a8fe2010-10-22 23:53:03 -0400475 /*
Len Brownc98d5d92012-06-04 00:56:40 -0400476 * mperf delta is likely a huge "positive" number
477 * can not use it for calculating c0 time
Len Brown103a8fe2010-10-22 23:53:03 -0400478 */
Len Brownc98d5d92012-06-04 00:56:40 -0400479 skip_c0 = 1;
480 skip_c1 = 1;
481 }
Len Brown103a8fe2010-10-22 23:53:03 -0400482
Len Brown103a8fe2010-10-22 23:53:03 -0400483
Len Brownc98d5d92012-06-04 00:56:40 -0400484 /*
485 * As mperf and tsc collection are not atomic,
486 * it is possible for mperf's non-halted cycles
487 * to exceed TSC's all cycles: show c1 = 0% in that case.
488 */
489 if (old->mperf > old->tsc)
490 old->c1 = 0;
491 else {
492 /* normal case, derive c1 */
493 old->c1 = old->tsc - old->mperf - core_delta->c3
494 - core_delta->c6 - core_delta->c7;
495 }
496 if (old->mperf == 0) {
497 if (verbose) fprintf(stderr, "cpu%d MPERF 0!\n", old->cpu_id);
498 old->mperf = 1; /* divide by 0 protection */
499 }
500
501 /*
502 * for "extra msr", just copy the latest w/o subtracting
503 */
504 old->extra_msr = new->extra_msr;
505}
506
507int delta_cpu(struct thread_data *t, struct core_data *c,
508 struct pkg_data *p, struct thread_data *t2,
509 struct core_data *c2, struct pkg_data *p2)
510{
511 /* calculate core delta only for 1st thread in core */
512 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
513 delta_core(c, c2);
514
515 /* always calculate thread delta */
516 delta_thread(t, t2, c2); /* c2 is core delta */
517
518 /* calculate package delta only for 1st core in package */
519 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
520 delta_package(p, p2);
521
522 return 0;
523}
524
525void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
526{
527 t->tsc = 0;
528 t->aperf = 0;
529 t->mperf = 0;
530 t->c1 = 0;
531
532 /* tells format_counters to dump all fields from this set */
533 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
534
535 c->c3 = 0;
536 c->c6 = 0;
537 c->c7 = 0;
538
539 p->pc2 = 0;
540 p->pc3 = 0;
541 p->pc6 = 0;
542 p->pc7 = 0;
543}
544int sum_counters(struct thread_data *t, struct core_data *c,
545 struct pkg_data *p)
546{
547 average.threads.tsc += t->tsc;
548 average.threads.aperf += t->aperf;
549 average.threads.mperf += t->mperf;
550 average.threads.c1 += t->c1;
551
552 /* sum per-core values only for 1st thread in core */
553 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
554 return 0;
555
556 average.cores.c3 += c->c3;
557 average.cores.c6 += c->c6;
558 average.cores.c7 += c->c7;
559
560 /* sum per-pkg values only for 1st core in pkg */
561 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
562 return 0;
563
564 average.packages.pc2 += p->pc2;
565 average.packages.pc3 += p->pc3;
566 average.packages.pc6 += p->pc6;
567 average.packages.pc7 += p->pc7;
568
569 return 0;
570}
571/*
572 * sum the counters for all cpus in the system
573 * compute the weighted average
574 */
575void compute_average(struct thread_data *t, struct core_data *c,
576 struct pkg_data *p)
577{
578 clear_counters(&average.threads, &average.cores, &average.packages);
579
580 for_all_cpus(sum_counters, t, c, p);
581
582 average.threads.tsc /= topo.num_cpus;
583 average.threads.aperf /= topo.num_cpus;
584 average.threads.mperf /= topo.num_cpus;
585 average.threads.c1 /= topo.num_cpus;
586
587 average.cores.c3 /= topo.num_cores;
588 average.cores.c6 /= topo.num_cores;
589 average.cores.c7 /= topo.num_cores;
590
591 average.packages.pc2 /= topo.num_packages;
592 average.packages.pc3 /= topo.num_packages;
593 average.packages.pc6 /= topo.num_packages;
594 average.packages.pc7 /= topo.num_packages;
595}
596
597static unsigned long long rdtsc(void)
598{
599 unsigned int low, high;
600
601 asm volatile("rdtsc" : "=a" (low), "=d" (high));
602
603 return low | ((unsigned long long)high) << 32;
604}
605
606
607/*
608 * get_counters(...)
609 * migrate to cpu
610 * acquire and record local counters for that cpu
611 */
612int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
613{
614 int cpu = t->cpu_id;
615
616 if (cpu_migrate(cpu))
617 return -1;
618
619 t->tsc = rdtsc(); /* we are running on local CPU of interest */
620
621 if (has_aperf) {
622 if (get_msr(cpu, MSR_APERF, &t->aperf))
623 return -3;
624 if (get_msr(cpu, MSR_MPERF, &t->mperf))
625 return -4;
626 }
627
628 if (extra_msr_offset)
629 if (get_msr(cpu, extra_msr_offset, &t->extra_msr))
630 return -5;
631
632 /* collect core counters only for 1st thread in core */
633 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
634 return 0;
635
636 if (do_nhm_cstates) {
637 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
638 return -6;
639 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
640 return -7;
641 }
642
643 if (do_snb_cstates)
644 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
645 return -8;
646
647 /* collect package counters only for 1st core in package */
648 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
649 return 0;
650
651 if (do_nhm_cstates) {
652 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
653 return -9;
654 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
655 return -10;
656 }
657 if (do_snb_cstates) {
658 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
659 return -11;
660 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
661 return -12;
Len Brown103a8fe2010-10-22 23:53:03 -0400662 }
663 return 0;
664}
665
Len Brownc98d5d92012-06-04 00:56:40 -0400666void print_verbose_header(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400667{
668 unsigned long long msr;
669 unsigned int ratio;
670
671 if (!do_nehalem_platform_info)
672 return;
673
Len Brown15aaa342012-03-29 22:19:58 -0400674 get_msr(0, MSR_NEHALEM_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -0400675
676 ratio = (msr >> 40) & 0xFF;
677 fprintf(stderr, "%d * %.0f = %.0f MHz max efficiency\n",
678 ratio, bclk, ratio * bclk);
679
680 ratio = (msr >> 8) & 0xFF;
681 fprintf(stderr, "%d * %.0f = %.0f MHz TSC frequency\n",
682 ratio, bclk, ratio * bclk);
683
684 if (verbose > 1)
685 fprintf(stderr, "MSR_NEHALEM_PLATFORM_INFO: 0x%llx\n", msr);
686
687 if (!do_nehalem_turbo_ratio_limit)
688 return;
689
Len Brown15aaa342012-03-29 22:19:58 -0400690 get_msr(0, MSR_NEHALEM_TURBO_RATIO_LIMIT, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -0400691
692 ratio = (msr >> 24) & 0xFF;
693 if (ratio)
694 fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
695 ratio, bclk, ratio * bclk);
696
697 ratio = (msr >> 16) & 0xFF;
698 if (ratio)
699 fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
700 ratio, bclk, ratio * bclk);
701
702 ratio = (msr >> 8) & 0xFF;
703 if (ratio)
704 fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
705 ratio, bclk, ratio * bclk);
706
707 ratio = (msr >> 0) & 0xFF;
708 if (ratio)
709 fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
710 ratio, bclk, ratio * bclk);
711
712}
713
Len Brownc98d5d92012-06-04 00:56:40 -0400714void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400715{
Len Brownc98d5d92012-06-04 00:56:40 -0400716 CPU_FREE(cpu_present_set);
717 cpu_present_set = NULL;
718 cpu_present_set = 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400719
Len Brownc98d5d92012-06-04 00:56:40 -0400720 CPU_FREE(cpu_affinity_set);
721 cpu_affinity_set = NULL;
722 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400723
Len Brownc98d5d92012-06-04 00:56:40 -0400724 free(thread_even);
725 free(core_even);
726 free(package_even);
727
728 thread_even = NULL;
729 core_even = NULL;
730 package_even = NULL;
731
732 free(thread_odd);
733 free(core_odd);
734 free(package_odd);
735
736 thread_odd = NULL;
737 core_odd = NULL;
738 package_odd = NULL;
739
740 free(output_buffer);
741 output_buffer = NULL;
742 outp = NULL;
Len Brown103a8fe2010-10-22 23:53:03 -0400743}
744
Len Brownc98d5d92012-06-04 00:56:40 -0400745/*
746 * cpu_is_first_sibling_in_core(cpu)
747 * return 1 if given CPU is 1st HT sibling in the core
748 */
749int cpu_is_first_sibling_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400750{
Len Brownc98d5d92012-06-04 00:56:40 -0400751 char path[64];
752 FILE *filep;
753 int first_cpu;
Len Brown103a8fe2010-10-22 23:53:03 -0400754
Len Brownc98d5d92012-06-04 00:56:40 -0400755 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
756 filep = fopen(path, "r");
757 if (filep == NULL) {
758 perror(path);
759 exit(1);
760 }
761 fscanf(filep, "%d", &first_cpu);
762 fclose(filep);
763 return (cpu == first_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -0400764}
765
Len Brownc98d5d92012-06-04 00:56:40 -0400766/*
767 * cpu_is_first_core_in_package(cpu)
768 * return 1 if given CPU is 1st core in package
769 */
770int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400771{
Len Brownc98d5d92012-06-04 00:56:40 -0400772 char path[64];
773 FILE *filep;
774 int first_cpu;
Len Brown103a8fe2010-10-22 23:53:03 -0400775
Len Brownc98d5d92012-06-04 00:56:40 -0400776 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
777 filep = fopen(path, "r");
778 if (filep == NULL) {
779 perror(path);
Len Brown103a8fe2010-10-22 23:53:03 -0400780 exit(1);
781 }
Len Brownc98d5d92012-06-04 00:56:40 -0400782 fscanf(filep, "%d", &first_cpu);
783 fclose(filep);
784 return (cpu == first_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -0400785}
786
787int get_physical_package_id(int cpu)
788{
Len Brownc98d5d92012-06-04 00:56:40 -0400789 char path[80];
Len Brown103a8fe2010-10-22 23:53:03 -0400790 FILE *filep;
791 int pkg;
792
793 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
794 filep = fopen(path, "r");
795 if (filep == NULL) {
796 perror(path);
797 exit(1);
798 }
799 fscanf(filep, "%d", &pkg);
800 fclose(filep);
801 return pkg;
802}
803
804int get_core_id(int cpu)
805{
Len Brownc98d5d92012-06-04 00:56:40 -0400806 char path[80];
Len Brown103a8fe2010-10-22 23:53:03 -0400807 FILE *filep;
808 int core;
809
810 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
811 filep = fopen(path, "r");
812 if (filep == NULL) {
813 perror(path);
814 exit(1);
815 }
816 fscanf(filep, "%d", &core);
817 fclose(filep);
818 return core;
819}
820
Len Brownc98d5d92012-06-04 00:56:40 -0400821int get_num_ht_siblings(int cpu)
822{
823 char path[80];
824 FILE *filep;
825 int sib1, sib2;
826 int matches;
827 char character;
828
829 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
830 filep = fopen(path, "r");
831 if (filep == NULL) {
832 perror(path);
833 exit(1);
834 }
835 /*
836 * file format:
837 * if a pair of number with a character between: 2 siblings (eg. 1-2, or 1,4)
838 * otherwinse 1 sibling (self).
839 */
840 matches = fscanf(filep, "%d%c%d\n", &sib1, &character, &sib2);
841
842 fclose(filep);
843
844 if (matches == 3)
845 return 2;
846 else
847 return 1;
848}
849
Len Brown103a8fe2010-10-22 23:53:03 -0400850/*
Len Brownc98d5d92012-06-04 00:56:40 -0400851 * run func(thread, core, package) in topology order
852 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -0400853 */
854
Len Brownc98d5d92012-06-04 00:56:40 -0400855int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
856 struct pkg_data *, struct thread_data *, struct core_data *,
857 struct pkg_data *), struct thread_data *thread_base,
858 struct core_data *core_base, struct pkg_data *pkg_base,
859 struct thread_data *thread_base2, struct core_data *core_base2,
860 struct pkg_data *pkg_base2)
861{
862 int retval, pkg_no, core_no, thread_no;
863
864 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
865 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
866 for (thread_no = 0; thread_no <
867 topo.num_threads_per_core; ++thread_no) {
868 struct thread_data *t, *t2;
869 struct core_data *c, *c2;
870 struct pkg_data *p, *p2;
871
872 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
873
874 if (cpu_is_not_present(t->cpu_id))
875 continue;
876
877 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
878
879 c = GET_CORE(core_base, core_no, pkg_no);
880 c2 = GET_CORE(core_base2, core_no, pkg_no);
881
882 p = GET_PKG(pkg_base, pkg_no);
883 p2 = GET_PKG(pkg_base2, pkg_no);
884
885 retval = func(t, c, p, t2, c2, p2);
886 if (retval)
887 return retval;
888 }
889 }
890 }
891 return 0;
892}
893
894/*
895 * run func(cpu) on every cpu in /proc/stat
896 * return max_cpu number
897 */
898int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -0400899{
900 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -0400901 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -0400902 int retval;
903
904 fp = fopen(proc_stat, "r");
905 if (fp == NULL) {
906 perror(proc_stat);
907 exit(1);
908 }
909
910 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
911 if (retval != 0) {
912 perror("/proc/stat format");
913 exit(1);
914 }
915
Len Brownc98d5d92012-06-04 00:56:40 -0400916 while (1) {
917 retval = fscanf(fp, "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu_num);
Len Brown103a8fe2010-10-22 23:53:03 -0400918 if (retval != 1)
919 break;
920
Len Brownc98d5d92012-06-04 00:56:40 -0400921 retval = func(cpu_num);
922 if (retval) {
923 fclose(fp);
924 return(retval);
925 }
Len Brown103a8fe2010-10-22 23:53:03 -0400926 }
927 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -0400928 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400929}
930
931void re_initialize(void)
932{
Len Brownc98d5d92012-06-04 00:56:40 -0400933 free_all_buffers();
934 setup_all_buffers();
935 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -0400936}
937
Len Brownc98d5d92012-06-04 00:56:40 -0400938
Len Brown103a8fe2010-10-22 23:53:03 -0400939/*
Len Brownc98d5d92012-06-04 00:56:40 -0400940 * count_cpus()
941 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -0400942 */
Len Brownc98d5d92012-06-04 00:56:40 -0400943int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400944{
Len Brownc98d5d92012-06-04 00:56:40 -0400945 if (topo.max_cpu_num < cpu)
946 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -0400947
Len Brownc98d5d92012-06-04 00:56:40 -0400948 topo.num_cpus += 1;
949 return 0;
950}
951int mark_cpu_present(int cpu)
952{
953 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -0400954 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400955}
956
957void turbostat_loop()
958{
Len Brownc98d5d92012-06-04 00:56:40 -0400959 int retval;
960
Len Brown103a8fe2010-10-22 23:53:03 -0400961restart:
Len Brownc98d5d92012-06-04 00:56:40 -0400962 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
963 if (retval) {
964 re_initialize();
965 goto restart;
966 }
Len Brown103a8fe2010-10-22 23:53:03 -0400967 gettimeofday(&tv_even, (struct timezone *)NULL);
968
969 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -0400970 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -0400971 re_initialize();
972 goto restart;
973 }
974 sleep(interval_sec);
Len Brownc98d5d92012-06-04 00:56:40 -0400975 retval = for_all_cpus(get_counters, ODD_COUNTERS);
976 if (retval) {
Len Brown15aaa342012-03-29 22:19:58 -0400977 re_initialize();
978 goto restart;
979 }
Len Brown103a8fe2010-10-22 23:53:03 -0400980 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -0400981 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -0400982 for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS);
983 compute_average(EVEN_COUNTERS);
984 format_all_counters(EVEN_COUNTERS);
985 flush_stdout();
Len Brown15aaa342012-03-29 22:19:58 -0400986 sleep(interval_sec);
Len Brownc98d5d92012-06-04 00:56:40 -0400987 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
988 if (retval) {
Len Brown103a8fe2010-10-22 23:53:03 -0400989 re_initialize();
990 goto restart;
991 }
Len Brown103a8fe2010-10-22 23:53:03 -0400992 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -0400993 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -0400994 for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS);
995 compute_average(ODD_COUNTERS);
996 format_all_counters(ODD_COUNTERS);
997 flush_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -0400998 }
999}
1000
1001void check_dev_msr()
1002{
1003 struct stat sb;
1004
1005 if (stat("/dev/cpu/0/msr", &sb)) {
1006 fprintf(stderr, "no /dev/cpu/0/msr\n");
1007 fprintf(stderr, "Try \"# modprobe msr\"\n");
1008 exit(-5);
1009 }
1010}
1011
1012void check_super_user()
1013{
1014 if (getuid() != 0) {
1015 fprintf(stderr, "must be root\n");
1016 exit(-6);
1017 }
1018}
1019
1020int has_nehalem_turbo_ratio_limit(unsigned int family, unsigned int model)
1021{
1022 if (!genuine_intel)
1023 return 0;
1024
1025 if (family != 6)
1026 return 0;
1027
1028 switch (model) {
1029 case 0x1A: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
1030 case 0x1E: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
1031 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
1032 case 0x25: /* Westmere Client - Clarkdale, Arrandale */
1033 case 0x2C: /* Westmere EP - Gulftown */
1034 case 0x2A: /* SNB */
1035 case 0x2D: /* SNB Xeon */
Len Brown553575f2011-11-18 03:32:01 -05001036 case 0x3A: /* IVB */
1037 case 0x3D: /* IVB Xeon */
Len Brown103a8fe2010-10-22 23:53:03 -04001038 return 1;
1039 case 0x2E: /* Nehalem-EX Xeon - Beckton */
1040 case 0x2F: /* Westmere-EX Xeon - Eagleton */
1041 default:
1042 return 0;
1043 }
1044}
1045
1046int is_snb(unsigned int family, unsigned int model)
1047{
1048 if (!genuine_intel)
1049 return 0;
1050
1051 switch (model) {
1052 case 0x2A:
1053 case 0x2D:
Len Brown650a37f2012-06-03 23:34:44 -04001054 case 0x3A: /* IVB */
1055 case 0x3D: /* IVB Xeon */
Len Brown103a8fe2010-10-22 23:53:03 -04001056 return 1;
1057 }
1058 return 0;
1059}
1060
1061double discover_bclk(unsigned int family, unsigned int model)
1062{
1063 if (is_snb(family, model))
1064 return 100.00;
1065 else
1066 return 133.33;
1067}
1068
1069void check_cpuid()
1070{
1071 unsigned int eax, ebx, ecx, edx, max_level;
1072 unsigned int fms, family, model, stepping;
1073
1074 eax = ebx = ecx = edx = 0;
1075
1076 asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0));
1077
1078 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
1079 genuine_intel = 1;
1080
1081 if (verbose)
1082 fprintf(stderr, "%.4s%.4s%.4s ",
1083 (char *)&ebx, (char *)&edx, (char *)&ecx);
1084
1085 asm("cpuid" : "=a" (fms), "=c" (ecx), "=d" (edx) : "a" (1) : "ebx");
1086 family = (fms >> 8) & 0xf;
1087 model = (fms >> 4) & 0xf;
1088 stepping = fms & 0xf;
1089 if (family == 6 || family == 0xf)
1090 model += ((fms >> 16) & 0xf) << 4;
1091
1092 if (verbose)
1093 fprintf(stderr, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
1094 max_level, family, model, stepping, family, model, stepping);
1095
1096 if (!(edx & (1 << 5))) {
1097 fprintf(stderr, "CPUID: no MSR\n");
1098 exit(1);
1099 }
1100
1101 /*
1102 * check max extended function levels of CPUID.
1103 * This is needed to check for invariant TSC.
1104 * This check is valid for both Intel and AMD.
1105 */
1106 ebx = ecx = edx = 0;
1107 asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000000));
1108
1109 if (max_level < 0x80000007) {
1110 fprintf(stderr, "CPUID: no invariant TSC (max_level 0x%x)\n", max_level);
1111 exit(1);
1112 }
1113
1114 /*
1115 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
1116 * this check is valid for both Intel and AMD
1117 */
1118 asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000007));
Thomas Renninger8209e052011-01-21 15:11:19 +01001119 has_invariant_tsc = edx & (1 << 8);
Len Brown103a8fe2010-10-22 23:53:03 -04001120
1121 if (!has_invariant_tsc) {
1122 fprintf(stderr, "No invariant TSC\n");
1123 exit(1);
1124 }
1125
1126 /*
1127 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
1128 * this check is valid for both Intel and AMD
1129 */
1130
1131 asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x6));
Thomas Renninger8209e052011-01-21 15:11:19 +01001132 has_aperf = ecx & (1 << 0);
Len Brown103a8fe2010-10-22 23:53:03 -04001133 if (!has_aperf) {
1134 fprintf(stderr, "No APERF MSR\n");
1135 exit(1);
1136 }
1137
1138 do_nehalem_platform_info = genuine_intel && has_invariant_tsc;
1139 do_nhm_cstates = genuine_intel; /* all Intel w/ non-stop TSC have NHM counters */
1140 do_snb_cstates = is_snb(family, model);
1141 bclk = discover_bclk(family, model);
1142
1143 do_nehalem_turbo_ratio_limit = has_nehalem_turbo_ratio_limit(family, model);
1144}
1145
1146
1147void usage()
1148{
1149 fprintf(stderr, "%s: [-v] [-M MSR#] [-i interval_sec | command ...]\n",
1150 progname);
1151 exit(1);
1152}
1153
1154
1155/*
1156 * in /dev/cpu/ return success for names that are numbers
1157 * ie. filter out ".", "..", "microcode".
1158 */
1159int dir_filter(const struct dirent *dirp)
1160{
1161 if (isdigit(dirp->d_name[0]))
1162 return 1;
1163 else
1164 return 0;
1165}
1166
1167int open_dev_cpu_msr(int dummy1)
1168{
1169 return 0;
1170}
1171
Len Brownc98d5d92012-06-04 00:56:40 -04001172void topology_probe()
1173{
1174 int i;
1175 int max_core_id = 0;
1176 int max_package_id = 0;
1177 int max_siblings = 0;
1178 struct cpu_topology {
1179 int core_id;
1180 int physical_package_id;
1181 } *cpus;
1182
1183 /* Initialize num_cpus, max_cpu_num */
1184 topo.num_cpus = 0;
1185 topo.max_cpu_num = 0;
1186 for_all_proc_cpus(count_cpus);
1187 if (!summary_only && topo.num_cpus > 1)
1188 show_cpu = 1;
1189
1190 if (verbose > 1)
1191 fprintf(stderr, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
1192
1193 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
1194 if (cpus == NULL) {
1195 perror("calloc cpus");
1196 exit(1);
1197 }
1198
1199 /*
1200 * Allocate and initialize cpu_present_set
1201 */
1202 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
1203 if (cpu_present_set == NULL) {
1204 perror("CPU_ALLOC");
1205 exit(3);
1206 }
1207 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
1208 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
1209 for_all_proc_cpus(mark_cpu_present);
1210
1211 /*
1212 * Allocate and initialize cpu_affinity_set
1213 */
1214 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
1215 if (cpu_affinity_set == NULL) {
1216 perror("CPU_ALLOC");
1217 exit(3);
1218 }
1219 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
1220 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
1221
1222
1223 /*
1224 * For online cpus
1225 * find max_core_id, max_package_id
1226 */
1227 for (i = 0; i <= topo.max_cpu_num; ++i) {
1228 int siblings;
1229
1230 if (cpu_is_not_present(i)) {
1231 if (verbose > 1)
1232 fprintf(stderr, "cpu%d NOT PRESENT\n", i);
1233 continue;
1234 }
1235 cpus[i].core_id = get_core_id(i);
1236 if (cpus[i].core_id > max_core_id)
1237 max_core_id = cpus[i].core_id;
1238
1239 cpus[i].physical_package_id = get_physical_package_id(i);
1240 if (cpus[i].physical_package_id > max_package_id)
1241 max_package_id = cpus[i].physical_package_id;
1242
1243 siblings = get_num_ht_siblings(i);
1244 if (siblings > max_siblings)
1245 max_siblings = siblings;
1246 if (verbose > 1)
1247 fprintf(stderr, "cpu %d pkg %d core %d\n",
1248 i, cpus[i].physical_package_id, cpus[i].core_id);
1249 }
1250 topo.num_cores_per_pkg = max_core_id + 1;
1251 if (verbose > 1)
1252 fprintf(stderr, "max_core_id %d, sizing for %d cores per package\n",
1253 max_core_id, topo.num_cores_per_pkg);
1254 if (!summary_only && topo.num_cores_per_pkg > 1)
1255 show_core = 1;
1256
1257 topo.num_packages = max_package_id + 1;
1258 if (verbose > 1)
1259 fprintf(stderr, "max_package_id %d, sizing for %d packages\n",
1260 max_package_id, topo.num_packages);
1261 if (!summary_only && topo.num_packages > 1)
1262 show_pkg = 1;
1263
1264 topo.num_threads_per_core = max_siblings;
1265 if (verbose > 1)
1266 fprintf(stderr, "max_siblings %d\n", max_siblings);
1267
1268 free(cpus);
1269}
1270
1271void
1272allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
1273{
1274 int i;
1275
1276 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
1277 topo.num_packages, sizeof(struct thread_data));
1278 if (*t == NULL)
1279 goto error;
1280
1281 for (i = 0; i < topo.num_threads_per_core *
1282 topo.num_cores_per_pkg * topo.num_packages; i++)
1283 (*t)[i].cpu_id = -1;
1284
1285 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
1286 sizeof(struct core_data));
1287 if (*c == NULL)
1288 goto error;
1289
1290 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
1291 (*c)[i].core_id = -1;
1292
1293 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
1294 if (*p == NULL)
1295 goto error;
1296
1297 for (i = 0; i < topo.num_packages; i++)
1298 (*p)[i].package_id = i;
1299
1300 return;
1301error:
1302 perror("calloc counters");
1303 exit(1);
1304}
1305/*
1306 * init_counter()
1307 *
1308 * set cpu_id, core_num, pkg_num
1309 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
1310 *
1311 * increment topo.num_cores when 1st core in pkg seen
1312 */
1313void init_counter(struct thread_data *thread_base, struct core_data *core_base,
1314 struct pkg_data *pkg_base, int thread_num, int core_num,
1315 int pkg_num, int cpu_id)
1316{
1317 struct thread_data *t;
1318 struct core_data *c;
1319 struct pkg_data *p;
1320
1321 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
1322 c = GET_CORE(core_base, core_num, pkg_num);
1323 p = GET_PKG(pkg_base, pkg_num);
1324
1325 t->cpu_id = cpu_id;
1326 if (thread_num == 0) {
1327 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
1328 if (cpu_is_first_core_in_package(cpu_id))
1329 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
1330 }
1331
1332 c->core_id = core_num;
1333 p->package_id = pkg_num;
1334}
1335
1336
1337int initialize_counters(int cpu_id)
1338{
1339 int my_thread_id, my_core_id, my_package_id;
1340
1341 my_package_id = get_physical_package_id(cpu_id);
1342 my_core_id = get_core_id(cpu_id);
1343
1344 if (cpu_is_first_sibling_in_core(cpu_id)) {
1345 my_thread_id = 0;
1346 topo.num_cores++;
1347 } else {
1348 my_thread_id = 1;
1349 }
1350
1351 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
1352 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
1353 return 0;
1354}
1355
1356void allocate_output_buffer()
1357{
1358 output_buffer = calloc(1, (1 + topo.num_cpus) * 128);
1359 outp = output_buffer;
1360 if (outp == NULL) {
1361 perror("calloc");
1362 exit(-1);
1363 }
1364}
1365
1366void setup_all_buffers(void)
1367{
1368 topology_probe();
1369 allocate_counters(&thread_even, &core_even, &package_even);
1370 allocate_counters(&thread_odd, &core_odd, &package_odd);
1371 allocate_output_buffer();
1372 for_all_proc_cpus(initialize_counters);
1373}
Len Brown103a8fe2010-10-22 23:53:03 -04001374void turbostat_init()
1375{
1376 check_cpuid();
1377
1378 check_dev_msr();
1379 check_super_user();
1380
Len Brownc98d5d92012-06-04 00:56:40 -04001381 setup_all_buffers();
Len Brown103a8fe2010-10-22 23:53:03 -04001382
1383 if (verbose)
Len Brownc98d5d92012-06-04 00:56:40 -04001384 print_verbose_header();
Len Brown103a8fe2010-10-22 23:53:03 -04001385}
1386
1387int fork_it(char **argv)
1388{
Len Brown103a8fe2010-10-22 23:53:03 -04001389 pid_t child_pid;
Len Brownd15cf7c2012-06-03 23:24:00 -04001390
Len Brownc98d5d92012-06-04 00:56:40 -04001391 for_all_cpus(get_counters, EVEN_COUNTERS);
1392 /* clear affinity side-effect of get_counters() */
1393 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04001394 gettimeofday(&tv_even, (struct timezone *)NULL);
1395
1396 child_pid = fork();
1397 if (!child_pid) {
1398 /* child */
1399 execvp(argv[0], argv);
1400 } else {
1401 int status;
1402
1403 /* parent */
1404 if (child_pid == -1) {
1405 perror("fork");
1406 exit(1);
1407 }
1408
1409 signal(SIGINT, SIG_IGN);
1410 signal(SIGQUIT, SIG_IGN);
1411 if (waitpid(child_pid, &status, 0) == -1) {
1412 perror("wait");
1413 exit(1);
1414 }
1415 }
Len Brownc98d5d92012-06-04 00:56:40 -04001416 /*
1417 * n.b. fork_it() does not check for errors from for_all_cpus()
1418 * because re-starting is problematic when forking
1419 */
1420 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04001421 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04001422 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -04001423 for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS);
1424 compute_average(EVEN_COUNTERS);
1425 format_all_counters(EVEN_COUNTERS);
1426 flush_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04001427
Justin P. Mattock6eab04a2011-04-08 19:49:08 -07001428 fprintf(stderr, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
Len Brown103a8fe2010-10-22 23:53:03 -04001429
1430 return 0;
1431}
1432
1433void cmdline(int argc, char **argv)
1434{
1435 int opt;
1436
1437 progname = argv[0];
1438
Len Brownc98d5d92012-06-04 00:56:40 -04001439 while ((opt = getopt(argc, argv, "+cpsvi:M:")) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04001440 switch (opt) {
Len Brownc98d5d92012-06-04 00:56:40 -04001441 case 'c':
1442 show_core_only++;
1443 break;
1444 case 'p':
1445 show_pkg_only++;
1446 break;
Len Browne23da032012-02-06 18:37:16 -05001447 case 's':
1448 summary_only++;
1449 break;
Len Brown103a8fe2010-10-22 23:53:03 -04001450 case 'v':
1451 verbose++;
1452 break;
1453 case 'i':
1454 interval_sec = atoi(optarg);
1455 break;
1456 case 'M':
1457 sscanf(optarg, "%x", &extra_msr_offset);
1458 if (verbose > 1)
1459 fprintf(stderr, "MSR 0x%X\n", extra_msr_offset);
1460 break;
1461 default:
1462 usage();
1463 }
1464 }
1465}
1466
1467int main(int argc, char **argv)
1468{
1469 cmdline(argc, argv);
1470
1471 if (verbose > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04001472 fprintf(stderr, "turbostat v2.0 May 16, 2012"
Len Brown103a8fe2010-10-22 23:53:03 -04001473 " - Len Brown <lenb@kernel.org>\n");
Len Brown103a8fe2010-10-22 23:53:03 -04001474
1475 turbostat_init();
1476
1477 /*
1478 * if any params left, it must be a command to fork
1479 */
1480 if (argc - optind)
1481 return fork_it(argv + optind);
1482 else
1483 turbostat_loop();
1484
1485 return 0;
1486}