1103a8feaSLen Brown /*
2103a8feaSLen Brown  * turbostat -- show CPU frequency and C-state residency
3103a8feaSLen Brown  * on modern Intel turbo-capable processors.
4103a8feaSLen Brown  *
5103a8feaSLen Brown  * Copyright (c) 2010, 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 
22103a8feaSLen Brown #include <stdio.h>
23103a8feaSLen Brown #include <unistd.h>
24103a8feaSLen Brown #include <sys/types.h>
25103a8feaSLen Brown #include <sys/wait.h>
26103a8feaSLen Brown #include <sys/stat.h>
27103a8feaSLen Brown #include <sys/resource.h>
28103a8feaSLen Brown #include <fcntl.h>
29103a8feaSLen Brown #include <signal.h>
30103a8feaSLen Brown #include <sys/time.h>
31103a8feaSLen Brown #include <stdlib.h>
32103a8feaSLen Brown #include <dirent.h>
33103a8feaSLen Brown #include <string.h>
34103a8feaSLen Brown #include <ctype.h>
35103a8feaSLen Brown 
36103a8feaSLen Brown #define MSR_TSC	0x10
37103a8feaSLen Brown #define MSR_NEHALEM_PLATFORM_INFO	0xCE
38103a8feaSLen Brown #define MSR_NEHALEM_TURBO_RATIO_LIMIT	0x1AD
39103a8feaSLen Brown #define MSR_APERF	0xE8
40103a8feaSLen Brown #define MSR_MPERF	0xE7
41103a8feaSLen Brown #define MSR_PKG_C2_RESIDENCY	0x60D	/* SNB only */
42103a8feaSLen Brown #define MSR_PKG_C3_RESIDENCY	0x3F8
43103a8feaSLen Brown #define MSR_PKG_C6_RESIDENCY	0x3F9
44103a8feaSLen Brown #define MSR_PKG_C7_RESIDENCY	0x3FA	/* SNB only */
45103a8feaSLen Brown #define MSR_CORE_C3_RESIDENCY	0x3FC
46103a8feaSLen Brown #define MSR_CORE_C6_RESIDENCY	0x3FD
47103a8feaSLen Brown #define MSR_CORE_C7_RESIDENCY	0x3FE	/* SNB only */
48103a8feaSLen Brown 
49103a8feaSLen Brown char *proc_stat = "/proc/stat";
50103a8feaSLen Brown unsigned int interval_sec = 5;	/* set with -i interval_sec */
51103a8feaSLen Brown unsigned int verbose;		/* set with -v */
52103a8feaSLen Brown unsigned int skip_c0;
53103a8feaSLen Brown unsigned int skip_c1;
54103a8feaSLen Brown unsigned int do_nhm_cstates;
55103a8feaSLen Brown unsigned int do_snb_cstates;
56103a8feaSLen Brown unsigned int has_aperf;
57103a8feaSLen Brown unsigned int units = 1000000000;	/* Ghz etc */
58103a8feaSLen Brown unsigned int genuine_intel;
59103a8feaSLen Brown unsigned int has_invariant_tsc;
60103a8feaSLen Brown unsigned int do_nehalem_platform_info;
61103a8feaSLen Brown unsigned int do_nehalem_turbo_ratio_limit;
62103a8feaSLen Brown unsigned int extra_msr_offset;
63103a8feaSLen Brown double bclk;
64103a8feaSLen Brown unsigned int show_pkg;
65103a8feaSLen Brown unsigned int show_core;
66103a8feaSLen Brown unsigned int show_cpu;
67103a8feaSLen Brown 
68103a8feaSLen Brown int aperf_mperf_unstable;
69103a8feaSLen Brown int backwards_count;
70103a8feaSLen Brown char *progname;
71103a8feaSLen Brown int need_reinitialize;
72103a8feaSLen Brown 
73103a8feaSLen Brown int num_cpus;
74103a8feaSLen Brown 
75a829eb4dSLen Brown struct counters {
76103a8feaSLen Brown 	unsigned long long tsc;		/* per thread */
77103a8feaSLen Brown 	unsigned long long aperf;	/* per thread */
78103a8feaSLen Brown 	unsigned long long mperf;	/* per thread */
79103a8feaSLen Brown 	unsigned long long c1;	/* per thread (calculated) */
80103a8feaSLen Brown 	unsigned long long c3;	/* per core */
81103a8feaSLen Brown 	unsigned long long c6;	/* per core */
82103a8feaSLen Brown 	unsigned long long c7;	/* per core */
83103a8feaSLen Brown 	unsigned long long pc2;	/* per package */
84103a8feaSLen Brown 	unsigned long long pc3;	/* per package */
85103a8feaSLen Brown 	unsigned long long pc6;	/* per package */
86103a8feaSLen Brown 	unsigned long long pc7;	/* per package */
87103a8feaSLen Brown 	unsigned long long extra_msr;	/* per thread */
88103a8feaSLen Brown 	int pkg;
89103a8feaSLen Brown 	int core;
90103a8feaSLen Brown 	int cpu;
91a829eb4dSLen Brown 	struct counters *next;
92a829eb4dSLen Brown };
93103a8feaSLen Brown 
94a829eb4dSLen Brown struct counters *cnt_even;
95a829eb4dSLen Brown struct counters *cnt_odd;
96a829eb4dSLen Brown struct counters *cnt_delta;
97a829eb4dSLen Brown struct counters *cnt_average;
98103a8feaSLen Brown struct timeval tv_even;
99103a8feaSLen Brown struct timeval tv_odd;
100103a8feaSLen Brown struct timeval tv_delta;
101103a8feaSLen Brown 
102103a8feaSLen Brown unsigned long long get_msr(int cpu, off_t offset)
103103a8feaSLen Brown {
104103a8feaSLen Brown 	ssize_t retval;
105103a8feaSLen Brown 	unsigned long long msr;
106103a8feaSLen Brown 	char pathname[32];
107103a8feaSLen Brown 	int fd;
108103a8feaSLen Brown 
109103a8feaSLen Brown 	sprintf(pathname, "/dev/cpu/%d/msr", cpu);
110103a8feaSLen Brown 	fd = open(pathname, O_RDONLY);
111103a8feaSLen Brown 	if (fd < 0) {
112103a8feaSLen Brown 		perror(pathname);
113103a8feaSLen Brown 		need_reinitialize = 1;
114103a8feaSLen Brown 		return 0;
115103a8feaSLen Brown 	}
116103a8feaSLen Brown 
117103a8feaSLen Brown 	retval = pread(fd, &msr, sizeof msr, offset);
118103a8feaSLen Brown 	if (retval != sizeof msr) {
119103a8feaSLen Brown 		fprintf(stderr, "cpu%d pread(..., 0x%zx) = %jd\n",
120103a8feaSLen Brown 			cpu, offset, retval);
121103a8feaSLen Brown 		exit(-2);
122103a8feaSLen Brown 	}
123103a8feaSLen Brown 
124103a8feaSLen Brown 	close(fd);
125103a8feaSLen Brown 	return msr;
126103a8feaSLen Brown }
127103a8feaSLen Brown 
128a829eb4dSLen Brown void print_header(void)
129103a8feaSLen Brown {
130103a8feaSLen Brown 	if (show_pkg)
131103a8feaSLen Brown 		fprintf(stderr, "pkg ");
132103a8feaSLen Brown 	if (show_core)
133103a8feaSLen Brown 		fprintf(stderr, "core");
134103a8feaSLen Brown 	if (show_cpu)
135103a8feaSLen Brown 		fprintf(stderr, " CPU");
136103a8feaSLen Brown 	if (do_nhm_cstates)
137103a8feaSLen Brown 		fprintf(stderr, "   %%c0 ");
138103a8feaSLen Brown 	if (has_aperf)
139103a8feaSLen Brown 		fprintf(stderr, "  GHz");
140103a8feaSLen Brown 	fprintf(stderr, "  TSC");
141103a8feaSLen Brown 	if (do_nhm_cstates)
142103a8feaSLen Brown 		fprintf(stderr, "   %%c1 ");
143103a8feaSLen Brown 	if (do_nhm_cstates)
144103a8feaSLen Brown 		fprintf(stderr, "   %%c3 ");
145103a8feaSLen Brown 	if (do_nhm_cstates)
146103a8feaSLen Brown 		fprintf(stderr, "   %%c6 ");
147103a8feaSLen Brown 	if (do_snb_cstates)
148103a8feaSLen Brown 		fprintf(stderr, "   %%c7 ");
149103a8feaSLen Brown 	if (do_snb_cstates)
150103a8feaSLen Brown 		fprintf(stderr, "  %%pc2 ");
151103a8feaSLen Brown 	if (do_nhm_cstates)
152103a8feaSLen Brown 		fprintf(stderr, "  %%pc3 ");
153103a8feaSLen Brown 	if (do_nhm_cstates)
154103a8feaSLen Brown 		fprintf(stderr, "  %%pc6 ");
155103a8feaSLen Brown 	if (do_snb_cstates)
156103a8feaSLen Brown 		fprintf(stderr, "  %%pc7 ");
157103a8feaSLen Brown 	if (extra_msr_offset)
158103a8feaSLen Brown 		fprintf(stderr, "       MSR 0x%x ", extra_msr_offset);
159103a8feaSLen Brown 
160103a8feaSLen Brown 	putc('\n', stderr);
161103a8feaSLen Brown }
162103a8feaSLen Brown 
163a829eb4dSLen Brown void dump_cnt(struct counters *cnt)
164103a8feaSLen Brown {
165aeae1e92SLen Brown 	if (!cnt)
166aeae1e92SLen Brown 		return;
167aeae1e92SLen Brown 	if (cnt->pkg) fprintf(stderr, "package: %d ", cnt->pkg);
168aeae1e92SLen Brown 	if (cnt->core) fprintf(stderr, "core:: %d ", cnt->core);
169aeae1e92SLen Brown 	if (cnt->cpu) fprintf(stderr, "CPU: %d ", cnt->cpu);
170aeae1e92SLen Brown 	if (cnt->tsc) fprintf(stderr, "TSC: %016llX\n", cnt->tsc);
171aeae1e92SLen Brown 	if (cnt->c3) fprintf(stderr, "c3: %016llX\n", cnt->c3);
172aeae1e92SLen Brown 	if (cnt->c6) fprintf(stderr, "c6: %016llX\n", cnt->c6);
173aeae1e92SLen Brown 	if (cnt->c7) fprintf(stderr, "c7: %016llX\n", cnt->c7);
174aeae1e92SLen Brown 	if (cnt->aperf) fprintf(stderr, "aperf: %016llX\n", cnt->aperf);
175aeae1e92SLen Brown 	if (cnt->pc2) fprintf(stderr, "pc2: %016llX\n", cnt->pc2);
176aeae1e92SLen Brown 	if (cnt->pc3) fprintf(stderr, "pc3: %016llX\n", cnt->pc3);
177aeae1e92SLen Brown 	if (cnt->pc6) fprintf(stderr, "pc6: %016llX\n", cnt->pc6);
178aeae1e92SLen Brown 	if (cnt->pc7) fprintf(stderr, "pc7: %016llX\n", cnt->pc7);
179aeae1e92SLen Brown 	if (cnt->extra_msr) fprintf(stderr, "msr0x%x: %016llX\n", extra_msr_offset, cnt->extra_msr);
180103a8feaSLen Brown }
181103a8feaSLen Brown 
182a829eb4dSLen Brown void dump_list(struct counters *cnt)
183103a8feaSLen Brown {
184a829eb4dSLen Brown 	printf("dump_list 0x%p\n", cnt);
185103a8feaSLen Brown 
186a829eb4dSLen Brown 	for (; cnt; cnt = cnt->next)
187a829eb4dSLen Brown 		dump_cnt(cnt);
188103a8feaSLen Brown }
189103a8feaSLen Brown 
190a829eb4dSLen Brown void print_cnt(struct counters *p)
191103a8feaSLen Brown {
192103a8feaSLen Brown 	double interval_float;
193103a8feaSLen Brown 
194103a8feaSLen Brown 	interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
195103a8feaSLen Brown 
196103a8feaSLen Brown 	/* topology columns, print blanks on 1st (average) line */
197a829eb4dSLen Brown 	if (p == cnt_average) {
198103a8feaSLen Brown 		if (show_pkg)
199103a8feaSLen Brown 			fprintf(stderr, "    ");
200103a8feaSLen Brown 		if (show_core)
201103a8feaSLen Brown 			fprintf(stderr, "    ");
202103a8feaSLen Brown 		if (show_cpu)
203103a8feaSLen Brown 			fprintf(stderr, "    ");
204103a8feaSLen Brown 	} else {
205103a8feaSLen Brown 		if (show_pkg)
206103a8feaSLen Brown 			fprintf(stderr, "%4d", p->pkg);
207103a8feaSLen Brown 		if (show_core)
208103a8feaSLen Brown 			fprintf(stderr, "%4d", p->core);
209103a8feaSLen Brown 		if (show_cpu)
210103a8feaSLen Brown 			fprintf(stderr, "%4d", p->cpu);
211103a8feaSLen Brown 	}
212103a8feaSLen Brown 
213103a8feaSLen Brown 	/* %c0 */
214103a8feaSLen Brown 	if (do_nhm_cstates) {
215103a8feaSLen Brown 		if (!skip_c0)
216103a8feaSLen Brown 			fprintf(stderr, "%7.2f", 100.0 * p->mperf/p->tsc);
217103a8feaSLen Brown 		else
218103a8feaSLen Brown 			fprintf(stderr, "   ****");
219103a8feaSLen Brown 	}
220103a8feaSLen Brown 
221103a8feaSLen Brown 	/* GHz */
222103a8feaSLen Brown 	if (has_aperf) {
223103a8feaSLen Brown 		if (!aperf_mperf_unstable) {
224103a8feaSLen Brown 			fprintf(stderr, "%5.2f",
225103a8feaSLen Brown 				1.0 * p->tsc / units * p->aperf /
226103a8feaSLen Brown 				p->mperf / interval_float);
227103a8feaSLen Brown 		} else {
228103a8feaSLen Brown 			if (p->aperf > p->tsc || p->mperf > p->tsc) {
229103a8feaSLen Brown 				fprintf(stderr, " ****");
230103a8feaSLen Brown 			} else {
231103a8feaSLen Brown 				fprintf(stderr, "%4.1f*",
232103a8feaSLen Brown 					1.0 * p->tsc /
233103a8feaSLen Brown 					units * p->aperf /
234103a8feaSLen Brown 					p->mperf / interval_float);
235103a8feaSLen Brown 			}
236103a8feaSLen Brown 		}
237103a8feaSLen Brown 	}
238103a8feaSLen Brown 
239103a8feaSLen Brown 	/* TSC */
240103a8feaSLen Brown 	fprintf(stderr, "%5.2f", 1.0 * p->tsc/units/interval_float);
241103a8feaSLen Brown 
242103a8feaSLen Brown 	if (do_nhm_cstates) {
243103a8feaSLen Brown 		if (!skip_c1)
244103a8feaSLen Brown 			fprintf(stderr, "%7.2f", 100.0 * p->c1/p->tsc);
245103a8feaSLen Brown 		else
246103a8feaSLen Brown 			fprintf(stderr, "   ****");
247103a8feaSLen Brown 	}
248103a8feaSLen Brown 	if (do_nhm_cstates)
249103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->c3/p->tsc);
250103a8feaSLen Brown 	if (do_nhm_cstates)
251103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->c6/p->tsc);
252103a8feaSLen Brown 	if (do_snb_cstates)
253103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->c7/p->tsc);
254103a8feaSLen Brown 	if (do_snb_cstates)
255103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->pc2/p->tsc);
256103a8feaSLen Brown 	if (do_nhm_cstates)
257103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->pc3/p->tsc);
258103a8feaSLen Brown 	if (do_nhm_cstates)
259103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->pc6/p->tsc);
260103a8feaSLen Brown 	if (do_snb_cstates)
261103a8feaSLen Brown 		fprintf(stderr, "%7.2f", 100.0 * p->pc7/p->tsc);
262103a8feaSLen Brown 	if (extra_msr_offset)
263103a8feaSLen Brown 		fprintf(stderr, "  0x%016llx", p->extra_msr);
264103a8feaSLen Brown 	putc('\n', stderr);
265103a8feaSLen Brown }
266103a8feaSLen Brown 
267a829eb4dSLen Brown void print_counters(struct counters *counters)
268103a8feaSLen Brown {
269a829eb4dSLen Brown 	struct counters *cnt;
270103a8feaSLen Brown 
271103a8feaSLen Brown 	print_header();
272103a8feaSLen Brown 
273103a8feaSLen Brown 	if (num_cpus > 1)
274a829eb4dSLen Brown 		print_cnt(cnt_average);
275103a8feaSLen Brown 
276a829eb4dSLen Brown 	for (cnt = counters; cnt != NULL; cnt = cnt->next)
277a829eb4dSLen Brown 		print_cnt(cnt);
278103a8feaSLen Brown 
279103a8feaSLen Brown }
280103a8feaSLen Brown 
281103a8feaSLen Brown #define SUBTRACT_COUNTER(after, before, delta) (delta = (after - before), (before > after))
282103a8feaSLen Brown 
283a829eb4dSLen Brown int compute_delta(struct counters *after,
284a829eb4dSLen Brown 	struct counters *before, struct counters *delta)
285103a8feaSLen Brown {
286103a8feaSLen Brown 	int errors = 0;
287103a8feaSLen Brown 	int perf_err = 0;
288103a8feaSLen Brown 
289103a8feaSLen Brown 	skip_c0 = skip_c1 = 0;
290103a8feaSLen Brown 
291103a8feaSLen Brown 	for ( ; after && before && delta;
292103a8feaSLen Brown 		after = after->next, before = before->next, delta = delta->next) {
293103a8feaSLen Brown 		if (before->cpu != after->cpu) {
294103a8feaSLen Brown 			printf("cpu configuration changed: %d != %d\n",
295103a8feaSLen Brown 				before->cpu, after->cpu);
296103a8feaSLen Brown 			return -1;
297103a8feaSLen Brown 		}
298103a8feaSLen Brown 
299103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->tsc, before->tsc, delta->tsc)) {
300103a8feaSLen Brown 			fprintf(stderr, "cpu%d TSC went backwards %llX to %llX\n",
301103a8feaSLen Brown 				before->cpu, before->tsc, after->tsc);
302103a8feaSLen Brown 			errors++;
303103a8feaSLen Brown 		}
304103a8feaSLen Brown 		/* check for TSC < 1 Mcycles over interval */
305103a8feaSLen Brown 		if (delta->tsc < (1000 * 1000)) {
306103a8feaSLen Brown 			fprintf(stderr, "Insanely slow TSC rate,"
307103a8feaSLen Brown 				" TSC stops in idle?\n");
308103a8feaSLen Brown 			fprintf(stderr, "You can disable all c-states"
309103a8feaSLen Brown 				" by booting with \"idle=poll\"\n");
310103a8feaSLen Brown 			fprintf(stderr, "or just the deep ones with"
311103a8feaSLen Brown 				" \"processor.max_cstate=1\"\n");
312103a8feaSLen Brown 			exit(-3);
313103a8feaSLen Brown 		}
314103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c3, before->c3, delta->c3)) {
315103a8feaSLen Brown 			fprintf(stderr, "cpu%d c3 counter went backwards %llX to %llX\n",
316103a8feaSLen Brown 				before->cpu, before->c3, after->c3);
317103a8feaSLen Brown 			errors++;
318103a8feaSLen Brown 		}
319103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c6, before->c6, delta->c6)) {
320103a8feaSLen Brown 			fprintf(stderr, "cpu%d c6 counter went backwards %llX to %llX\n",
321103a8feaSLen Brown 				before->cpu, before->c6, after->c6);
322103a8feaSLen Brown 			errors++;
323103a8feaSLen Brown 		}
324103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->c7, before->c7, delta->c7)) {
325103a8feaSLen Brown 			fprintf(stderr, "cpu%d c7 counter went backwards %llX to %llX\n",
326103a8feaSLen Brown 				before->cpu, before->c7, after->c7);
327103a8feaSLen Brown 			errors++;
328103a8feaSLen Brown 		}
329103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc2, before->pc2, delta->pc2)) {
330103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc2 counter went backwards %llX to %llX\n",
331103a8feaSLen Brown 				before->cpu, before->pc2, after->pc2);
332103a8feaSLen Brown 			errors++;
333103a8feaSLen Brown 		}
334103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc3, before->pc3, delta->pc3)) {
335103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc3 counter went backwards %llX to %llX\n",
336103a8feaSLen Brown 				before->cpu, before->pc3, after->pc3);
337103a8feaSLen Brown 			errors++;
338103a8feaSLen Brown 		}
339103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc6, before->pc6, delta->pc6)) {
340103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc6 counter went backwards %llX to %llX\n",
341103a8feaSLen Brown 				before->cpu, before->pc6, after->pc6);
342103a8feaSLen Brown 			errors++;
343103a8feaSLen Brown 		}
344103a8feaSLen Brown 		if (SUBTRACT_COUNTER(after->pc7, before->pc7, delta->pc7)) {
345103a8feaSLen Brown 			fprintf(stderr, "cpu%d pc7 counter went backwards %llX to %llX\n",
346103a8feaSLen Brown 				before->cpu, before->pc7, after->pc7);
347103a8feaSLen Brown 			errors++;
348103a8feaSLen Brown 		}
349103a8feaSLen Brown 
350103a8feaSLen Brown 		perf_err = SUBTRACT_COUNTER(after->aperf, before->aperf, delta->aperf);
351103a8feaSLen Brown 		if (perf_err) {
352103a8feaSLen Brown 			fprintf(stderr, "cpu%d aperf counter went backwards %llX to %llX\n",
353103a8feaSLen Brown 				before->cpu, before->aperf, after->aperf);
354103a8feaSLen Brown 		}
355103a8feaSLen Brown 		perf_err |= SUBTRACT_COUNTER(after->mperf, before->mperf, delta->mperf);
356103a8feaSLen Brown 		if (perf_err) {
357103a8feaSLen Brown 			fprintf(stderr, "cpu%d mperf counter went backwards %llX to %llX\n",
358103a8feaSLen Brown 				before->cpu, before->mperf, after->mperf);
359103a8feaSLen Brown 		}
360103a8feaSLen Brown 		if (perf_err) {
361103a8feaSLen Brown 			if (!aperf_mperf_unstable) {
362103a8feaSLen Brown 				fprintf(stderr, "%s: APERF or MPERF went backwards *\n", progname);
363103a8feaSLen Brown 				fprintf(stderr, "* Frequency results do not cover entire interval *\n");
364103a8feaSLen Brown 				fprintf(stderr, "* fix this by running Linux-2.6.30 or later *\n");
365103a8feaSLen Brown 
366103a8feaSLen Brown 				aperf_mperf_unstable = 1;
367103a8feaSLen Brown 			}
368103a8feaSLen Brown 			/*
369103a8feaSLen Brown 			 * mperf delta is likely a huge "positive" number
370103a8feaSLen Brown 			 * can not use it for calculating c0 time
371103a8feaSLen Brown 			 */
372103a8feaSLen Brown 			skip_c0 = 1;
373103a8feaSLen Brown 			skip_c1 = 1;
374103a8feaSLen Brown 		}
375103a8feaSLen Brown 
376103a8feaSLen Brown 		/*
377103a8feaSLen Brown 		 * As mperf and tsc collection are not atomic,
378103a8feaSLen Brown 		 * it is possible for mperf's non-halted cycles
379103a8feaSLen Brown 		 * to exceed TSC's all cycles: show c1 = 0% in that case.
380103a8feaSLen Brown 		 */
381103a8feaSLen Brown 		if (delta->mperf > delta->tsc)
382103a8feaSLen Brown 			delta->c1 = 0;
383103a8feaSLen Brown 		else /* normal case, derive c1 */
384103a8feaSLen Brown 			delta->c1 = delta->tsc - delta->mperf
385103a8feaSLen Brown 				- delta->c3 - delta->c6 - delta->c7;
386103a8feaSLen Brown 
387103a8feaSLen Brown 		if (delta->mperf == 0)
388103a8feaSLen Brown 			delta->mperf = 1;	/* divide by 0 protection */
389103a8feaSLen Brown 
390103a8feaSLen Brown 		/*
391103a8feaSLen Brown 		 * for "extra msr", just copy the latest w/o subtracting
392103a8feaSLen Brown 		 */
393103a8feaSLen Brown 		delta->extra_msr = after->extra_msr;
394103a8feaSLen Brown 		if (errors) {
395103a8feaSLen Brown 			fprintf(stderr, "ERROR cpu%d before:\n", before->cpu);
396a829eb4dSLen Brown 			dump_cnt(before);
397103a8feaSLen Brown 			fprintf(stderr, "ERROR cpu%d after:\n", before->cpu);
398a829eb4dSLen Brown 			dump_cnt(after);
399103a8feaSLen Brown 			errors = 0;
400103a8feaSLen Brown 		}
401103a8feaSLen Brown 	}
402103a8feaSLen Brown 	return 0;
403103a8feaSLen Brown }
404103a8feaSLen Brown 
405a829eb4dSLen Brown void compute_average(struct counters *delta, struct counters *avg)
406103a8feaSLen Brown {
407a829eb4dSLen Brown 	struct counters *sum;
408103a8feaSLen Brown 
409a829eb4dSLen Brown 	sum = calloc(1, sizeof(struct counters));
410103a8feaSLen Brown 	if (sum == NULL) {
411103a8feaSLen Brown 		perror("calloc sum");
412103a8feaSLen Brown 		exit(1);
413103a8feaSLen Brown 	}
414103a8feaSLen Brown 
415103a8feaSLen Brown 	for (; delta; delta = delta->next) {
416103a8feaSLen Brown 		sum->tsc += delta->tsc;
417103a8feaSLen Brown 		sum->c1 += delta->c1;
418103a8feaSLen Brown 		sum->c3 += delta->c3;
419103a8feaSLen Brown 		sum->c6 += delta->c6;
420103a8feaSLen Brown 		sum->c7 += delta->c7;
421103a8feaSLen Brown 		sum->aperf += delta->aperf;
422103a8feaSLen Brown 		sum->mperf += delta->mperf;
423103a8feaSLen Brown 		sum->pc2 += delta->pc2;
424103a8feaSLen Brown 		sum->pc3 += delta->pc3;
425103a8feaSLen Brown 		sum->pc6 += delta->pc6;
426103a8feaSLen Brown 		sum->pc7 += delta->pc7;
427103a8feaSLen Brown 	}
428103a8feaSLen Brown 	avg->tsc = sum->tsc/num_cpus;
429103a8feaSLen Brown 	avg->c1 = sum->c1/num_cpus;
430103a8feaSLen Brown 	avg->c3 = sum->c3/num_cpus;
431103a8feaSLen Brown 	avg->c6 = sum->c6/num_cpus;
432103a8feaSLen Brown 	avg->c7 = sum->c7/num_cpus;
433103a8feaSLen Brown 	avg->aperf = sum->aperf/num_cpus;
434103a8feaSLen Brown 	avg->mperf = sum->mperf/num_cpus;
435103a8feaSLen Brown 	avg->pc2 = sum->pc2/num_cpus;
436103a8feaSLen Brown 	avg->pc3 = sum->pc3/num_cpus;
437103a8feaSLen Brown 	avg->pc6 = sum->pc6/num_cpus;
438103a8feaSLen Brown 	avg->pc7 = sum->pc7/num_cpus;
439103a8feaSLen Brown 
440103a8feaSLen Brown 	free(sum);
441103a8feaSLen Brown }
442103a8feaSLen Brown 
443a829eb4dSLen Brown void get_counters(struct counters *cnt)
444103a8feaSLen Brown {
445a829eb4dSLen Brown 	for ( ; cnt; cnt = cnt->next) {
446a829eb4dSLen Brown 		cnt->tsc = get_msr(cnt->cpu, MSR_TSC);
447103a8feaSLen Brown 		if (do_nhm_cstates)
448a829eb4dSLen Brown 			cnt->c3 = get_msr(cnt->cpu, MSR_CORE_C3_RESIDENCY);
449103a8feaSLen Brown 		if (do_nhm_cstates)
450a829eb4dSLen Brown 			cnt->c6 = get_msr(cnt->cpu, MSR_CORE_C6_RESIDENCY);
451103a8feaSLen Brown 		if (do_snb_cstates)
452a829eb4dSLen Brown 			cnt->c7 = get_msr(cnt->cpu, MSR_CORE_C7_RESIDENCY);
453103a8feaSLen Brown 		if (has_aperf)
454a829eb4dSLen Brown 			cnt->aperf = get_msr(cnt->cpu, MSR_APERF);
455103a8feaSLen Brown 		if (has_aperf)
456a829eb4dSLen Brown 			cnt->mperf = get_msr(cnt->cpu, MSR_MPERF);
457103a8feaSLen Brown 		if (do_snb_cstates)
458a829eb4dSLen Brown 			cnt->pc2 = get_msr(cnt->cpu, MSR_PKG_C2_RESIDENCY);
459103a8feaSLen Brown 		if (do_nhm_cstates)
460a829eb4dSLen Brown 			cnt->pc3 = get_msr(cnt->cpu, MSR_PKG_C3_RESIDENCY);
461103a8feaSLen Brown 		if (do_nhm_cstates)
462a829eb4dSLen Brown 			cnt->pc6 = get_msr(cnt->cpu, MSR_PKG_C6_RESIDENCY);
463103a8feaSLen Brown 		if (do_snb_cstates)
464a829eb4dSLen Brown 			cnt->pc7 = get_msr(cnt->cpu, MSR_PKG_C7_RESIDENCY);
465103a8feaSLen Brown 		if (extra_msr_offset)
466a829eb4dSLen Brown 			cnt->extra_msr = get_msr(cnt->cpu, extra_msr_offset);
467103a8feaSLen Brown 	}
468103a8feaSLen Brown }
469103a8feaSLen Brown 
470a829eb4dSLen Brown void print_nehalem_info(void)
471103a8feaSLen Brown {
472103a8feaSLen Brown 	unsigned long long msr;
473103a8feaSLen Brown 	unsigned int ratio;
474103a8feaSLen Brown 
475103a8feaSLen Brown 	if (!do_nehalem_platform_info)
476103a8feaSLen Brown 		return;
477103a8feaSLen Brown 
478103a8feaSLen Brown 	msr = get_msr(0, MSR_NEHALEM_PLATFORM_INFO);
479103a8feaSLen Brown 
480103a8feaSLen Brown 	ratio = (msr >> 40) & 0xFF;
481103a8feaSLen Brown 	fprintf(stderr, "%d * %.0f = %.0f MHz max efficiency\n",
482103a8feaSLen Brown 		ratio, bclk, ratio * bclk);
483103a8feaSLen Brown 
484103a8feaSLen Brown 	ratio = (msr >> 8) & 0xFF;
485103a8feaSLen Brown 	fprintf(stderr, "%d * %.0f = %.0f MHz TSC frequency\n",
486103a8feaSLen Brown 		ratio, bclk, ratio * bclk);
487103a8feaSLen Brown 
488103a8feaSLen Brown 	if (verbose > 1)
489103a8feaSLen Brown 		fprintf(stderr, "MSR_NEHALEM_PLATFORM_INFO: 0x%llx\n", msr);
490103a8feaSLen Brown 
491103a8feaSLen Brown 	if (!do_nehalem_turbo_ratio_limit)
492103a8feaSLen Brown 		return;
493103a8feaSLen Brown 
494103a8feaSLen Brown 	msr = get_msr(0, MSR_NEHALEM_TURBO_RATIO_LIMIT);
495103a8feaSLen Brown 
496103a8feaSLen Brown 	ratio = (msr >> 24) & 0xFF;
497103a8feaSLen Brown 	if (ratio)
498103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
499103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
500103a8feaSLen Brown 
501103a8feaSLen Brown 	ratio = (msr >> 16) & 0xFF;
502103a8feaSLen Brown 	if (ratio)
503103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
504103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
505103a8feaSLen Brown 
506103a8feaSLen Brown 	ratio = (msr >> 8) & 0xFF;
507103a8feaSLen Brown 	if (ratio)
508103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
509103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
510103a8feaSLen Brown 
511103a8feaSLen Brown 	ratio = (msr >> 0) & 0xFF;
512103a8feaSLen Brown 	if (ratio)
513103a8feaSLen Brown 		fprintf(stderr, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
514103a8feaSLen Brown 			ratio, bclk, ratio * bclk);
515103a8feaSLen Brown 
516103a8feaSLen Brown }
517103a8feaSLen Brown 
518a829eb4dSLen Brown void free_counter_list(struct counters *list)
519103a8feaSLen Brown {
520a829eb4dSLen Brown 	struct counters *p;
521103a8feaSLen Brown 
522103a8feaSLen Brown 	for (p = list; p; ) {
523a829eb4dSLen Brown 		struct counters *free_me;
524103a8feaSLen Brown 
525103a8feaSLen Brown 		free_me = p;
526103a8feaSLen Brown 		p = p->next;
527103a8feaSLen Brown 		free(free_me);
528103a8feaSLen Brown 	}
529103a8feaSLen Brown }
530103a8feaSLen Brown 
531103a8feaSLen Brown void free_all_counters(void)
532103a8feaSLen Brown {
533a829eb4dSLen Brown 	free_counter_list(cnt_even);
534a829eb4dSLen Brown 	cnt_even = NULL;
535103a8feaSLen Brown 
536a829eb4dSLen Brown 	free_counter_list(cnt_odd);
537a829eb4dSLen Brown 	cnt_odd = NULL;
538103a8feaSLen Brown 
539a829eb4dSLen Brown 	free_counter_list(cnt_delta);
540a829eb4dSLen Brown 	cnt_delta = NULL;
541103a8feaSLen Brown 
542a829eb4dSLen Brown 	free_counter_list(cnt_average);
543a829eb4dSLen Brown 	cnt_average = NULL;
544103a8feaSLen Brown }
545103a8feaSLen Brown 
546a829eb4dSLen Brown void insert_counters(struct counters **list,
547a829eb4dSLen Brown 	struct counters *new)
548103a8feaSLen Brown {
549a829eb4dSLen Brown 	struct counters *prev;
550103a8feaSLen Brown 
551103a8feaSLen Brown 	/*
552103a8feaSLen Brown 	 * list was empty
553103a8feaSLen Brown 	 */
554103a8feaSLen Brown 	if (*list == NULL) {
555103a8feaSLen Brown 		new->next = *list;
556103a8feaSLen Brown 		*list = new;
557103a8feaSLen Brown 		return;
558103a8feaSLen Brown 	}
559103a8feaSLen Brown 
560103a8feaSLen Brown 	show_cpu = 1;	/* there is more than one CPU */
561103a8feaSLen Brown 
562103a8feaSLen Brown 	/*
563103a8feaSLen Brown 	 * insert on front of list.
564103a8feaSLen Brown 	 * It is sorted by ascending package#, core#, cpu#
565103a8feaSLen Brown 	 */
566103a8feaSLen Brown 	if (((*list)->pkg > new->pkg) ||
567103a8feaSLen Brown 	    (((*list)->pkg == new->pkg) && ((*list)->core > new->core)) ||
568103a8feaSLen Brown 	    (((*list)->pkg == new->pkg) && ((*list)->core == new->core) && ((*list)->cpu > new->cpu))) {
569103a8feaSLen Brown 		new->next = *list;
570103a8feaSLen Brown 		*list = new;
571103a8feaSLen Brown 		return;
572103a8feaSLen Brown 	}
573103a8feaSLen Brown 
574103a8feaSLen Brown 	prev = *list;
575103a8feaSLen Brown 
576103a8feaSLen Brown 	while (prev->next && (prev->next->pkg < new->pkg)) {
577103a8feaSLen Brown 		prev = prev->next;
578103a8feaSLen Brown 		show_pkg = 1;	/* there is more than 1 package */
579103a8feaSLen Brown 	}
580103a8feaSLen Brown 
581103a8feaSLen Brown 	while (prev->next && (prev->next->pkg == new->pkg)
582103a8feaSLen Brown 		&& (prev->next->core < new->core)) {
583103a8feaSLen Brown 		prev = prev->next;
584103a8feaSLen Brown 		show_core = 1;	/* there is more than 1 core */
585103a8feaSLen Brown 	}
586103a8feaSLen Brown 
587103a8feaSLen Brown 	while (prev->next && (prev->next->pkg == new->pkg)
588103a8feaSLen Brown 		&& (prev->next->core == new->core)
589103a8feaSLen Brown 		&& (prev->next->cpu < new->cpu)) {
590103a8feaSLen Brown 		prev = prev->next;
591103a8feaSLen Brown 	}
592103a8feaSLen Brown 
593103a8feaSLen Brown 	/*
594103a8feaSLen Brown 	 * insert after "prev"
595103a8feaSLen Brown 	 */
596103a8feaSLen Brown 	new->next = prev->next;
597103a8feaSLen Brown 	prev->next = new;
598103a8feaSLen Brown }
599103a8feaSLen Brown 
600a829eb4dSLen Brown void alloc_new_counters(int pkg, int core, int cpu)
601103a8feaSLen Brown {
602a829eb4dSLen Brown 	struct counters *new;
603103a8feaSLen Brown 
604103a8feaSLen Brown 	if (verbose > 1)
605103a8feaSLen Brown 		printf("pkg%d core%d, cpu%d\n", pkg, core, cpu);
606103a8feaSLen Brown 
607a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
608103a8feaSLen Brown 	if (new == NULL) {
609103a8feaSLen Brown 		perror("calloc");
610103a8feaSLen Brown 		exit(1);
611103a8feaSLen Brown 	}
612103a8feaSLen Brown 	new->pkg = pkg;
613103a8feaSLen Brown 	new->core = core;
614103a8feaSLen Brown 	new->cpu = cpu;
615a829eb4dSLen Brown 	insert_counters(&cnt_odd, new);
616103a8feaSLen Brown 
617a829eb4dSLen Brown 	new = (struct counters *)calloc(1,
618a829eb4dSLen Brown 		sizeof(struct counters));
619103a8feaSLen Brown 	if (new == NULL) {
620103a8feaSLen Brown 		perror("calloc");
621103a8feaSLen Brown 		exit(1);
622103a8feaSLen Brown 	}
623103a8feaSLen Brown 	new->pkg = pkg;
624103a8feaSLen Brown 	new->core = core;
625103a8feaSLen Brown 	new->cpu = cpu;
626a829eb4dSLen Brown 	insert_counters(&cnt_even, new);
627103a8feaSLen Brown 
628a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
629103a8feaSLen Brown 	if (new == NULL) {
630103a8feaSLen Brown 		perror("calloc");
631103a8feaSLen Brown 		exit(1);
632103a8feaSLen Brown 	}
633103a8feaSLen Brown 	new->pkg = pkg;
634103a8feaSLen Brown 	new->core = core;
635103a8feaSLen Brown 	new->cpu = cpu;
636a829eb4dSLen Brown 	insert_counters(&cnt_delta, new);
637103a8feaSLen Brown 
638a829eb4dSLen Brown 	new = (struct counters *)calloc(1, sizeof(struct counters));
639103a8feaSLen Brown 	if (new == NULL) {
640103a8feaSLen Brown 		perror("calloc");
641103a8feaSLen Brown 		exit(1);
642103a8feaSLen Brown 	}
643103a8feaSLen Brown 	new->pkg = pkg;
644103a8feaSLen Brown 	new->core = core;
645103a8feaSLen Brown 	new->cpu = cpu;
646a829eb4dSLen Brown 	cnt_average = new;
647103a8feaSLen Brown }
648103a8feaSLen Brown 
649103a8feaSLen Brown int get_physical_package_id(int cpu)
650103a8feaSLen Brown {
651103a8feaSLen Brown 	char path[64];
652103a8feaSLen Brown 	FILE *filep;
653103a8feaSLen Brown 	int pkg;
654103a8feaSLen Brown 
655103a8feaSLen Brown 	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
656103a8feaSLen Brown 	filep = fopen(path, "r");
657103a8feaSLen Brown 	if (filep == NULL) {
658103a8feaSLen Brown 		perror(path);
659103a8feaSLen Brown 		exit(1);
660103a8feaSLen Brown 	}
661103a8feaSLen Brown 	fscanf(filep, "%d", &pkg);
662103a8feaSLen Brown 	fclose(filep);
663103a8feaSLen Brown 	return pkg;
664103a8feaSLen Brown }
665103a8feaSLen Brown 
666103a8feaSLen Brown int get_core_id(int cpu)
667103a8feaSLen Brown {
668103a8feaSLen Brown 	char path[64];
669103a8feaSLen Brown 	FILE *filep;
670103a8feaSLen Brown 	int core;
671103a8feaSLen Brown 
672103a8feaSLen Brown 	sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
673103a8feaSLen Brown 	filep = fopen(path, "r");
674103a8feaSLen Brown 	if (filep == NULL) {
675103a8feaSLen Brown 		perror(path);
676103a8feaSLen Brown 		exit(1);
677103a8feaSLen Brown 	}
678103a8feaSLen Brown 	fscanf(filep, "%d", &core);
679103a8feaSLen Brown 	fclose(filep);
680103a8feaSLen Brown 	return core;
681103a8feaSLen Brown }
682103a8feaSLen Brown 
683103a8feaSLen Brown /*
684103a8feaSLen Brown  * run func(index, cpu) on every cpu in /proc/stat
685103a8feaSLen Brown  */
686103a8feaSLen Brown 
687103a8feaSLen Brown int for_all_cpus(void (func)(int, int, int))
688103a8feaSLen Brown {
689103a8feaSLen Brown 	FILE *fp;
690103a8feaSLen Brown 	int cpu_count;
691103a8feaSLen Brown 	int retval;
692103a8feaSLen Brown 
693103a8feaSLen Brown 	fp = fopen(proc_stat, "r");
694103a8feaSLen Brown 	if (fp == NULL) {
695103a8feaSLen Brown 		perror(proc_stat);
696103a8feaSLen Brown 		exit(1);
697103a8feaSLen Brown 	}
698103a8feaSLen Brown 
699103a8feaSLen Brown 	retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
700103a8feaSLen Brown 	if (retval != 0) {
701103a8feaSLen Brown 		perror("/proc/stat format");
702103a8feaSLen Brown 		exit(1);
703103a8feaSLen Brown 	}
704103a8feaSLen Brown 
705103a8feaSLen Brown 	for (cpu_count = 0; ; cpu_count++) {
706103a8feaSLen Brown 		int cpu;
707103a8feaSLen Brown 
708103a8feaSLen Brown 		retval = fscanf(fp, "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu);
709103a8feaSLen Brown 		if (retval != 1)
710103a8feaSLen Brown 			break;
711103a8feaSLen Brown 
712103a8feaSLen Brown 		func(get_physical_package_id(cpu), get_core_id(cpu), cpu);
713103a8feaSLen Brown 	}
714103a8feaSLen Brown 	fclose(fp);
715103a8feaSLen Brown 	return cpu_count;
716103a8feaSLen Brown }
717103a8feaSLen Brown 
718103a8feaSLen Brown void re_initialize(void)
719103a8feaSLen Brown {
720103a8feaSLen Brown 	printf("turbostat: topology changed, re-initializing.\n");
721103a8feaSLen Brown 	free_all_counters();
722a829eb4dSLen Brown 	num_cpus = for_all_cpus(alloc_new_counters);
723103a8feaSLen Brown 	need_reinitialize = 0;
724103a8feaSLen Brown 	printf("num_cpus is now %d\n", num_cpus);
725103a8feaSLen Brown }
726103a8feaSLen Brown 
727103a8feaSLen Brown void dummy(int pkg, int core, int cpu) { return; }
728103a8feaSLen Brown /*
729103a8feaSLen Brown  * check to see if a cpu came on-line
730103a8feaSLen Brown  */
731a829eb4dSLen Brown void verify_num_cpus(void)
732103a8feaSLen Brown {
733103a8feaSLen Brown 	int new_num_cpus;
734103a8feaSLen Brown 
735103a8feaSLen Brown 	new_num_cpus = for_all_cpus(dummy);
736103a8feaSLen Brown 
737103a8feaSLen Brown 	if (new_num_cpus != num_cpus) {
738103a8feaSLen Brown 		if (verbose)
739103a8feaSLen Brown 			printf("num_cpus was %d, is now  %d\n",
740103a8feaSLen Brown 				num_cpus, new_num_cpus);
741103a8feaSLen Brown 		need_reinitialize = 1;
742103a8feaSLen Brown 	}
743103a8feaSLen Brown }
744103a8feaSLen Brown 
745103a8feaSLen Brown void turbostat_loop()
746103a8feaSLen Brown {
747103a8feaSLen Brown restart:
748a829eb4dSLen Brown 	get_counters(cnt_even);
749103a8feaSLen Brown 	gettimeofday(&tv_even, (struct timezone *)NULL);
750103a8feaSLen Brown 
751103a8feaSLen Brown 	while (1) {
752103a8feaSLen Brown 		verify_num_cpus();
753103a8feaSLen Brown 		if (need_reinitialize) {
754103a8feaSLen Brown 			re_initialize();
755103a8feaSLen Brown 			goto restart;
756103a8feaSLen Brown 		}
757103a8feaSLen Brown 		sleep(interval_sec);
758a829eb4dSLen Brown 		get_counters(cnt_odd);
759103a8feaSLen Brown 		gettimeofday(&tv_odd, (struct timezone *)NULL);
760103a8feaSLen Brown 
761a829eb4dSLen Brown 		compute_delta(cnt_odd, cnt_even, cnt_delta);
762103a8feaSLen Brown 		timersub(&tv_odd, &tv_even, &tv_delta);
763a829eb4dSLen Brown 		compute_average(cnt_delta, cnt_average);
764a829eb4dSLen Brown 		print_counters(cnt_delta);
765103a8feaSLen Brown 		if (need_reinitialize) {
766103a8feaSLen Brown 			re_initialize();
767103a8feaSLen Brown 			goto restart;
768103a8feaSLen Brown 		}
769103a8feaSLen Brown 		sleep(interval_sec);
770a829eb4dSLen Brown 		get_counters(cnt_even);
771103a8feaSLen Brown 		gettimeofday(&tv_even, (struct timezone *)NULL);
772a829eb4dSLen Brown 		compute_delta(cnt_even, cnt_odd, cnt_delta);
773103a8feaSLen Brown 		timersub(&tv_even, &tv_odd, &tv_delta);
774a829eb4dSLen Brown 		compute_average(cnt_delta, cnt_average);
775a829eb4dSLen Brown 		print_counters(cnt_delta);
776103a8feaSLen Brown 	}
777103a8feaSLen Brown }
778103a8feaSLen Brown 
779103a8feaSLen Brown void check_dev_msr()
780103a8feaSLen Brown {
781103a8feaSLen Brown 	struct stat sb;
782103a8feaSLen Brown 
783103a8feaSLen Brown 	if (stat("/dev/cpu/0/msr", &sb)) {
784103a8feaSLen Brown 		fprintf(stderr, "no /dev/cpu/0/msr\n");
785103a8feaSLen Brown 		fprintf(stderr, "Try \"# modprobe msr\"\n");
786103a8feaSLen Brown 		exit(-5);
787103a8feaSLen Brown 	}
788103a8feaSLen Brown }
789103a8feaSLen Brown 
790103a8feaSLen Brown void check_super_user()
791103a8feaSLen Brown {
792103a8feaSLen Brown 	if (getuid() != 0) {
793103a8feaSLen Brown 		fprintf(stderr, "must be root\n");
794103a8feaSLen Brown 		exit(-6);
795103a8feaSLen Brown 	}
796103a8feaSLen Brown }
797103a8feaSLen Brown 
798103a8feaSLen Brown int has_nehalem_turbo_ratio_limit(unsigned int family, unsigned int model)
799103a8feaSLen Brown {
800103a8feaSLen Brown 	if (!genuine_intel)
801103a8feaSLen Brown 		return 0;
802103a8feaSLen Brown 
803103a8feaSLen Brown 	if (family != 6)
804103a8feaSLen Brown 		return 0;
805103a8feaSLen Brown 
806103a8feaSLen Brown 	switch (model) {
807103a8feaSLen Brown 	case 0x1A:	/* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
808103a8feaSLen Brown 	case 0x1E:	/* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
809103a8feaSLen Brown 	case 0x1F:	/* Core i7 and i5 Processor - Nehalem */
810103a8feaSLen Brown 	case 0x25:	/* Westmere Client - Clarkdale, Arrandale */
811103a8feaSLen Brown 	case 0x2C:	/* Westmere EP - Gulftown */
812103a8feaSLen Brown 	case 0x2A:	/* SNB */
813103a8feaSLen Brown 	case 0x2D:	/* SNB Xeon */
814103a8feaSLen Brown 		return 1;
815103a8feaSLen Brown 	case 0x2E:	/* Nehalem-EX Xeon - Beckton */
816103a8feaSLen Brown 	case 0x2F:	/* Westmere-EX Xeon - Eagleton */
817103a8feaSLen Brown 	default:
818103a8feaSLen Brown 		return 0;
819103a8feaSLen Brown 	}
820103a8feaSLen Brown }
821103a8feaSLen Brown 
822103a8feaSLen Brown int is_snb(unsigned int family, unsigned int model)
823103a8feaSLen Brown {
824103a8feaSLen Brown 	if (!genuine_intel)
825103a8feaSLen Brown 		return 0;
826103a8feaSLen Brown 
827103a8feaSLen Brown 	switch (model) {
828103a8feaSLen Brown 	case 0x2A:
829103a8feaSLen Brown 	case 0x2D:
830103a8feaSLen Brown 		return 1;
831103a8feaSLen Brown 	}
832103a8feaSLen Brown 	return 0;
833103a8feaSLen Brown }
834103a8feaSLen Brown 
835103a8feaSLen Brown double discover_bclk(unsigned int family, unsigned int model)
836103a8feaSLen Brown {
837103a8feaSLen Brown 	if (is_snb(family, model))
838103a8feaSLen Brown 		return 100.00;
839103a8feaSLen Brown 	else
840103a8feaSLen Brown 		return 133.33;
841103a8feaSLen Brown }
842103a8feaSLen Brown 
843103a8feaSLen Brown void check_cpuid()
844103a8feaSLen Brown {
845103a8feaSLen Brown 	unsigned int eax, ebx, ecx, edx, max_level;
846103a8feaSLen Brown 	unsigned int fms, family, model, stepping;
847103a8feaSLen Brown 
848103a8feaSLen Brown 	eax = ebx = ecx = edx = 0;
849103a8feaSLen Brown 
850103a8feaSLen Brown 	asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0));
851103a8feaSLen Brown 
852103a8feaSLen Brown 	if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
853103a8feaSLen Brown 		genuine_intel = 1;
854103a8feaSLen Brown 
855103a8feaSLen Brown 	if (verbose)
856103a8feaSLen Brown 		fprintf(stderr, "%.4s%.4s%.4s ",
857103a8feaSLen Brown 			(char *)&ebx, (char *)&edx, (char *)&ecx);
858103a8feaSLen Brown 
859103a8feaSLen Brown 	asm("cpuid" : "=a" (fms), "=c" (ecx), "=d" (edx) : "a" (1) : "ebx");
860103a8feaSLen Brown 	family = (fms >> 8) & 0xf;
861103a8feaSLen Brown 	model = (fms >> 4) & 0xf;
862103a8feaSLen Brown 	stepping = fms & 0xf;
863103a8feaSLen Brown 	if (family == 6 || family == 0xf)
864103a8feaSLen Brown 		model += ((fms >> 16) & 0xf) << 4;
865103a8feaSLen Brown 
866103a8feaSLen Brown 	if (verbose)
867103a8feaSLen Brown 		fprintf(stderr, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
868103a8feaSLen Brown 			max_level, family, model, stepping, family, model, stepping);
869103a8feaSLen Brown 
870103a8feaSLen Brown 	if (!(edx & (1 << 5))) {
871103a8feaSLen Brown 		fprintf(stderr, "CPUID: no MSR\n");
872103a8feaSLen Brown 		exit(1);
873103a8feaSLen Brown 	}
874103a8feaSLen Brown 
875103a8feaSLen Brown 	/*
876103a8feaSLen Brown 	 * check max extended function levels of CPUID.
877103a8feaSLen Brown 	 * This is needed to check for invariant TSC.
878103a8feaSLen Brown 	 * This check is valid for both Intel and AMD.
879103a8feaSLen Brown 	 */
880103a8feaSLen Brown 	ebx = ecx = edx = 0;
881103a8feaSLen Brown 	asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000000));
882103a8feaSLen Brown 
883103a8feaSLen Brown 	if (max_level < 0x80000007) {
884103a8feaSLen Brown 		fprintf(stderr, "CPUID: no invariant TSC (max_level 0x%x)\n", max_level);
885103a8feaSLen Brown 		exit(1);
886103a8feaSLen Brown 	}
887103a8feaSLen Brown 
888103a8feaSLen Brown 	/*
889103a8feaSLen Brown 	 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
890103a8feaSLen Brown 	 * this check is valid for both Intel and AMD
891103a8feaSLen Brown 	 */
892103a8feaSLen Brown 	asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x80000007));
8938209e054SThomas Renninger 	has_invariant_tsc = edx & (1 << 8);
894103a8feaSLen Brown 
895103a8feaSLen Brown 	if (!has_invariant_tsc) {
896103a8feaSLen Brown 		fprintf(stderr, "No invariant TSC\n");
897103a8feaSLen Brown 		exit(1);
898103a8feaSLen Brown 	}
899103a8feaSLen Brown 
900103a8feaSLen Brown 	/*
901103a8feaSLen Brown 	 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
902103a8feaSLen Brown 	 * this check is valid for both Intel and AMD
903103a8feaSLen Brown 	 */
904103a8feaSLen Brown 
905103a8feaSLen Brown 	asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (0x6));
9068209e054SThomas Renninger 	has_aperf = ecx & (1 << 0);
907103a8feaSLen Brown 	if (!has_aperf) {
908103a8feaSLen Brown 		fprintf(stderr, "No APERF MSR\n");
909103a8feaSLen Brown 		exit(1);
910103a8feaSLen Brown 	}
911103a8feaSLen Brown 
912103a8feaSLen Brown 	do_nehalem_platform_info = genuine_intel && has_invariant_tsc;
913103a8feaSLen Brown 	do_nhm_cstates = genuine_intel;	/* all Intel w/ non-stop TSC have NHM counters */
914103a8feaSLen Brown 	do_snb_cstates = is_snb(family, model);
915103a8feaSLen Brown 	bclk = discover_bclk(family, model);
916103a8feaSLen Brown 
917103a8feaSLen Brown 	do_nehalem_turbo_ratio_limit = has_nehalem_turbo_ratio_limit(family, model);
918103a8feaSLen Brown }
919103a8feaSLen Brown 
920103a8feaSLen Brown 
921103a8feaSLen Brown void usage()
922103a8feaSLen Brown {
923103a8feaSLen Brown 	fprintf(stderr, "%s: [-v] [-M MSR#] [-i interval_sec | command ...]\n",
924103a8feaSLen Brown 		progname);
925103a8feaSLen Brown 	exit(1);
926103a8feaSLen Brown }
927103a8feaSLen Brown 
928103a8feaSLen Brown 
929103a8feaSLen Brown /*
930103a8feaSLen Brown  * in /dev/cpu/ return success for names that are numbers
931103a8feaSLen Brown  * ie. filter out ".", "..", "microcode".
932103a8feaSLen Brown  */
933103a8feaSLen Brown int dir_filter(const struct dirent *dirp)
934103a8feaSLen Brown {
935103a8feaSLen Brown 	if (isdigit(dirp->d_name[0]))
936103a8feaSLen Brown 		return 1;
937103a8feaSLen Brown 	else
938103a8feaSLen Brown 		return 0;
939103a8feaSLen Brown }
940103a8feaSLen Brown 
941103a8feaSLen Brown int open_dev_cpu_msr(int dummy1)
942103a8feaSLen Brown {
943103a8feaSLen Brown 	return 0;
944103a8feaSLen Brown }
945103a8feaSLen Brown 
946103a8feaSLen Brown void turbostat_init()
947103a8feaSLen Brown {
948103a8feaSLen Brown 	check_cpuid();
949103a8feaSLen Brown 
950103a8feaSLen Brown 	check_dev_msr();
951103a8feaSLen Brown 	check_super_user();
952103a8feaSLen Brown 
953a829eb4dSLen Brown 	num_cpus = for_all_cpus(alloc_new_counters);
954103a8feaSLen Brown 
955103a8feaSLen Brown 	if (verbose)
956103a8feaSLen Brown 		print_nehalem_info();
957103a8feaSLen Brown }
958103a8feaSLen Brown 
959103a8feaSLen Brown int fork_it(char **argv)
960103a8feaSLen Brown {
961103a8feaSLen Brown 	int retval;
962103a8feaSLen Brown 	pid_t child_pid;
963a829eb4dSLen Brown 	get_counters(cnt_even);
964103a8feaSLen Brown 	gettimeofday(&tv_even, (struct timezone *)NULL);
965103a8feaSLen Brown 
966103a8feaSLen Brown 	child_pid = fork();
967103a8feaSLen Brown 	if (!child_pid) {
968103a8feaSLen Brown 		/* child */
969103a8feaSLen Brown 		execvp(argv[0], argv);
970103a8feaSLen Brown 	} else {
971103a8feaSLen Brown 		int status;
972103a8feaSLen Brown 
973103a8feaSLen Brown 		/* parent */
974103a8feaSLen Brown 		if (child_pid == -1) {
975103a8feaSLen Brown 			perror("fork");
976103a8feaSLen Brown 			exit(1);
977103a8feaSLen Brown 		}
978103a8feaSLen Brown 
979103a8feaSLen Brown 		signal(SIGINT, SIG_IGN);
980103a8feaSLen Brown 		signal(SIGQUIT, SIG_IGN);
981103a8feaSLen Brown 		if (waitpid(child_pid, &status, 0) == -1) {
982103a8feaSLen Brown 			perror("wait");
983103a8feaSLen Brown 			exit(1);
984103a8feaSLen Brown 		}
985103a8feaSLen Brown 	}
986a829eb4dSLen Brown 	get_counters(cnt_odd);
987103a8feaSLen Brown 	gettimeofday(&tv_odd, (struct timezone *)NULL);
988a829eb4dSLen Brown 	retval = compute_delta(cnt_odd, cnt_even, cnt_delta);
989103a8feaSLen Brown 
990103a8feaSLen Brown 	timersub(&tv_odd, &tv_even, &tv_delta);
991a829eb4dSLen Brown 	compute_average(cnt_delta, cnt_average);
992103a8feaSLen Brown 	if (!retval)
993a829eb4dSLen Brown 		print_counters(cnt_delta);
994103a8feaSLen Brown 
9956eab04a8SJustin P. Mattock 	fprintf(stderr, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
996103a8feaSLen Brown 
997103a8feaSLen Brown 	return 0;
998103a8feaSLen Brown }
999103a8feaSLen Brown 
1000103a8feaSLen Brown void cmdline(int argc, char **argv)
1001103a8feaSLen Brown {
1002103a8feaSLen Brown 	int opt;
1003103a8feaSLen Brown 
1004103a8feaSLen Brown 	progname = argv[0];
1005103a8feaSLen Brown 
1006103a8feaSLen Brown 	while ((opt = getopt(argc, argv, "+vi:M:")) != -1) {
1007103a8feaSLen Brown 		switch (opt) {
1008103a8feaSLen Brown 		case 'v':
1009103a8feaSLen Brown 			verbose++;
1010103a8feaSLen Brown 			break;
1011103a8feaSLen Brown 		case 'i':
1012103a8feaSLen Brown 			interval_sec = atoi(optarg);
1013103a8feaSLen Brown 			break;
1014103a8feaSLen Brown 		case 'M':
1015103a8feaSLen Brown 			sscanf(optarg, "%x", &extra_msr_offset);
1016103a8feaSLen Brown 			if (verbose > 1)
1017103a8feaSLen Brown 				fprintf(stderr, "MSR 0x%X\n", extra_msr_offset);
1018103a8feaSLen Brown 			break;
1019103a8feaSLen Brown 		default:
1020103a8feaSLen Brown 			usage();
1021103a8feaSLen Brown 		}
1022103a8feaSLen Brown 	}
1023103a8feaSLen Brown }
1024103a8feaSLen Brown 
1025103a8feaSLen Brown int main(int argc, char **argv)
1026103a8feaSLen Brown {
1027103a8feaSLen Brown 	cmdline(argc, argv);
1028103a8feaSLen Brown 
1029103a8feaSLen Brown 	if (verbose > 1)
1030103a8feaSLen Brown 		fprintf(stderr, "turbostat Dec 6, 2010"
1031103a8feaSLen Brown 			" - Len Brown <lenb@kernel.org>\n");
1032103a8feaSLen Brown 	if (verbose > 1)
1033103a8feaSLen Brown 		fprintf(stderr, "http://userweb.kernel.org/~lenb/acpi/utils/pmtools/turbostat/\n");
1034103a8feaSLen Brown 
1035103a8feaSLen Brown 	turbostat_init();
1036103a8feaSLen Brown 
1037103a8feaSLen Brown 	/*
1038103a8feaSLen Brown 	 * if any params left, it must be a command to fork
1039103a8feaSLen Brown 	 */
1040103a8feaSLen Brown 	if (argc - optind)
1041103a8feaSLen Brown 		return fork_it(argv + optind);
1042103a8feaSLen Brown 	else
1043103a8feaSLen Brown 		turbostat_loop();
1044103a8feaSLen Brown 
1045103a8feaSLen Brown 	return 0;
1046103a8feaSLen Brown }
1047