xref: /openbmc/linux/tools/power/x86/turbostat/turbostat.c (revision 88c3281f7ba449992f7a33bd2452a8c6fa5503cb)
1103a8feaSLen Brown /*
2103a8feaSLen Brown  * turbostat -- show CPU frequency and C-state residency
3103a8feaSLen Brown  * on modern Intel turbo-capable processors.
4103a8feaSLen Brown  *
5e23da037SLen Brown  * Copyright (c) 2012 Intel Corporation.
6103a8feaSLen Brown  * Len Brown <len.brown@intel.com>
7103a8feaSLen Brown  *
8103a8feaSLen Brown  * This program is free software; you can redistribute it and/or modify it
9103a8feaSLen Brown  * under the terms and conditions of the GNU General Public License,
10103a8feaSLen Brown  * version 2, as published by the Free Software Foundation.
11103a8feaSLen Brown  *
12103a8feaSLen Brown  * This program is distributed in the hope it will be useful, but WITHOUT
13103a8feaSLen Brown  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14103a8feaSLen Brown  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15103a8feaSLen Brown  * more details.
16103a8feaSLen Brown  *
17103a8feaSLen Brown  * You should have received a copy of the GNU General Public License along with
18103a8feaSLen Brown  * this program; if not, write to the Free Software Foundation, Inc.,
19103a8feaSLen Brown  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20103a8feaSLen Brown  */
21103a8feaSLen Brown 
22*88c3281fSLen Brown #define _GNU_SOURCE
23103a8feaSLen Brown #include <stdio.h>
24103a8feaSLen Brown #include <unistd.h>
25103a8feaSLen Brown #include <sys/types.h>
26103a8feaSLen Brown #include <sys/wait.h>
27103a8feaSLen Brown #include <sys/stat.h>
28103a8feaSLen Brown #include <sys/resource.h>
29103a8feaSLen Brown #include <fcntl.h>
30103a8feaSLen Brown #include <signal.h>
31103a8feaSLen Brown #include <sys/time.h>
32103a8feaSLen Brown #include <stdlib.h>
33103a8feaSLen Brown #include <dirent.h>
34103a8feaSLen Brown #include <string.h>
35103a8feaSLen Brown #include <ctype.h>
36*88c3281fSLen Brown #include <sched.h>
37103a8feaSLen Brown 
38103a8feaSLen Brown #define MSR_TSC	0x10
39103a8feaSLen Brown #define MSR_NEHALEM_PLATFORM_INFO	0xCE
40103a8feaSLen Brown #define MSR_NEHALEM_TURBO_RATIO_LIMIT	0x1AD
41103a8feaSLen Brown #define MSR_APERF	0xE8
42103a8feaSLen Brown #define MSR_MPERF	0xE7
43103a8feaSLen Brown #define MSR_PKG_C2_RESIDENCY	0x60D	/* SNB only */
44103a8feaSLen Brown #define MSR_PKG_C3_RESIDENCY	0x3F8
45103a8feaSLen Brown #define MSR_PKG_C6_RESIDENCY	0x3F9
46103a8feaSLen Brown #define MSR_PKG_C7_RESIDENCY	0x3FA	/* SNB only */
47103a8feaSLen Brown #define MSR_CORE_C3_RESIDENCY	0x3FC
48103a8feaSLen Brown #define MSR_CORE_C6_RESIDENCY	0x3FD
49103a8feaSLen Brown #define MSR_CORE_C7_RESIDENCY	0x3FE	/* SNB only */
50103a8feaSLen Brown 
51103a8feaSLen Brown char *proc_stat = "/proc/stat";
52103a8feaSLen Brown unsigned int interval_sec = 5;	/* set with -i interval_sec */
53103a8feaSLen Brown unsigned int verbose;		/* set with -v */
54e23da037SLen Brown unsigned int summary_only;	/* set with -s */
55103a8feaSLen Brown unsigned int skip_c0;
56103a8feaSLen Brown unsigned int skip_c1;
57103a8feaSLen Brown unsigned int do_nhm_cstates;
58103a8feaSLen Brown unsigned int do_snb_cstates;
59103a8feaSLen Brown unsigned int has_aperf;
60103a8feaSLen Brown unsigned int units = 1000000000;	/* Ghz etc */
61103a8feaSLen Brown unsigned int genuine_intel;
62103a8feaSLen Brown unsigned int has_invariant_tsc;
63103a8feaSLen Brown unsigned int do_nehalem_platform_info;
64103a8feaSLen Brown unsigned int do_nehalem_turbo_ratio_limit;
65103a8feaSLen Brown unsigned int extra_msr_offset;
66103a8feaSLen Brown double bclk;
67103a8feaSLen Brown unsigned int show_pkg;
68103a8feaSLen Brown unsigned int show_core;
69103a8feaSLen Brown unsigned int show_cpu;
70103a8feaSLen Brown 
71103a8feaSLen Brown int aperf_mperf_unstable;
72103a8feaSLen Brown int backwards_count;
73103a8feaSLen Brown char *progname;
74103a8feaSLen Brown int need_reinitialize;
75103a8feaSLen Brown 
76103a8feaSLen Brown int num_cpus;
77*88c3281fSLen Brown cpu_set_t *cpu_mask;
78*88c3281fSLen Brown size_t cpu_mask_size;
79103a8feaSLen Brown 
80a829eb4dSLen Brown struct counters {
81103a8feaSLen Brown 	unsigned long long tsc;		/* per thread */
82103a8feaSLen Brown 	unsigned long long aperf;	/* per thread */
83103a8feaSLen Brown 	unsigned long long mperf;	/* per thread */
84103a8feaSLen Brown 	unsigned long long c1;	/* per thread (calculated) */
85103a8feaSLen Brown 	unsigned long long c3;	/* per core */
86103a8feaSLen Brown 	unsigned long long c6;	/* per core */
87103a8feaSLen Brown 	unsigned long long c7;	/* per core */
88103a8feaSLen Brown 	unsigned long long pc2;	/* per package */
89103a8feaSLen Brown 	unsigned long long pc3;	/* per package */
90103a8feaSLen Brown 	unsigned long long pc6;	/* per package */
91103a8feaSLen Brown 	unsigned long long pc7;	/* per package */
92103a8feaSLen Brown 	unsigned long long extra_msr;	/* per thread */
93103a8feaSLen Brown 	int pkg;
94103a8feaSLen Brown 	int core;
95103a8feaSLen Brown 	int cpu;
96a829eb4dSLen Brown 	struct counters *next;
97a829eb4dSLen Brown };
98103a8feaSLen Brown 
99a829eb4dSLen Brown struct counters *cnt_even;
100a829eb4dSLen Brown struct counters *cnt_odd;
101a829eb4dSLen Brown struct counters *cnt_delta;
102a829eb4dSLen Brown struct counters *cnt_average;
103103a8feaSLen Brown struct timeval tv_even;
104103a8feaSLen Brown struct timeval tv_odd;
105103a8feaSLen Brown struct timeval tv_delta;
106103a8feaSLen Brown 
107*88c3281fSLen Brown /*
108*88c3281fSLen Brown  * cpu_mask_init(ncpus)
109*88c3281fSLen Brown  *
110*88c3281fSLen Brown  * allocate and clear cpu_mask
111*88c3281fSLen Brown  * set cpu_mask_size
112*88c3281fSLen Brown  */
113*88c3281fSLen Brown void cpu_mask_init(int ncpus)
114*88c3281fSLen Brown {
115*88c3281fSLen Brown 	cpu_mask = CPU_ALLOC(ncpus);
116*88c3281fSLen Brown 	if (cpu_mask == NULL) {
117*88c3281fSLen Brown 		perror("CPU_ALLOC");
118*88c3281fSLen Brown 		exit(3);
119*88c3281fSLen Brown 	}
120*88c3281fSLen Brown 	cpu_mask_size = CPU_ALLOC_SIZE(ncpus);
121*88c3281fSLen Brown 	CPU_ZERO_S(cpu_mask_size, cpu_mask);
122*88c3281fSLen Brown }
123*88c3281fSLen Brown 
124*88c3281fSLen Brown void cpu_mask_uninit()
125*88c3281fSLen Brown {
126*88c3281fSLen Brown 	CPU_FREE(cpu_mask);
127*88c3281fSLen Brown 	cpu_mask = NULL;
128*88c3281fSLen Brown 	cpu_mask_size = 0;
129*88c3281fSLen Brown }
130*88c3281fSLen Brown 
131*88c3281fSLen Brown int cpu_migrate(int cpu)
132*88c3281fSLen Brown {
133*88c3281fSLen Brown 	CPU_ZERO_S(cpu_mask_size, cpu_mask);
134*88c3281fSLen Brown 	CPU_SET_S(cpu, cpu_mask_size, cpu_mask);
135*88c3281fSLen Brown 	if (sched_setaffinity(0, cpu_mask_size, cpu_mask) == -1)
136*88c3281fSLen Brown 		return -1;
137*88c3281fSLen Brown 	else
138*88c3281fSLen Brown 		return 0;
139*88c3281fSLen Brown }
140*88c3281fSLen Brown 
141103a8feaSLen Brown unsigned long long get_msr(int cpu, off_t offset)
142103a8feaSLen Brown {
143103a8feaSLen Brown 	ssize_t retval;
144103a8feaSLen Brown 	unsigned long long msr;
145103a8feaSLen Brown 	char pathname[32];
146103a8feaSLen Brown 	int fd;
147103a8feaSLen Brown 
148103a8feaSLen Brown 	sprintf(pathname, "/dev/cpu/%d/msr", cpu);
149103a8feaSLen Brown 	fd = open(pathname, O_RDONLY);
150103a8feaSLen Brown 	if (fd < 0) {
151103a8feaSLen Brown 		perror(pathname);
152103a8feaSLen Brown 		need_reinitialize = 1;
153103a8feaSLen Brown 		return 0;
154103a8feaSLen Brown 	}
155103a8feaSLen Brown 
156103a8feaSLen Brown 	retval = pread(fd, &msr, sizeof msr, offset);
157103a8feaSLen Brown 	if (retval != sizeof msr) {
158103a8feaSLen Brown 		fprintf(stderr, "cpu%d pread(..., 0x%zx) = %jd\n",
159103a8feaSLen Brown 			cpu, offset, retval);
160103a8feaSLen Brown 		exit(-2);
161103a8feaSLen Brown 	}
162103a8feaSLen Brown 
163103a8feaSLen Brown 	close(fd);
164103a8feaSLen Brown 	return msr;
165103a8feaSLen Brown }
166103a8feaSLen Brown 
167a829eb4dSLen Brown void print_header(void)
168103a8feaSLen Brown {
169103a8feaSLen Brown 	if (show_pkg)
170d30c4b7aSLen Brown 		fprintf(stderr, "pk");
171e23da037SLen Brown 	if (show_pkg)
172e23da037SLen Brown 		fprintf(stderr, " ");
173103a8feaSLen Brown 	if (show_core)
174e23da037SLen Brown 		fprintf(stderr, "cor");
175103a8feaSLen Brown 	if (show_cpu)
176103a8feaSLen Brown 		fprintf(stderr, " CPU");
177e23da037SLen Brown 	if (show_pkg || show_core || show_cpu)
178e23da037SLen Brown 		fprintf(stderr, " ");
179103a8feaSLen Brown 	if (do_nhm_cstates)
180103a8feaSLen Brown 		fprintf(stderr, "   %%c0");
181103a8feaSLen Brown 	if (has_aperf)
182103a8feaSLen Brown 		fprintf(stderr, "  GHz");
183103a8feaSLen Brown 	fprintf(stderr, "  TSC");
184103a8feaSLen Brown 	if (do_nhm_cstates)
185103a8feaSLen Brown 		fprintf(stderr, "    %%c1");
186103a8feaSLen Brown 	if (do_nhm_cstates)
187103a8feaSLen Brown 		fprintf(stderr, "    %%c3");
188103a8feaSLen Brown 	if (do_nhm_cstates)
189103a8feaSLen Brown 		fprintf(stderr, "    %%c6");
190103a8feaSLen Brown 	if (do_snb_cstates)
191103a8feaSLen Brown 		fprintf(stderr, "    %%c7");
192103a8feaSLen Brown 	if (do_snb_cstates)
193103a8feaSLen Brown 		fprintf(stderr, "   %%pc2");
194103a8feaSLen Brown 	if (do_nhm_cstates)
195103a8feaSLen Brown 		fprintf(stderr, "   %%pc3");
196103a8feaSLen Brown 	if (do_nhm_cstates)
197103a8feaSLen Brown 		fprintf(stderr, "   %%pc6");
198103a8feaSLen Brown 	if (do_snb_cstates)
199103a8feaSLen Brown 		fprintf(stderr, "   %%pc7");
200103a8feaSLen Brown 	if (extra_msr_offset)
201103a8feaSLen Brown 		fprintf(stderr, "        MSR 0x%x ", extra_msr_offset);
202103a8feaSLen Brown 
203103a8feaSLen Brown 	putc('\n', stderr);
204103a8feaSLen Brown }
205103a8feaSLen Brown 
206a829eb4dSLen Brown void dump_cnt(struct counters *cnt)
207103a8feaSLen Brown {
208aeae1e92SLen Brown 	if (!cnt)
209aeae1e92SLen Brown 		return;
210aeae1e92SLen Brown 	if (cnt->pkg) fprintf(stderr, "package: %d ", cnt->pkg);
211aeae1e92SLen Brown 	if (cnt->core) fprintf(stderr, "core:: %d ", cnt->core);
212aeae1e92SLen Brown 	if (cnt->cpu) fprintf(stderr, "CPU: %d ", cnt->cpu);
213aeae1e92SLen Brown 	if (cnt->tsc) fprintf(stderr, "TSC: %016llX\n", cnt->tsc);
214aeae1e92SLen Brown 	if (cnt->c3) fprintf(stderr, "c3: %016llX\n", cnt->c3);
215aeae1e92SLen Brown 	if (cnt->c6) fprintf(stderr, "c6: %016llX\n", cnt->c6);
216aeae1e92SLen Brown 	if (cnt->c7) fprintf(stderr, "c7: %016llX\n", cnt->c7);
217aeae1e92SLen Brown 	if (cnt->aperf) fprintf(stderr, "aperf: %016llX\n", cnt->aperf);
218aeae1e92SLen Brown 	if (cnt->pc2) fprintf(stderr, "pc2: %016llX\n", cnt->pc2);
219aeae1e92SLen Brown 	if (cnt->pc3) fprintf(stderr, "pc3: %016llX\n", cnt->pc3);
220aeae1e92SLen Brown 	if (cnt->pc6) fprintf(stderr, "pc6: %016llX\n", cnt->pc6);
221aeae1e92SLen Brown 	if (cnt->pc7) fprintf(stderr, "pc7: %016llX\n", cnt->pc7);
222aeae1e92SLen Brown 	if (cnt->extra_msr) fprintf(stderr, "msr0x%x: %016llX\n", extra_msr_offset, cnt->extra_msr);
223103a8feaSLen Brown }
224103a8feaSLen Brown 
225a829eb4dSLen Brown void dump_list(struct counters *cnt)
226103a8feaSLen Brown {
227a829eb4dSLen Brown 	printf("dump_list 0x%p\n", cnt);
228103a8feaSLen Brown 
229a829eb4dSLen Brown 	for (; cnt; cnt = cnt->next)
230a829eb4dSLen Brown 		dump_cnt(cnt);
231103a8feaSLen Brown }
232103a8feaSLen Brown 
233e23da037SLen Brown /*
234e23da037SLen Brown  * column formatting convention & formats
235e23da037SLen Brown  * package: "pk" 2 columns %2d
236e23da037SLen Brown  * core: "cor" 3 columns %3d
237e23da037SLen Brown  * CPU: "CPU" 3 columns %3d
238e23da037SLen Brown  * GHz: "GHz" 3 columns %3.2
239e23da037SLen Brown  * TSC: "TSC" 3 columns %3.2
240e23da037SLen Brown  * percentage " %pc3" %6.2
241e23da037SLen Brown  */
242a829eb4dSLen Brown void print_cnt(struct counters *p)
243103a8feaSLen Brown {
244103a8feaSLen Brown 	double interval_float;
245103a8feaSLen Brown 
246103a8feaSLen Brown 	interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
247103a8feaSLen Brown 
248103a8feaSLen Brown 	/* topology columns, print blanks on 1st (average) line */
249a829eb4dSLen Brown 	if (p == cnt_average) {
250103a8feaSLen Brown 		if (show_pkg)
251103a8feaSLen Brown 			fprintf(stderr, "  ");
252e23da037SLen Brown 		if (show_pkg && show_core)
253e23da037SLen Brown 			fprintf(stderr, " ");
254103a8feaSLen Brown 		if (show_core)
255103a8feaSLen Brown 			fprintf(stderr, "   ");
256103a8feaSLen Brown 		if (show_cpu)
257e23da037SLen Brown 			fprintf(stderr, " " "   ");
258103a8feaSLen Brown 	} else {
259103a8feaSLen Brown 		if (show_pkg)
260e23da037SLen Brown 			fprintf(stderr, "%2d", p->pkg);
261e23da037SLen Brown 		if (show_pkg && show_core)
262e23da037SLen Brown 			fprintf(stderr, " ");
263103a8feaSLen Brown 		if (show_core)
264e23da037SLen Brown 			fprintf(stderr, "%3d", p->core);
265103a8feaSLen Brown 		if (show_cpu)
266e23da037SLen Brown 			fprintf(stderr, " %3d", p->cpu);
267103a8feaSLen Brown 	}
268103a8feaSLen Brown 
269103a8feaSLen Brown 	/* %c0 */
270103a8feaSLen Brown 	if (do_nhm_cstates) {
271e23da037SLen Brown 		if (show_pkg || show_core || show_cpu)
272e23da037SLen Brown 			fprintf(stderr, " ");
273103a8feaSLen Brown 		if (!skip_c0)
274e23da037SLen Brown 			fprintf(stderr, "%6.2f", 100.0 * p->mperf/p->tsc);
275103a8feaSLen Brown 		else
276103a8feaSLen Brown 			fprintf(stderr, "  ****");
277103a8feaSLen Brown 	}
278103a8feaSLen Brown 
279103a8feaSLen Brown 	/* GHz */
280103a8feaSLen Brown 	if (has_aperf) {
281103a8feaSLen Brown 		if (!aperf_mperf_unstable) {
282e23da037SLen Brown 			fprintf(stderr, " %3.2f",
283103a8feaSLen Brown 				1.0 * p->tsc / units * p->aperf /
284103a8feaSLen Brown 				p->mperf / interval_float);
285103a8feaSLen Brown 		} else {
286103a8feaSLen Brown 			if (p->aperf > p->tsc || p->mperf > p->tsc) {
287e23da037SLen Brown 				fprintf(stderr, " ***");
288103a8feaSLen Brown 			} else {
289e23da037SLen Brown 				fprintf(stderr, "%3.1f*",
290103a8feaSLen Brown 					1.0 * p->tsc /
291103a8feaSLen Brown 					units * p->aperf /
292103a8feaSLen Brown 					p->mperf / interval_float);
293103a8feaSLen Brown 			}
294103a8feaSLen Brown 		}
295103a8feaSLen Brown 	}
296103a8feaSLen Brown 
297103a8feaSLen Brown 	/* TSC */
298103a8feaSLen Brown 	fprintf(stderr, "%5.2f", 1.0 * p->tsc/units/interval_float);
299103a8feaSLen Brown 
300103a8feaSLen Brown 	if (do_nhm_cstates) {
301103a8feaSLen Brown 		if (!skip_c1)
302e23da037SLen Brown 			fprintf(stderr, " %6.2f", 100.0 * p->c1/p->tsc);
303103a8feaSLen Brown 		else
304103a8feaSLen Brown 			fprintf(stderr, "  ****");
305103a8feaSLen Brown 	}
306103a8feaSLen Brown 	if (do_nhm_cstates)
307d30c4b7aSLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->c3/p->tsc);
308103a8feaSLen Brown 	if (do_nhm_cstates)
309d30c4b7aSLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->c6/p->tsc);
310103a8feaSLen Brown 	if (do_snb_cstates)
311d30c4b7aSLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->c7/p->tsc);
312103a8feaSLen Brown 	if (do_snb_cstates)
313e23da037SLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->pc2/p->tsc);
314103a8feaSLen Brown 	if (do_nhm_cstates)
315e23da037SLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->pc3/p->tsc);
316103a8feaSLen Brown 	if (do_nhm_cstates)
317e23da037SLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->pc6/p->tsc);
318103a8feaSLen Brown 	if (do_snb_cstates)
319e23da037SLen Brown 		fprintf(stderr, " %6.2f", 100.0 * p->pc7/p->tsc);
320103a8feaSLen Brown 	if (extra_msr_offset)
321103a8feaSLen Brown 		fprintf(stderr, "  0x%016llx", p->extra_msr);
322103a8feaSLen Brown 	putc('\n', stderr);
323103a8feaSLen Brown }
324103a8feaSLen Brown 
325a829eb4dSLen Brown void print_counters(struct counters *counters)
326103a8feaSLen Brown {
327a829eb4dSLen Brown 	struct counters *cnt;
328e23da037SLen Brown 	static int printed;
329103a8feaSLen Brown 
330e23da037SLen Brown 
331e23da037SLen Brown 	if (!printed || !summary_only)
332103a8feaSLen Brown 		print_header();
333103a8feaSLen Brown 
334103a8feaSLen Brown 	if (num_cpus > 1)
335a829eb4dSLen Brown 		print_cnt(cnt_average);
336103a8feaSLen Brown 
337e23da037SLen Brown 	printed = 1;
338e23da037SLen Brown 
339e23da037SLen Brown 	if (summary_only)
340e23da037SLen Brown 		return;
341e23da037SLen Brown 
342a829eb4dSLen Brown 	for (cnt = counters; cnt != NULL; cnt = cnt->next)
343a829eb4dSLen Brown 		print_cnt(cnt);
344103a8feaSLen Brown 
345103a8feaSLen Brown }
346103a8feaSLen Brown 
347103a8feaSLen Brown #define SUBTRACT_COUNTER(after, before, delta) (delta = (after - before), (before > after))
348103a8feaSLen Brown 
349a829eb4dSLen Brown int compute_delta(struct counters *after,
350a829eb4dSLen Brown 	struct counters *before, struct counters *delta)
351103a8feaSLen Brown {
352103a8feaSLen Brown 	int errors = 0;
353103a8feaSLen Brown 	int perf_err = 0;
354103a8feaSLen Brown 
355103a8feaSLen Brown 	skip_c0 = skip_c1 = 0;
356103a8feaSLen Brown 
357103a8feaSLen Brown 	for ( ; after && before && delta;
358103a8feaSLen Brown 		after = after->next, before = before->next, delta = delta->next) {
359103a8feaSLen Brown 		if (before->cpu != after->cpu) {
360103a8feaSLen Brown 			printf("cpu configuration changed: %d != %d\n",
361103a8feaSLen Brown 				before->cpu, after->cpu);
362103a8feaSLen Brown 			return -1;
363103a8feaSLen Brown 		}
364103a8feaSLen Brown 
365103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->tsc, before->tsc, delta->tsc)) {
366103a8feaSLen Brown 			fprintf(stderr, "cpu%d TSC went backwards %llX to %llX\n",
367103a8feaSLen Brown 				before->cpu, before->tsc, after->tsc);
368103a8feaSLen Brown 			errors++;
369103a8feaSLen Brown 		}
370103a8feaSLen Brown 		/* check for TSC < 1 Mcycles over interval */
371103a8feaSLen Brown 		if (delta->tsc < (1000 * 1000)) {
372103a8feaSLen Brown 			fprintf(stderr, "Insanely slow TSC rate,"
373103a8feaSLen Brown 				" TSC stops in idle?\n");
374103a8feaSLen Brown 			fprintf(stderr, "You can disable all c-states"
375103a8feaSLen Brown 				" by booting with \"idle=poll\"\n");
376103a8feaSLen Brown 			fprintf(stderr, "or just the deep ones with"
377103a8feaSLen Brown 				" \"processor.max_cstate=1\"\n");
378103a8feaSLen Brown 			exit(-3);
379103a8feaSLen Brown 		}
380103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c3, before->c3, delta->c3)) {
381103a8feaSLen Brown 			fprintf(stderr, "cpu%d c3 counter went backwards %llX to %llX\n",
382103a8feaSLen Brown 				before->cpu, before->c3, after->c3);
383103a8feaSLen Brown 			errors++;
384103a8feaSLen Brown 		}
385103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c6, before->c6, delta->c6)) {
386103a8feaSLen Brown 			fprintf(stderr, "cpu%d c6 counter went backwards %llX to %llX\n",
387103a8feaSLen Brown 				before->cpu, before->c6, after->c6);
388103a8feaSLen Brown 			errors++;
389103a8feaSLen Brown 		}
390103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c7, before->c7, delta->c7)) {
391103a8feaSLen Brown 			fprintf(stderr, "cpu%d c7 counter went backwards %llX to %llX\n",
392103a8feaSLen Brown 				before->cpu, before->c7, after->c7);
393103a8feaSLen Brown 			errors++;
394103a8feaSLen Brown 		}
395103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc2, before->pc2, delta->pc2)) {
396103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc2 counter went backwards %llX to %llX\n",
397103a8feaSLen Brown 				before->cpu, before->pc2, after->pc2);
398103a8feaSLen Brown 			errors++;
399103a8feaSLen Brown 		}
400103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc3, before->pc3, delta->pc3)) {
401103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc3 counter went backwards %llX to %llX\n",
402103a8feaSLen Brown 				before->cpu, before->pc3, after->pc3);
403103a8feaSLen Brown 			errors++;
404103a8feaSLen Brown 		}
405103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc6, before->pc6, delta->pc6)) {
406103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc6 counter went backwards %llX to %llX\n",
407103a8feaSLen Brown 				before->cpu, before->pc6, after->pc6);
408103a8feaSLen Brown 			errors++;
409103a8feaSLen Brown 		}
410103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc7, before->pc7, delta->pc7)) {
411103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc7 counter went backwards %llX to %llX\n",
412103a8feaSLen Brown 				before->cpu, before->pc7, after->pc7);
413103a8feaSLen Brown 			errors++;
414103a8feaSLen Brown 		}
415103a8feaSLen Brown 
416103a8feaSLen Brown 		perf_err = SUBTRACT_COUNTER(after->aperf, before->aperf, delta->aperf);
417103a8feaSLen Brown 		if (perf_err) {
418103a8feaSLen Brown 			fprintf(stderr, "cpu%d aperf counter went backwards %llX to %llX\n",
419103a8feaSLen Brown 				before->cpu, before->aperf, after->aperf);
420103a8feaSLen Brown 		}
421103a8feaSLen Brown 		perf_err |= SUBTRACT_COUNTER(after->mperf, before->mperf, delta->mperf);
422103a8feaSLen Brown 		if (perf_err) {
423103a8feaSLen Brown 			fprintf(stderr, "cpu%d mperf counter went backwards %llX to %llX\n",
424103a8feaSLen Brown 				before->cpu, before->mperf, after->mperf);
425103a8feaSLen Brown 		}
426103a8feaSLen Brown 		if (perf_err) {
427103a8feaSLen Brown 			if (!aperf_mperf_unstable) {
428103a8feaSLen Brown 				fprintf(stderr, "%s: APERF or MPERF went backwards *\n", progname);
429103a8feaSLen Brown 				fprintf(stderr, "* Frequency results do not cover entire interval *\n");
430103a8feaSLen Brown 				fprintf(stderr, "* fix this by running Linux-2.6.30 or later *\n");
431103a8feaSLen Brown 
432103a8feaSLen Brown 				aperf_mperf_unstable = 1;
433103a8feaSLen Brown 			}
434103a8feaSLen Brown 			/*
435103a8feaSLen Brown 			 * mperf delta is likely a huge "positive" number
436103a8feaSLen Brown 			 * can not use it for calculating c0 time
437103a8feaSLen Brown 			 */
438103a8feaSLen Brown 			skip_c0 = 1;
439103a8feaSLen Brown 			skip_c1 = 1;
440103a8feaSLen Brown 		}
441103a8feaSLen Brown 
442103a8feaSLen Brown 		/*
443103a8feaSLen Brown 		 * As mperf and tsc collection are not atomic,
444103a8feaSLen Brown 		 * it is possible for mperf's non-halted cycles
445103a8feaSLen Brown 		 * to exceed TSC's all cycles: show c1 = 0% in that case.
446103a8feaSLen Brown 		 */
447103a8feaSLen Brown 		if (delta->mperf > delta->tsc)
448103a8feaSLen Brown 			delta->c1 = 0;
449103a8feaSLen Brown 		else /* normal case, derive c1 */
450103a8feaSLen Brown 			delta->c1 = delta->tsc - delta->mperf
451103a8feaSLen Brown 				- delta->c3 - delta->c6 - delta->c7;
452103a8feaSLen Brown 
453103a8feaSLen Brown 		if (delta->mperf == 0)
454103a8feaSLen Brown 			delta->mperf = 1;	/* divide by 0 protection */
455103a8feaSLen Brown 
456103a8feaSLen Brown 		/*
457103a8feaSLen Brown 		 * for "extra msr", just copy the latest w/o subtracting
458103a8feaSLen Brown 		 */
459103a8feaSLen Brown 		delta->extra_msr = after->extra_msr;
460103a8feaSLen Brown 		if (errors) {
461103a8feaSLen Brown 			fprintf(stderr, "ERROR cpu%d before:\n", before->cpu);
462a829eb4dSLen Brown 			dump_cnt(before);
463103a8feaSLen Brown 			fprintf(stderr, "ERROR cpu%d after:\n", before->cpu);
464a829eb4dSLen Brown 			dump_cnt(after);
465103a8feaSLen Brown 			errors = 0;
466103a8feaSLen Brown 		}
467103a8feaSLen Brown 	}
468103a8feaSLen Brown 	return 0;
469103a8feaSLen Brown }
470103a8feaSLen Brown 
471a829eb4dSLen Brown void compute_average(struct counters *delta, struct counters *avg)
472103a8feaSLen Brown {
473a829eb4dSLen Brown 	struct counters *sum;
474103a8feaSLen Brown 
475a829eb4dSLen Brown 	sum = calloc(1, sizeof(struct counters));
476103a8feaSLen Brown 	if (sum == NULL) {
477103a8feaSLen Brown 		perror("calloc sum");
478103a8feaSLen Brown 		exit(1);
479103a8feaSLen Brown 	}
480103a8feaSLen Brown 
481103a8feaSLen Brown 	for (; delta; delta = delta->next) {
482103a8feaSLen Brown 		sum->tsc += delta->tsc;
483103a8feaSLen Brown 		sum->c1 += delta->c1;
484103a8feaSLen Brown 		sum->c3 += delta->c3;
485103a8feaSLen Brown 		sum->c6 += delta->c6;
486103a8feaSLen Brown 		sum->c7 += delta->c7;
487103a8feaSLen Brown 		sum->aperf += delta->aperf;
488103a8feaSLen Brown 		sum->mperf += delta->mperf;
489103a8feaSLen Brown 		sum->pc2 += delta->pc2;
490103a8feaSLen Brown 		sum->pc3 += delta->pc3;
491103a8feaSLen Brown 		sum->pc6 += delta->pc6;
492103a8feaSLen Brown 		sum->pc7 += delta->pc7;
493103a8feaSLen Brown 	}
494103a8feaSLen Brown 	avg->tsc = sum->tsc/num_cpus;
495103a8feaSLen Brown 	avg->c1 = sum->c1/num_cpus;
496103a8feaSLen Brown 	avg->c3 = sum->c3/num_cpus;
497103a8feaSLen Brown 	avg->c6 = sum->c6/num_cpus;
498103a8feaSLen Brown 	avg->c7 = sum->c7/num_cpus;
499103a8feaSLen Brown 	avg->aperf = sum->aperf/num_cpus;
500103a8feaSLen Brown 	avg->mperf = sum->mperf/num_cpus;
501103a8feaSLen Brown 	avg->pc2 = sum->pc2/num_cpus;
502103a8feaSLen Brown 	avg->pc3 = sum->pc3/num_cpus;
503103a8feaSLen Brown 	avg->pc6 = sum->pc6/num_cpus;
504103a8feaSLen Brown 	avg->pc7 = sum->pc7/num_cpus;
505103a8feaSLen Brown 
506103a8feaSLen Brown 	free(sum);
507103a8feaSLen Brown }
508103a8feaSLen Brown 
509a829eb4dSLen Brown void get_counters(struct counters *cnt)
510103a8feaSLen Brown {
511a829eb4dSLen Brown 	for ( ; cnt; cnt = cnt->next) {
512*88c3281fSLen Brown 		if (cpu_migrate(cnt->cpu)) {
513*88c3281fSLen Brown 			need_reinitialize = 1;
514*88c3281fSLen Brown 			return;
515*88c3281fSLen Brown 		}
516*88c3281fSLen Brown 
517a829eb4dSLen Brown 		cnt->tsc = get_msr(cnt->cpu, MSR_TSC);
518103a8feaSLen Brown 		if (do_nhm_cstates)
519a829eb4dSLen Brown 			cnt->c3 = get_msr(cnt->cpu, MSR_CORE_C3_RESIDENCY);
520103a8feaSLen Brown 		if (do_nhm_cstates)
521a829eb4dSLen Brown 			cnt->c6 = get_msr(cnt->cpu, MSR_CORE_C6_RESIDENCY);
522103a8feaSLen Brown 		if (do_snb_cstates)
523a829eb4dSLen Brown 			cnt->c7 = get_msr(cnt->cpu, MSR_CORE_C7_RESIDENCY);
524103a8feaSLen Brown 		if (has_aperf)
525a829eb4dSLen Brown 			cnt->aperf = get_msr(cnt->cpu, MSR_APERF);
526103a8feaSLen Brown 		if (has_aperf)
527a829eb4dSLen Brown 			cnt->mperf = get_msr(cnt->cpu, MSR_MPERF);
528103a8feaSLen Brown 		if (do_snb_cstates)
529a829eb4dSLen Brown 			cnt->pc2 = get_msr(cnt->cpu, MSR_PKG_C2_RESIDENCY);
530103a8feaSLen Brown 		if (do_nhm_cstates)
531a829eb4dSLen Brown 			cnt->pc3 = get_msr(cnt->cpu, MSR_PKG_C3_RESIDENCY);
532103a8feaSLen Brown 		if (do_nhm_cstates)
533a829eb4dSLen Brown 			cnt->pc6 = get_msr(cnt->cpu, MSR_PKG_C6_RESIDENCY);
534103a8feaSLen Brown 		if (do_snb_cstates)
535a829eb4dSLen Brown 			cnt->pc7 = get_msr(cnt->cpu, MSR_PKG_C7_RESIDENCY);
536103a8feaSLen Brown 		if (extra_msr_offset)
537a829eb4dSLen Brown 			cnt->extra_msr = get_msr(cnt->cpu, extra_msr_offset);
538103a8feaSLen Brown 	}
539103a8feaSLen Brown }
540103a8feaSLen Brown 
541a829eb4dSLen Brown void print_nehalem_info(void)
542103a8feaSLen Brown {
543103a8feaSLen Brown 	unsigned long long msr;
544103a8feaSLen Brown 	unsigned int ratio;
545103a8feaSLen Brown 
546103a8feaSLen Brown 	if (!do_nehalem_platform_info)
547103a8feaSLen Brown 		return;
548103a8feaSLen Brown 
549103a8feaSLen Brown 	msr = get_msr(0, MSR_NEHALEM_PLATFORM_INFO);
550103a8feaSLen Brown 
551103a8feaSLen Brown 	ratio = (msr >> 40) & 0xFF;
552103a8feaSLen Brown 	fprintf(stderr, "%d * %.0f = %.0f MHz max efficiency\n",
553103a8feaSLen Brown 		ratio, bclk, ratio * bclk);
554103a8feaSLen Brown 
555103a8feaSLen Brown 	ratio = (msr >> 8) & 0xFF;
556103a8feaSLen Brown 	fprintf(stderr, "%d * %.0f = %.0f MHz TSC frequency\n",
557103a8feaSLen Brown 		ratio, bclk, ratio * bclk);
558103a8feaSLen Brown 
559103a8feaSLen Brown 	if (verbose > 1)
560103a8feaSLen Brown 		fprintf(stderr, "MSR_NEHALEM_PLATFORM_INFO: 0x%llx\n", msr);
561103a8feaSLen Brown 
562103a8feaSLen Brown 	if (!do_nehalem_turbo_ratio_limit)
563103a8feaSLen Brown 		return;
564103a8feaSLen Brown 
565103a8feaSLen Brown 	msr = get_msr(0, MSR_NEHALEM_TURBO_RATIO_LIMIT);
566103a8feaSLen Brown 
567103a8feaSLen Brown 	ratio = (msr >> 24) & 0xFF;
568103a8feaSLen Brown 	if (ratio)
569103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
570103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
571103a8feaSLen Brown 
572103a8feaSLen Brown 	ratio = (msr >> 16) & 0xFF;
573103a8feaSLen Brown 	if (ratio)
574103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
575103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
576103a8feaSLen Brown 
577103a8feaSLen Brown 	ratio = (msr >> 8) & 0xFF;
578103a8feaSLen Brown 	if (ratio)
579103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
580103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
581103a8feaSLen Brown 
582103a8feaSLen Brown 	ratio = (msr >> 0) & 0xFF;
583103a8feaSLen Brown 	if (ratio)
584103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
585103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
586103a8feaSLen Brown 
587103a8feaSLen Brown }
588103a8feaSLen Brown 
589a829eb4dSLen Brown void free_counter_list(struct counters *list)
590103a8feaSLen Brown {
591a829eb4dSLen Brown 	struct counters *p;
592103a8feaSLen Brown 
593103a8feaSLen Brown 	for (p = list; p; ) {
594a829eb4dSLen Brown 		struct counters *free_me;
595103a8feaSLen Brown 
596103a8feaSLen Brown 		free_me = p;
597103a8feaSLen Brown 		p = p->next;
598103a8feaSLen Brown 		free(free_me);
599103a8feaSLen Brown 	}
600103a8feaSLen Brown }
601103a8feaSLen Brown 
602103a8feaSLen Brown void free_all_counters(void)
603103a8feaSLen Brown {
604a829eb4dSLen Brown 	free_counter_list(cnt_even);
605a829eb4dSLen Brown 	cnt_even = NULL;
606103a8feaSLen Brown 
607a829eb4dSLen Brown 	free_counter_list(cnt_odd);
608a829eb4dSLen Brown 	cnt_odd = NULL;
609103a8feaSLen Brown 
610a829eb4dSLen Brown 	free_counter_list(cnt_delta);
611a829eb4dSLen Brown 	cnt_delta = NULL;
612103a8feaSLen Brown 
613a829eb4dSLen Brown 	free_counter_list(cnt_average);
614a829eb4dSLen Brown 	cnt_average = NULL;
615103a8feaSLen Brown }
616103a8feaSLen Brown 
617a829eb4dSLen Brown void insert_counters(struct counters **list,
618a829eb4dSLen Brown 	struct counters *new)
619103a8feaSLen Brown {
620a829eb4dSLen Brown 	struct counters *prev;
621103a8feaSLen Brown 
622103a8feaSLen Brown 	/*
623103a8feaSLen Brown 	 * list was empty
624103a8feaSLen Brown 	 */
625103a8feaSLen Brown 	if (*list == NULL) {
626103a8feaSLen Brown 		new->next = *list;
627103a8feaSLen Brown 		*list = new;
628103a8feaSLen Brown 		return;
629103a8feaSLen Brown 	}
630103a8feaSLen Brown 
631e23da037SLen Brown 	if (!summary_only)
632103a8feaSLen Brown 		show_cpu = 1;	/* there is more than one CPU */
633103a8feaSLen Brown 
634103a8feaSLen Brown 	/*
635103a8feaSLen Brown 	 * insert on front of list.
636103a8feaSLen Brown 	 * It is sorted by ascending package#, core#, cpu#
637103a8feaSLen Brown 	 */
638103a8feaSLen Brown 	if (((*list)->pkg > new->pkg) ||
639103a8feaSLen Brown 	    (((*list)->pkg == new->pkg) && ((*list)->core > new->core)) ||
640103a8feaSLen Brown 	    (((*list)->pkg == new->pkg) && ((*list)->core == new->core) && ((*list)->cpu > new->cpu))) {
641103a8feaSLen Brown 		new->next = *list;
642103a8feaSLen Brown 		*list = new;
643103a8feaSLen Brown 		return;
644103a8feaSLen Brown 	}
645103a8feaSLen Brown 
646103a8feaSLen Brown 	prev = *list;
647103a8feaSLen Brown 
648103a8feaSLen Brown 	while (prev->next && (prev->next->pkg < new->pkg)) {
649103a8feaSLen Brown 		prev = prev->next;
650e23da037SLen Brown 		if (!summary_only)
651103a8feaSLen Brown 			show_pkg = 1;	/* there is more than 1 package */
652103a8feaSLen Brown 	}
653103a8feaSLen Brown 
654103a8feaSLen Brown 	while (prev->next && (prev->next->pkg == new->pkg)
655103a8feaSLen Brown 		&& (prev->next->core < new->core)) {
656103a8feaSLen Brown 		prev = prev->next;
657e23da037SLen Brown 		if (!summary_only)
658103a8feaSLen Brown 			show_core = 1;	/* there is more than 1 core */
659103a8feaSLen Brown 	}
660103a8feaSLen Brown 
661103a8feaSLen Brown 	while (prev->next && (prev->next->pkg == new->pkg)
662103a8feaSLen Brown 		&& (prev->next->core == new->core)
663103a8feaSLen Brown 		&& (prev->next->cpu < new->cpu)) {
664103a8feaSLen Brown 		prev = prev->next;
665103a8feaSLen Brown 	}
666103a8feaSLen Brown 
667103a8feaSLen Brown 	/*
668103a8feaSLen Brown 	 * insert after "prev"
669103a8feaSLen Brown 	 */
670103a8feaSLen Brown 	new->next = prev->next;
671103a8feaSLen Brown 	prev->next = new;
672103a8feaSLen Brown }
673103a8feaSLen Brown 
674a829eb4dSLen Brown void alloc_new_counters(int pkg, int core, int cpu)
675103a8feaSLen Brown {
676a829eb4dSLen Brown 	struct counters *new;
677103a8feaSLen Brown 
678103a8feaSLen Brown 	if (verbose > 1)
679103a8feaSLen Brown 		printf("pkg%d core%d, cpu%d\n", pkg, core, cpu);
680103a8feaSLen Brown 
681a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
682103a8feaSLen Brown 	if (new == NULL) {
683103a8feaSLen Brown 		perror("calloc");
684103a8feaSLen Brown 		exit(1);
685103a8feaSLen Brown 	}
686103a8feaSLen Brown 	new->pkg = pkg;
687103a8feaSLen Brown 	new->core = core;
688103a8feaSLen Brown 	new->cpu = cpu;
689a829eb4dSLen Brown 	insert_counters(&cnt_odd, new);
690103a8feaSLen Brown 
691a829eb4dSLen Brown 	new = (struct counters *)calloc(1,
692a829eb4dSLen Brown 		sizeof(struct counters));
693103a8feaSLen Brown 	if (new == NULL) {
694103a8feaSLen Brown 		perror("calloc");
695103a8feaSLen Brown 		exit(1);
696103a8feaSLen Brown 	}
697103a8feaSLen Brown 	new->pkg = pkg;
698103a8feaSLen Brown 	new->core = core;
699103a8feaSLen Brown 	new->cpu = cpu;
700a829eb4dSLen Brown 	insert_counters(&cnt_even, new);
701103a8feaSLen Brown 
702a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
703103a8feaSLen Brown 	if (new == NULL) {
704103a8feaSLen Brown 		perror("calloc");
705103a8feaSLen Brown 		exit(1);
706103a8feaSLen Brown 	}
707103a8feaSLen Brown 	new->pkg = pkg;
708103a8feaSLen Brown 	new->core = core;
709103a8feaSLen Brown 	new->cpu = cpu;
710a829eb4dSLen Brown 	insert_counters(&cnt_delta, new);
711103a8feaSLen Brown 
712a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
713103a8feaSLen Brown 	if (new == NULL) {
714103a8feaSLen Brown 		perror("calloc");
715103a8feaSLen Brown 		exit(1);
716103a8feaSLen Brown 	}
717103a8feaSLen Brown 	new->pkg = pkg;
718103a8feaSLen Brown 	new->core = core;
719103a8feaSLen Brown 	new->cpu = cpu;
720a829eb4dSLen Brown 	cnt_average = new;
721103a8feaSLen Brown }
722103a8feaSLen Brown 
723103a8feaSLen Brown int get_physical_package_id(int cpu)
724103a8feaSLen Brown {
725103a8feaSLen Brown 	char path[64];
726103a8feaSLen Brown 	FILE *filep;
727103a8feaSLen Brown 	int pkg;
728103a8feaSLen Brown 
729103a8feaSLen Brown 	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
730103a8feaSLen Brown 	filep = fopen(path, "r");
731103a8feaSLen Brown 	if (filep == NULL) {
732103a8feaSLen Brown 		perror(path);
733103a8feaSLen Brown 		exit(1);
734103a8feaSLen Brown 	}
735103a8feaSLen Brown 	fscanf(filep, "%d", &pkg);
736103a8feaSLen Brown 	fclose(filep);
737103a8feaSLen Brown 	return pkg;
738103a8feaSLen Brown }
739103a8feaSLen Brown 
740103a8feaSLen Brown int get_core_id(int cpu)
741103a8feaSLen Brown {
742103a8feaSLen Brown 	char path[64];
743103a8feaSLen Brown 	FILE *filep;
744103a8feaSLen Brown 	int core;
745103a8feaSLen Brown 
746103a8feaSLen Brown 	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
747103a8feaSLen Brown 	filep = fopen(path, "r");
748103a8feaSLen Brown 	if (filep == NULL) {
749103a8feaSLen Brown 		perror(path);
750103a8feaSLen Brown 		exit(1);
751103a8feaSLen Brown 	}
752103a8feaSLen Brown 	fscanf(filep, "%d", &core);
753103a8feaSLen Brown 	fclose(filep);
754103a8feaSLen Brown 	return core;
755103a8feaSLen Brown }
756103a8feaSLen Brown 
757103a8feaSLen Brown /*
758103a8feaSLen Brown  * run func(index, cpu) on every cpu in /proc/stat
759103a8feaSLen Brown  */
760103a8feaSLen Brown 
761103a8feaSLen Brown int for_all_cpus(void (func)(int, int, int))
762103a8feaSLen Brown {
763103a8feaSLen Brown 	FILE *fp;
764103a8feaSLen Brown 	int cpu_count;
765103a8feaSLen Brown 	int retval;
766103a8feaSLen Brown 
767103a8feaSLen Brown 	fp = fopen(proc_stat, "r");
768103a8feaSLen Brown 	if (fp == NULL) {
769103a8feaSLen Brown 		perror(proc_stat);
770103a8feaSLen Brown 		exit(1);
771103a8feaSLen Brown 	}
772103a8feaSLen Brown 
773103a8feaSLen Brown 	retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
774103a8feaSLen Brown 	if (retval != 0) {
775103a8feaSLen Brown 		perror("/proc/stat format");
776103a8feaSLen Brown 		exit(1);
777103a8feaSLen Brown 	}
778103a8feaSLen Brown 
779103a8feaSLen Brown 	for (cpu_count = 0; ; cpu_count++) {
780103a8feaSLen Brown 		int cpu;
781103a8feaSLen Brown 
782103a8feaSLen Brown 		retval = fscanf(fp, "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu);
783103a8feaSLen Brown 		if (retval != 1)
784103a8feaSLen Brown 			break;
785103a8feaSLen Brown 
786103a8feaSLen Brown 		func(get_physical_package_id(cpu), get_core_id(cpu), cpu);
787103a8feaSLen Brown 	}
788103a8feaSLen Brown 	fclose(fp);
789103a8feaSLen Brown 	return cpu_count;
790103a8feaSLen Brown }
791103a8feaSLen Brown 
792103a8feaSLen Brown void re_initialize(void)
793103a8feaSLen Brown {
794103a8feaSLen Brown 	printf("turbostat: topology changed, re-initializing.\n");
795103a8feaSLen Brown 	free_all_counters();
796a829eb4dSLen Brown 	num_cpus = for_all_cpus(alloc_new_counters);
797103a8feaSLen Brown 	need_reinitialize = 0;
798*88c3281fSLen Brown 	cpu_mask_uninit();
799*88c3281fSLen Brown 	cpu_mask_init(num_cpus);
800103a8feaSLen Brown 	printf("num_cpus is now %d\n", num_cpus);
801103a8feaSLen Brown }
802103a8feaSLen Brown 
803103a8feaSLen Brown void dummy(int pkg, int core, int cpu) { return; }
804103a8feaSLen Brown /*
805103a8feaSLen Brown  * check to see if a cpu came on-line
806103a8feaSLen Brown  */
807a829eb4dSLen Brown void verify_num_cpus(void)
808103a8feaSLen Brown {
809103a8feaSLen Brown 	int new_num_cpus;
810103a8feaSLen Brown 
811103a8feaSLen Brown 	new_num_cpus = for_all_cpus(dummy);
812103a8feaSLen Brown 
813103a8feaSLen Brown 	if (new_num_cpus != num_cpus) {
814103a8feaSLen Brown 		if (verbose)
815103a8feaSLen Brown 			printf("num_cpus was %d, is now  %d\n",
816103a8feaSLen Brown 				num_cpus, new_num_cpus);
817103a8feaSLen Brown 		need_reinitialize = 1;
818103a8feaSLen Brown 	}
819103a8feaSLen Brown }
820103a8feaSLen Brown 
821103a8feaSLen Brown void turbostat_loop()
822103a8feaSLen Brown {
823103a8feaSLen Brown restart:
824a829eb4dSLen Brown 	get_counters(cnt_even);
825103a8feaSLen Brown 	gettimeofday(&tv_even, (struct timezone *)NULL);
826103a8feaSLen Brown 
827103a8feaSLen Brown 	while (1) {
828103a8feaSLen Brown 		verify_num_cpus();
829103a8feaSLen Brown 		if (need_reinitialize) {
830103a8feaSLen Brown 			re_initialize();
831103a8feaSLen Brown 			goto restart;
832103a8feaSLen Brown 		}
833103a8feaSLen Brown 		sleep(interval_sec);
834a829eb4dSLen Brown 		get_counters(cnt_odd);
835103a8feaSLen Brown 		gettimeofday(&tv_odd, (struct timezone *)NULL);
836103a8feaSLen Brown 
837a829eb4dSLen Brown 		compute_delta(cnt_odd, cnt_even, cnt_delta);
838103a8feaSLen Brown 		timersub(&tv_odd, &tv_even, &tv_delta);
839a829eb4dSLen Brown 		compute_average(cnt_delta, cnt_average);
840a829eb4dSLen Brown 		print_counters(cnt_delta);
841103a8feaSLen Brown 		if (need_reinitialize) {
842103a8feaSLen Brown 			re_initialize();
843103a8feaSLen Brown 			goto restart;
844103a8feaSLen Brown 		}
845103a8feaSLen Brown 		sleep(interval_sec);
846a829eb4dSLen Brown 		get_counters(cnt_even);
847103a8feaSLen Brown 		gettimeofday(&tv_even, (struct timezone *)NULL);
848a829eb4dSLen Brown 		compute_delta(cnt_even, cnt_odd, cnt_delta);
849103a8feaSLen Brown 		timersub(&tv_even, &tv_odd, &tv_delta);
850a829eb4dSLen Brown 		compute_average(cnt_delta, cnt_average);
851a829eb4dSLen Brown 		print_counters(cnt_delta);
852103a8feaSLen Brown 	}
853103a8feaSLen Brown }
854103a8feaSLen Brown 
855103a8feaSLen Brown void check_dev_msr()
856103a8feaSLen Brown {
857103a8feaSLen Brown 	struct stat sb;
858103a8feaSLen Brown 
859103a8feaSLen Brown 	if (stat("/dev/cpu/0/msr", &sb)) {
860103a8feaSLen Brown 		fprintf(stderr, "no /dev/cpu/0/msr\n");
861103a8feaSLen Brown 		fprintf(stderr, "Try \"# modprobe msr\"\n");
862103a8feaSLen Brown 		exit(-5);
863103a8feaSLen Brown 	}
864103a8feaSLen Brown }
865103a8feaSLen Brown 
866103a8feaSLen Brown void check_super_user()
867103a8feaSLen Brown {
868103a8feaSLen Brown 	if (getuid() != 0) {
869103a8feaSLen Brown 		fprintf(stderr, "must be root\n");
870103a8feaSLen Brown 		exit(-6);
871103a8feaSLen Brown 	}
872103a8feaSLen Brown }
873103a8feaSLen Brown 
874103a8feaSLen Brown int has_nehalem_turbo_ratio_limit(unsigned int family, unsigned int model)
875103a8feaSLen Brown {
876103a8feaSLen Brown 	if (!genuine_intel)
877103a8feaSLen Brown 		return 0;
878103a8feaSLen Brown 
879103a8feaSLen Brown 	if (family != 6)
880103a8feaSLen Brown 		return 0;
881103a8feaSLen Brown 
882103a8feaSLen Brown 	switch (model) {
883103a8feaSLen Brown 	case 0x1A:	/* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
884103a8feaSLen Brown 	case 0x1E:	/* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
885103a8feaSLen Brown 	case 0x1F:	/* Core i7 and i5 Processor - Nehalem */
886103a8feaSLen Brown 	case 0x25:	/* Westmere Client - Clarkdale, Arrandale */
887103a8feaSLen Brown 	case 0x2C:	/* Westmere EP - Gulftown */
888103a8feaSLen Brown 	case 0x2A:	/* SNB */
889103a8feaSLen Brown 	case 0x2D:	/* SNB Xeon */
890553575f1SLen Brown 	case 0x3A:	/* IVB */
891553575f1SLen Brown 	case 0x3D:	/* IVB Xeon */
892103a8feaSLen Brown 		return 1;
893103a8feaSLen Brown 	case 0x2E:	/* Nehalem-EX Xeon - Beckton */
894103a8feaSLen Brown 	case 0x2F:	/* Westmere-EX Xeon - Eagleton */
895103a8feaSLen Brown 	default:
896103a8feaSLen Brown 		return 0;
897103a8feaSLen Brown 	}
898103a8feaSLen Brown }
899103a8feaSLen Brown 
900103a8feaSLen Brown int is_snb(unsigned int family, unsigned int model)
901103a8feaSLen Brown {
902103a8feaSLen Brown 	if (!genuine_intel)
903103a8feaSLen Brown 		return 0;
904103a8feaSLen Brown 
905103a8feaSLen Brown 	switch (model) {
906103a8feaSLen Brown 	case 0x2A:
907103a8feaSLen Brown 	case 0x2D:
908103a8feaSLen Brown 		return 1;
909103a8feaSLen Brown 	}
910103a8feaSLen Brown 	return 0;
911103a8feaSLen Brown }
912103a8feaSLen Brown 
913103a8feaSLen Brown double discover_bclk(unsigned int family, unsigned int model)
914103a8feaSLen Brown {
915103a8feaSLen Brown 	if (is_snb(family, model))
916103a8feaSLen Brown 		return 100.00;
917103a8feaSLen Brown 	else
918103a8feaSLen Brown 		return 133.33;
919103a8feaSLen Brown }
920103a8feaSLen Brown 
921103a8feaSLen Brown void check_cpuid()
922103a8feaSLen Brown {
923103a8feaSLen Brown 	unsigned int eax, ebx, ecx, edx, max_level;
924103a8feaSLen Brown 	unsigned int fms, family, model, stepping;
925103a8feaSLen Brown 
926103a8feaSLen Brown 	eax = ebx = ecx = edx = 0;
927103a8feaSLen Brown 
928103a8feaSLen Brown 	asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0));
929103a8feaSLen Brown 
930103a8feaSLen Brown 	if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
931103a8feaSLen Brown 		genuine_intel = 1;
932103a8feaSLen Brown 
933103a8feaSLen Brown 	if (verbose)
934103a8feaSLen Brown 		fprintf(stderr, "%.4s%.4s%.4s ",
935103a8feaSLen Brown 			(char *)&ebx, (char *)&edx, (char *)&ecx);
936103a8feaSLen Brown 
937103a8feaSLen Brown 	asm("cpuid" : "=a" (fms), "=c" (ecx), "=d" (edx) : "a" (1) : "ebx");
938103a8feaSLen Brown 	family = (fms >> 8) & 0xf;
939103a8feaSLen Brown 	model = (fms >> 4) & 0xf;
940103a8feaSLen Brown 	stepping = fms & 0xf;
941103a8feaSLen Brown 	if (family == 6 || family == 0xf)
942103a8feaSLen Brown 		model += ((fms >> 16) & 0xf) << 4;
943103a8feaSLen Brown 
944103a8feaSLen Brown 	if (verbose)
945103a8feaSLen Brown 		fprintf(stderr, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
946103a8feaSLen Brown 			max_level, family, model, stepping, family, model, stepping);
947103a8feaSLen Brown 
948103a8feaSLen Brown 	if (!(edx & (1 << 5))) {
949103a8feaSLen Brown 		fprintf(stderr, "CPUID: no MSR\n");
950103a8feaSLen Brown 		exit(1);
951103a8feaSLen Brown 	}
952103a8feaSLen Brown 
953103a8feaSLen Brown 	/*
954103a8feaSLen Brown 	 * check max extended function levels of CPUID.
955103a8feaSLen Brown 	 * This is needed to check for invariant TSC.
956103a8feaSLen Brown 	 * This check is valid for both Intel and AMD.
957103a8feaSLen Brown 	 */
958103a8feaSLen Brown 	ebx = ecx = edx = 0;
959103a8feaSLen Brown 	asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000000));
960103a8feaSLen Brown 
961103a8feaSLen Brown 	if (max_level < 0x80000007) {
962103a8feaSLen Brown 		fprintf(stderr, "CPUID: no invariant TSC (max_level 0x%x)\n", max_level);
963103a8feaSLen Brown 		exit(1);
964103a8feaSLen Brown 	}
965103a8feaSLen Brown 
966103a8feaSLen Brown 	/*
967103a8feaSLen Brown 	 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
968103a8feaSLen Brown 	 * this check is valid for both Intel and AMD
969103a8feaSLen Brown 	 */
970103a8feaSLen Brown 	asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000007));
9718209e054SThomas Renninger 	has_invariant_tsc = edx & (1 << 8);
972103a8feaSLen Brown 
973103a8feaSLen Brown 	if (!has_invariant_tsc) {
974103a8feaSLen Brown 		fprintf(stderr, "No invariant TSC\n");
975103a8feaSLen Brown 		exit(1);
976103a8feaSLen Brown 	}
977103a8feaSLen Brown 
978103a8feaSLen Brown 	/*
979103a8feaSLen Brown 	 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
980103a8feaSLen Brown 	 * this check is valid for both Intel and AMD
981103a8feaSLen Brown 	 */
982103a8feaSLen Brown 
983103a8feaSLen Brown 	asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x6));
9848209e054SThomas Renninger 	has_aperf = ecx & (1 << 0);
985103a8feaSLen Brown 	if (!has_aperf) {
986103a8feaSLen Brown 		fprintf(stderr, "No APERF MSR\n");
987103a8feaSLen Brown 		exit(1);
988103a8feaSLen Brown 	}
989103a8feaSLen Brown 
990103a8feaSLen Brown 	do_nehalem_platform_info = genuine_intel && has_invariant_tsc;
991103a8feaSLen Brown 	do_nhm_cstates = genuine_intel;	/* all Intel w/ non-stop TSC have NHM counters */
992103a8feaSLen Brown 	do_snb_cstates = is_snb(family, model);
993103a8feaSLen Brown 	bclk = discover_bclk(family, model);
994103a8feaSLen Brown 
995103a8feaSLen Brown 	do_nehalem_turbo_ratio_limit = has_nehalem_turbo_ratio_limit(family, model);
996103a8feaSLen Brown }
997103a8feaSLen Brown 
998103a8feaSLen Brown 
999103a8feaSLen Brown void usage()
1000103a8feaSLen Brown {
1001103a8feaSLen Brown 	fprintf(stderr, "%s: [-v] [-M MSR#] [-i interval_sec | command ...]\n",
1002103a8feaSLen Brown 		progname);
1003103a8feaSLen Brown 	exit(1);
1004103a8feaSLen Brown }
1005103a8feaSLen Brown 
1006103a8feaSLen Brown 
1007103a8feaSLen Brown /*
1008103a8feaSLen Brown  * in /dev/cpu/ return success for names that are numbers
1009103a8feaSLen Brown  * ie. filter out ".", "..", "microcode".
1010103a8feaSLen Brown  */
1011103a8feaSLen Brown int dir_filter(const struct dirent *dirp)
1012103a8feaSLen Brown {
1013103a8feaSLen Brown 	if (isdigit(dirp->d_name[0]))
1014103a8feaSLen Brown 		return 1;
1015103a8feaSLen Brown 	else
1016103a8feaSLen Brown 		return 0;
1017103a8feaSLen Brown }
1018103a8feaSLen Brown 
1019103a8feaSLen Brown int open_dev_cpu_msr(int dummy1)
1020103a8feaSLen Brown {
1021103a8feaSLen Brown 	return 0;
1022103a8feaSLen Brown }
1023103a8feaSLen Brown 
1024103a8feaSLen Brown void turbostat_init()
1025103a8feaSLen Brown {
1026103a8feaSLen Brown 	check_cpuid();
1027103a8feaSLen Brown 
1028103a8feaSLen Brown 	check_dev_msr();
1029103a8feaSLen Brown 	check_super_user();
1030103a8feaSLen Brown 
1031a829eb4dSLen Brown 	num_cpus = for_all_cpus(alloc_new_counters);
1032*88c3281fSLen Brown 	cpu_mask_init(num_cpus);
1033103a8feaSLen Brown 
1034103a8feaSLen Brown 	if (verbose)
1035103a8feaSLen Brown 		print_nehalem_info();
1036103a8feaSLen Brown }
1037103a8feaSLen Brown 
1038103a8feaSLen Brown int fork_it(char **argv)
1039103a8feaSLen Brown {
1040103a8feaSLen Brown 	int retval;
1041103a8feaSLen Brown 	pid_t child_pid;
1042a829eb4dSLen Brown 	get_counters(cnt_even);
1043103a8feaSLen Brown 	gettimeofday(&tv_even, (struct timezone *)NULL);
1044103a8feaSLen Brown 
1045103a8feaSLen Brown 	child_pid = fork();
1046103a8feaSLen Brown 	if (!child_pid) {
1047103a8feaSLen Brown 		/* child */
1048103a8feaSLen Brown 		execvp(argv[0], argv);
1049103a8feaSLen Brown 	} else {
1050103a8feaSLen Brown 		int status;
1051103a8feaSLen Brown 
1052103a8feaSLen Brown 		/* parent */
1053103a8feaSLen Brown 		if (child_pid == -1) {
1054103a8feaSLen Brown 			perror("fork");
1055103a8feaSLen Brown 			exit(1);
1056103a8feaSLen Brown 		}
1057103a8feaSLen Brown 
1058103a8feaSLen Brown 		signal(SIGINT, SIG_IGN);
1059103a8feaSLen Brown 		signal(SIGQUIT, SIG_IGN);
1060103a8feaSLen Brown 		if (waitpid(child_pid, &status, 0) == -1) {
1061103a8feaSLen Brown 			perror("wait");
1062103a8feaSLen Brown 			exit(1);
1063103a8feaSLen Brown 		}
1064103a8feaSLen Brown 	}
1065a829eb4dSLen Brown 	get_counters(cnt_odd);
1066103a8feaSLen Brown 	gettimeofday(&tv_odd, (struct timezone *)NULL);
1067a829eb4dSLen Brown 	retval = compute_delta(cnt_odd, cnt_even, cnt_delta);
1068103a8feaSLen Brown 
1069103a8feaSLen Brown 	timersub(&tv_odd, &tv_even, &tv_delta);
1070a829eb4dSLen Brown 	compute_average(cnt_delta, cnt_average);
1071103a8feaSLen Brown 	if (!retval)
1072a829eb4dSLen Brown 		print_counters(cnt_delta);
1073103a8feaSLen Brown 
10746eab04a8SJustin P. Mattock 	fprintf(stderr, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
1075103a8feaSLen Brown 
1076103a8feaSLen Brown 	return 0;
1077103a8feaSLen Brown }
1078103a8feaSLen Brown 
1079103a8feaSLen Brown void cmdline(int argc, char **argv)
1080103a8feaSLen Brown {
1081103a8feaSLen Brown 	int opt;
1082103a8feaSLen Brown 
1083103a8feaSLen Brown 	progname = argv[0];
1084103a8feaSLen Brown 
1085e23da037SLen Brown 	while ((opt = getopt(argc, argv, "+svi:M:")) != -1) {
1086103a8feaSLen Brown 		switch (opt) {
1087e23da037SLen Brown 		case 's':
1088e23da037SLen Brown 			summary_only++;
1089e23da037SLen Brown 			break;
1090103a8feaSLen Brown 		case 'v':
1091103a8feaSLen Brown 			verbose++;
1092103a8feaSLen Brown 			break;
1093103a8feaSLen Brown 		case 'i':
1094103a8feaSLen Brown 			interval_sec = atoi(optarg);
1095103a8feaSLen Brown 			break;
1096103a8feaSLen Brown 		case 'M':
1097103a8feaSLen Brown 			sscanf(optarg, "%x", &extra_msr_offset);
1098103a8feaSLen Brown 			if (verbose > 1)
1099103a8feaSLen Brown 				fprintf(stderr, "MSR 0x%X\n", extra_msr_offset);
1100103a8feaSLen Brown 			break;
1101103a8feaSLen Brown 		default:
1102103a8feaSLen Brown 			usage();
1103103a8feaSLen Brown 		}
1104103a8feaSLen Brown 	}
1105103a8feaSLen Brown }
1106103a8feaSLen Brown 
1107103a8feaSLen Brown int main(int argc, char **argv)
1108103a8feaSLen Brown {
1109103a8feaSLen Brown 	cmdline(argc, argv);
1110103a8feaSLen Brown 
1111103a8feaSLen Brown 	if (verbose > 1)
1112103a8feaSLen Brown 		fprintf(stderr, "turbostat Dec 6, 2010"
1113103a8feaSLen Brown 			" - Len Brown <lenb@kernel.org>\n");
1114103a8feaSLen Brown 	if (verbose > 1)
1115103a8feaSLen Brown 		fprintf(stderr, "http://userweb.kernel.org/~lenb/acpi/utils/pmtools/turbostat/\n");
1116103a8feaSLen Brown 
1117103a8feaSLen Brown 	turbostat_init();
1118103a8feaSLen Brown 
1119103a8feaSLen Brown 	/*
1120103a8feaSLen Brown 	 * if any params left, it must be a command to fork
1121103a8feaSLen Brown 	 */
1122103a8feaSLen Brown 	if (argc - optind)
1123103a8feaSLen Brown 		return fork_it(argv + optind);
1124103a8feaSLen Brown 	else
1125103a8feaSLen Brown 		turbostat_loop();
1126103a8feaSLen Brown 
1127103a8feaSLen Brown 	return 0;
1128103a8feaSLen Brown }
1129