tools/power turbostat: Display HWP OOB status
[linux-block.git] / tools / power / x86 / turbostat / turbostat.c
1 /*
2  * turbostat -- show CPU frequency and C-state residency
3  * on modern Intel turbo-capable processors.
4  *
5  * Copyright (c) 2013 Intel Corporation.
6  * Len Brown <len.brown@intel.com>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms and conditions of the GNU General Public License,
10  * version 2, as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
15  * more details.
16  *
17  * You should have received a copy of the GNU General Public License along with
18  * this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #define _GNU_SOURCE
23 #include MSRHEADER
24 #include INTEL_FAMILY_HEADER
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include <err.h>
28 #include <unistd.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <sys/stat.h>
32 #include <sys/resource.h>
33 #include <fcntl.h>
34 #include <signal.h>
35 #include <sys/time.h>
36 #include <stdlib.h>
37 #include <getopt.h>
38 #include <dirent.h>
39 #include <string.h>
40 #include <ctype.h>
41 #include <sched.h>
42 #include <time.h>
43 #include <cpuid.h>
44 #include <linux/capability.h>
45 #include <errno.h>
46
47 char *proc_stat = "/proc/stat";
48 FILE *outf;
49 int *fd_percpu;
50 struct timespec interval_ts = {5, 0};
51 unsigned int debug;
52 unsigned int rapl_joules;
53 unsigned int summary_only;
54 unsigned int dump_only;
55 unsigned int do_nhm_cstates;
56 unsigned int do_snb_cstates;
57 unsigned int do_knl_cstates;
58 unsigned int do_pc2;
59 unsigned int do_pc3;
60 unsigned int do_pc6;
61 unsigned int do_pc7;
62 unsigned int do_c8_c9_c10;
63 unsigned int do_skl_residency;
64 unsigned int do_slm_cstates;
65 unsigned int use_c1_residency_msr;
66 unsigned int has_aperf;
67 unsigned int has_epb;
68 unsigned int do_irtl_snb;
69 unsigned int do_irtl_hsw;
70 unsigned int units = 1000000;   /* MHz etc */
71 unsigned int genuine_intel;
72 unsigned int has_invariant_tsc;
73 unsigned int do_nhm_platform_info;
74 unsigned int extra_msr_offset32;
75 unsigned int extra_msr_offset64;
76 unsigned int extra_delta_offset32;
77 unsigned int extra_delta_offset64;
78 unsigned int aperf_mperf_multiplier = 1;
79 int do_irq = 1;
80 int do_smi;
81 double bclk;
82 double base_hz;
83 unsigned int has_base_hz;
84 double tsc_tweak = 1.0;
85 unsigned int show_pkg;
86 unsigned int show_core;
87 unsigned int show_cpu;
88 unsigned int show_pkg_only;
89 unsigned int show_core_only;
90 char *output_buffer, *outp;
91 unsigned int do_rapl;
92 unsigned int do_dts;
93 unsigned int do_ptm;
94 unsigned int do_gfx_rc6_ms;
95 unsigned long long  gfx_cur_rc6_ms;
96 unsigned int do_gfx_mhz;
97 unsigned int gfx_cur_mhz;
98 unsigned int tcc_activation_temp;
99 unsigned int tcc_activation_temp_override;
100 double rapl_power_units, rapl_time_units;
101 double rapl_dram_energy_units, rapl_energy_units;
102 double rapl_joule_counter_range;
103 unsigned int do_core_perf_limit_reasons;
104 unsigned int do_gfx_perf_limit_reasons;
105 unsigned int do_ring_perf_limit_reasons;
106 unsigned int crystal_hz;
107 unsigned long long tsc_hz;
108 int base_cpu;
109 double discover_bclk(unsigned int family, unsigned int model);
110 unsigned int has_hwp;   /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
111                         /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
112 unsigned int has_hwp_notify;            /* IA32_HWP_INTERRUPT */
113 unsigned int has_hwp_activity_window;   /* IA32_HWP_REQUEST[bits 41:32] */
114 unsigned int has_hwp_epp;               /* IA32_HWP_REQUEST[bits 31:24] */
115 unsigned int has_hwp_pkg;               /* IA32_HWP_REQUEST_PKG */
116
117 #define RAPL_PKG                (1 << 0)
118                                         /* 0x610 MSR_PKG_POWER_LIMIT */
119                                         /* 0x611 MSR_PKG_ENERGY_STATUS */
120 #define RAPL_PKG_PERF_STATUS    (1 << 1)
121                                         /* 0x613 MSR_PKG_PERF_STATUS */
122 #define RAPL_PKG_POWER_INFO     (1 << 2)
123                                         /* 0x614 MSR_PKG_POWER_INFO */
124
125 #define RAPL_DRAM               (1 << 3)
126                                         /* 0x618 MSR_DRAM_POWER_LIMIT */
127                                         /* 0x619 MSR_DRAM_ENERGY_STATUS */
128 #define RAPL_DRAM_PERF_STATUS   (1 << 4)
129                                         /* 0x61b MSR_DRAM_PERF_STATUS */
130 #define RAPL_DRAM_POWER_INFO    (1 << 5)
131                                         /* 0x61c MSR_DRAM_POWER_INFO */
132
133 #define RAPL_CORES_POWER_LIMIT  (1 << 6)
134                                         /* 0x638 MSR_PP0_POWER_LIMIT */
135 #define RAPL_CORE_POLICY        (1 << 7)
136                                         /* 0x63a MSR_PP0_POLICY */
137
138 #define RAPL_GFX                (1 << 8)
139                                         /* 0x640 MSR_PP1_POWER_LIMIT */
140                                         /* 0x641 MSR_PP1_ENERGY_STATUS */
141                                         /* 0x642 MSR_PP1_POLICY */
142
143 #define RAPL_CORES_ENERGY_STATUS        (1 << 9)
144                                         /* 0x639 MSR_PP0_ENERGY_STATUS */
145 #define RAPL_CORES (RAPL_CORES_ENERGY_STATUS | RAPL_CORES_POWER_LIMIT)
146 #define TJMAX_DEFAULT   100
147
148 #define MAX(a, b) ((a) > (b) ? (a) : (b))
149
150 int backwards_count;
151 char *progname;
152
153 cpu_set_t *cpu_present_set, *cpu_affinity_set;
154 size_t cpu_present_setsize, cpu_affinity_setsize;
155
156 struct thread_data {
157         unsigned long long tsc;
158         unsigned long long aperf;
159         unsigned long long mperf;
160         unsigned long long c1;
161         unsigned long long extra_msr64;
162         unsigned long long extra_delta64;
163         unsigned long long extra_msr32;
164         unsigned long long extra_delta32;
165         unsigned int irq_count;
166         unsigned int smi_count;
167         unsigned int cpu_id;
168         unsigned int flags;
169 #define CPU_IS_FIRST_THREAD_IN_CORE     0x2
170 #define CPU_IS_FIRST_CORE_IN_PACKAGE    0x4
171 } *thread_even, *thread_odd;
172
173 struct core_data {
174         unsigned long long c3;
175         unsigned long long c6;
176         unsigned long long c7;
177         unsigned int core_temp_c;
178         unsigned int core_id;
179 } *core_even, *core_odd;
180
181 struct pkg_data {
182         unsigned long long pc2;
183         unsigned long long pc3;
184         unsigned long long pc6;
185         unsigned long long pc7;
186         unsigned long long pc8;
187         unsigned long long pc9;
188         unsigned long long pc10;
189         unsigned long long pkg_wtd_core_c0;
190         unsigned long long pkg_any_core_c0;
191         unsigned long long pkg_any_gfxe_c0;
192         unsigned long long pkg_both_core_gfxe_c0;
193         long long gfx_rc6_ms;
194         unsigned int gfx_mhz;
195         unsigned int package_id;
196         unsigned int energy_pkg;        /* MSR_PKG_ENERGY_STATUS */
197         unsigned int energy_dram;       /* MSR_DRAM_ENERGY_STATUS */
198         unsigned int energy_cores;      /* MSR_PP0_ENERGY_STATUS */
199         unsigned int energy_gfx;        /* MSR_PP1_ENERGY_STATUS */
200         unsigned int rapl_pkg_perf_status;      /* MSR_PKG_PERF_STATUS */
201         unsigned int rapl_dram_perf_status;     /* MSR_DRAM_PERF_STATUS */
202         unsigned int pkg_temp_c;
203
204 } *package_even, *package_odd;
205
206 #define ODD_COUNTERS thread_odd, core_odd, package_odd
207 #define EVEN_COUNTERS thread_even, core_even, package_even
208
209 #define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
210         (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
211                 topo.num_threads_per_core + \
212                 (core_no) * topo.num_threads_per_core + (thread_no))
213 #define GET_CORE(core_base, core_no, pkg_no) \
214         (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
215 #define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
216
217 struct system_summary {
218         struct thread_data threads;
219         struct core_data cores;
220         struct pkg_data packages;
221 } sum, average;
222
223
224 struct topo_params {
225         int num_packages;
226         int num_cpus;
227         int num_cores;
228         int max_cpu_num;
229         int num_cores_per_pkg;
230         int num_threads_per_core;
231 } topo;
232
233 struct timeval tv_even, tv_odd, tv_delta;
234
235 int *irq_column_2_cpu;  /* /proc/interrupts column numbers */
236 int *irqs_per_cpu;              /* indexed by cpu_num */
237
238 void setup_all_buffers(void);
239
240 int cpu_is_not_present(int cpu)
241 {
242         return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
243 }
244 /*
245  * run func(thread, core, package) in topology order
246  * skip non-present cpus
247  */
248
249 int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
250         struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
251 {
252         int retval, pkg_no, core_no, thread_no;
253
254         for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
255                 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
256                         for (thread_no = 0; thread_no <
257                                 topo.num_threads_per_core; ++thread_no) {
258                                 struct thread_data *t;
259                                 struct core_data *c;
260                                 struct pkg_data *p;
261
262                                 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
263
264                                 if (cpu_is_not_present(t->cpu_id))
265                                         continue;
266
267                                 c = GET_CORE(core_base, core_no, pkg_no);
268                                 p = GET_PKG(pkg_base, pkg_no);
269
270                                 retval = func(t, c, p);
271                                 if (retval)
272                                         return retval;
273                         }
274                 }
275         }
276         return 0;
277 }
278
279 int cpu_migrate(int cpu)
280 {
281         CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
282         CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
283         if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
284                 return -1;
285         else
286                 return 0;
287 }
288 int get_msr_fd(int cpu)
289 {
290         char pathname[32];
291         int fd;
292
293         fd = fd_percpu[cpu];
294
295         if (fd)
296                 return fd;
297
298         sprintf(pathname, "/dev/cpu/%d/msr", cpu);
299         fd = open(pathname, O_RDONLY);
300         if (fd < 0)
301                 err(-1, "%s open failed, try chown or chmod +r /dev/cpu/*/msr, or run as root", pathname);
302
303         fd_percpu[cpu] = fd;
304
305         return fd;
306 }
307
308 int get_msr(int cpu, off_t offset, unsigned long long *msr)
309 {
310         ssize_t retval;
311
312         retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
313
314         if (retval != sizeof *msr)
315                 err(-1, "msr %d offset 0x%llx read failed", cpu, (unsigned long long)offset);
316
317         return 0;
318 }
319
320 /*
321  * Example Format w/ field column widths:
322  *
323  *  Package    Core     CPU Avg_MHz Bzy_MHz TSC_MHz     IRQ   SMI   Busy% CPU_%c1 CPU_%c3 CPU_%c6 CPU_%c7 CoreTmp  PkgTmp  GFXMHz Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt
324  * 12345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678
325  */
326
327 void print_header(void)
328 {
329         if (show_pkg)
330                 outp += sprintf(outp, "\tPackage");
331         if (show_core)
332                 outp += sprintf(outp, "\tCore");
333         if (show_cpu)
334                 outp += sprintf(outp, "\tCPU");
335         if (has_aperf)
336                 outp += sprintf(outp, "\tAvg_MHz");
337         if (has_aperf)
338                 outp += sprintf(outp, "\tBusy%%");
339         if (has_aperf)
340                 outp += sprintf(outp, "\tBzy_MHz");
341         outp += sprintf(outp, "\tTSC_MHz");
342
343         if (extra_delta_offset32)
344                 outp += sprintf(outp, "\tcount 0x%03X", extra_delta_offset32);
345         if (extra_delta_offset64)
346                 outp += sprintf(outp, "\tCOUNT 0x%03X", extra_delta_offset64);
347         if (extra_msr_offset32)
348                 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset32);
349         if (extra_msr_offset64)
350                 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset64);
351
352         if (!debug)
353                 goto done;
354
355         if (do_irq)
356                 outp += sprintf(outp, "\tIRQ");
357         if (do_smi)
358                 outp += sprintf(outp, "\tSMI");
359
360         if (do_nhm_cstates)
361                 outp += sprintf(outp, "\tCPU%%c1");
362         if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
363                 outp += sprintf(outp, "\tCPU%%c3");
364         if (do_nhm_cstates)
365                 outp += sprintf(outp, "\tCPU%%c6");
366         if (do_snb_cstates)
367                 outp += sprintf(outp, "\tCPU%%c7");
368
369         if (do_dts)
370                 outp += sprintf(outp, "\tCoreTmp");
371         if (do_ptm)
372                 outp += sprintf(outp, "\tPkgTmp");
373
374         if (do_gfx_rc6_ms)
375                 outp += sprintf(outp, "\tGFX%%rc6");
376
377         if (do_gfx_mhz)
378                 outp += sprintf(outp, "\tGFXMHz");
379
380         if (do_skl_residency) {
381                 outp += sprintf(outp, "\tTotl%%C0");
382                 outp += sprintf(outp, "\tAny%%C0");
383                 outp += sprintf(outp, "\tGFX%%C0");
384                 outp += sprintf(outp, "\tCPUGFX%%");
385         }
386
387         if (do_pc2)
388                 outp += sprintf(outp, "\tPkg%%pc2");
389         if (do_pc3)
390                 outp += sprintf(outp, "\tPkg%%pc3");
391         if (do_pc6)
392                 outp += sprintf(outp, "\tPkg%%pc6");
393         if (do_pc7)
394                 outp += sprintf(outp, "\tPkg%%pc7");
395         if (do_c8_c9_c10) {
396                 outp += sprintf(outp, "\tPkg%%pc8");
397                 outp += sprintf(outp, "\tPkg%%pc9");
398                 outp += sprintf(outp, "\tPk%%pc10");
399         }
400
401         if (do_rapl && !rapl_joules) {
402                 if (do_rapl & RAPL_PKG)
403                         outp += sprintf(outp, "\tPkgWatt");
404                 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
405                         outp += sprintf(outp, "\tCorWatt");
406                 if (do_rapl & RAPL_GFX)
407                         outp += sprintf(outp, "\tGFXWatt");
408                 if (do_rapl & RAPL_DRAM)
409                         outp += sprintf(outp, "\tRAMWatt");
410                 if (do_rapl & RAPL_PKG_PERF_STATUS)
411                         outp += sprintf(outp, "\tPKG_%%");
412                 if (do_rapl & RAPL_DRAM_PERF_STATUS)
413                         outp += sprintf(outp, "\tRAM_%%");
414         } else if (do_rapl && rapl_joules) {
415                 if (do_rapl & RAPL_PKG)
416                         outp += sprintf(outp, "\tPkg_J");
417                 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
418                         outp += sprintf(outp, "\tCor_J");
419                 if (do_rapl & RAPL_GFX)
420                         outp += sprintf(outp, "\tGFX_J");
421                 if (do_rapl & RAPL_DRAM)
422                         outp += sprintf(outp, "\tRAM_J");
423                 if (do_rapl & RAPL_PKG_PERF_STATUS)
424                         outp += sprintf(outp, "\tPKG_%%");
425                 if (do_rapl & RAPL_DRAM_PERF_STATUS)
426                         outp += sprintf(outp, "\tRAM_%%");
427         }
428     done:
429         outp += sprintf(outp, "\n");
430 }
431
432 int dump_counters(struct thread_data *t, struct core_data *c,
433         struct pkg_data *p)
434 {
435         outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
436
437         if (t) {
438                 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
439                         t->cpu_id, t->flags);
440                 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
441                 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
442                 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
443                 outp += sprintf(outp, "c1: %016llX\n", t->c1);
444                 outp += sprintf(outp, "msr0x%x: %08llX\n",
445                         extra_delta_offset32, t->extra_delta32);
446                 outp += sprintf(outp, "msr0x%x: %016llX\n",
447                         extra_delta_offset64, t->extra_delta64);
448                 outp += sprintf(outp, "msr0x%x: %08llX\n",
449                         extra_msr_offset32, t->extra_msr32);
450                 outp += sprintf(outp, "msr0x%x: %016llX\n",
451                         extra_msr_offset64, t->extra_msr64);
452                 if (do_irq)
453                         outp += sprintf(outp, "IRQ: %08X\n", t->irq_count);
454                 if (do_smi)
455                         outp += sprintf(outp, "SMI: %08X\n", t->smi_count);
456         }
457
458         if (c) {
459                 outp += sprintf(outp, "core: %d\n", c->core_id);
460                 outp += sprintf(outp, "c3: %016llX\n", c->c3);
461                 outp += sprintf(outp, "c6: %016llX\n", c->c6);
462                 outp += sprintf(outp, "c7: %016llX\n", c->c7);
463                 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
464         }
465
466         if (p) {
467                 outp += sprintf(outp, "package: %d\n", p->package_id);
468
469                 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
470                 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
471                 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
472                 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
473
474                 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
475                 if (do_pc3)
476                         outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
477                 if (do_pc6)
478                         outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
479                 if (do_pc7)
480                         outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
481                 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
482                 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
483                 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
484                 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
485                 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
486                 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
487                 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
488                 outp += sprintf(outp, "Throttle PKG: %0X\n",
489                         p->rapl_pkg_perf_status);
490                 outp += sprintf(outp, "Throttle RAM: %0X\n",
491                         p->rapl_dram_perf_status);
492                 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
493         }
494
495         outp += sprintf(outp, "\n");
496
497         return 0;
498 }
499
500 /*
501  * column formatting convention & formats
502  */
503 int format_counters(struct thread_data *t, struct core_data *c,
504         struct pkg_data *p)
505 {
506         double interval_float;
507         char *fmt8;
508
509          /* if showing only 1st thread in core and this isn't one, bail out */
510         if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
511                 return 0;
512
513          /* if showing only 1st thread in pkg and this isn't one, bail out */
514         if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
515                 return 0;
516
517         interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
518
519         /* topo columns, print blanks on 1st (average) line */
520         if (t == &average.threads) {
521                 if (show_pkg)
522                         outp += sprintf(outp, "\t-");
523                 if (show_core)
524                         outp += sprintf(outp, "\t-");
525                 if (show_cpu)
526                         outp += sprintf(outp, "\t-");
527         } else {
528                 if (show_pkg) {
529                         if (p)
530                                 outp += sprintf(outp, "\t%d", p->package_id);
531                         else
532                                 outp += sprintf(outp, "\t-");
533                 }
534                 if (show_core) {
535                         if (c)
536                                 outp += sprintf(outp, "\t%d", c->core_id);
537                         else
538                                 outp += sprintf(outp, "\t-");
539                 }
540                 if (show_cpu)
541                         outp += sprintf(outp, "\t%d", t->cpu_id);
542         }
543
544         /* Avg_MHz */
545         if (has_aperf)
546                 outp += sprintf(outp, "\t%.0f",
547                         1.0 / units * t->aperf / interval_float);
548
549         /* Busy% */
550         if (has_aperf)
551                 outp += sprintf(outp, "\t%.2f", 100.0 * t->mperf/t->tsc/tsc_tweak);
552
553         /* Bzy_MHz */
554         if (has_aperf) {
555                 if (has_base_hz)
556                         outp += sprintf(outp, "\t%.0f", base_hz / units * t->aperf / t->mperf);
557                 else
558                         outp += sprintf(outp, "\t%.0f",
559                                 1.0 * t->tsc / units * t->aperf / t->mperf / interval_float);
560         }
561
562         /* TSC_MHz */
563         outp += sprintf(outp, "\t%.0f", 1.0 * t->tsc/units/interval_float);
564
565         /* delta */
566         if (extra_delta_offset32)
567                 outp += sprintf(outp, "\t%11llu", t->extra_delta32);
568
569         /* DELTA */
570         if (extra_delta_offset64)
571                 outp += sprintf(outp, "\t%11llu", t->extra_delta64);
572         /* msr */
573         if (extra_msr_offset32)
574                 outp += sprintf(outp, "\t0x%08llx", t->extra_msr32);
575
576         /* MSR */
577         if (extra_msr_offset64)
578                 outp += sprintf(outp, "\t0x%016llx", t->extra_msr64);
579
580         if (!debug)
581                 goto done;
582
583         /* IRQ */
584         if (do_irq)
585                 outp += sprintf(outp, "\t%d", t->irq_count);
586
587         /* SMI */
588         if (do_smi)
589                 outp += sprintf(outp, "\t%d", t->smi_count);
590
591         if (do_nhm_cstates)
592                 outp += sprintf(outp, "\t%.2f", 100.0 * t->c1/t->tsc);
593
594         /* print per-core data only for 1st thread in core */
595         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
596                 goto done;
597
598         if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
599                 outp += sprintf(outp, "\t%.2f", 100.0 * c->c3/t->tsc);
600         if (do_nhm_cstates)
601                 outp += sprintf(outp, "\t%.2f", 100.0 * c->c6/t->tsc);
602         if (do_snb_cstates)
603                 outp += sprintf(outp, "\t%.2f", 100.0 * c->c7/t->tsc);
604
605         if (do_dts)
606                 outp += sprintf(outp, "\t%d", c->core_temp_c);
607
608         /* print per-package data only for 1st core in package */
609         if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
610                 goto done;
611
612         /* PkgTmp */
613         if (do_ptm)
614                 outp += sprintf(outp, "\t%d", p->pkg_temp_c);
615
616         /* GFXrc6 */
617         if (do_gfx_rc6_ms) {
618                 if (p->gfx_rc6_ms == -1) {      /* detect GFX counter reset */
619                         outp += sprintf(outp, "\t**.**");
620                 } else {
621                         outp += sprintf(outp, "\t%.2f",
622                                 p->gfx_rc6_ms / 10.0 / interval_float);
623                 }
624         }
625
626         /* GFXMHz */
627         if (do_gfx_mhz)
628                 outp += sprintf(outp, "\t%d", p->gfx_mhz);
629
630         /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
631         if (do_skl_residency) {
632                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_wtd_core_c0/t->tsc);
633                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_core_c0/t->tsc);
634                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_gfxe_c0/t->tsc);
635                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_both_core_gfxe_c0/t->tsc);
636         }
637
638         if (do_pc2)
639                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc2/t->tsc);
640         if (do_pc3)
641                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc3/t->tsc);
642         if (do_pc6)
643                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc6/t->tsc);
644         if (do_pc7)
645                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc7/t->tsc);
646         if (do_c8_c9_c10) {
647                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc8/t->tsc);
648                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc9/t->tsc);
649                 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc10/t->tsc);
650         }
651
652         /*
653          * If measurement interval exceeds minimum RAPL Joule Counter range,
654          * indicate that results are suspect by printing "**" in fraction place.
655          */
656         if (interval_float < rapl_joule_counter_range)
657                 fmt8 = "\t%.2f";
658         else
659                 fmt8 = "%6.0f**";
660
661         if (do_rapl && !rapl_joules) {
662                 if (do_rapl & RAPL_PKG)
663                         outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units / interval_float);
664                 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
665                         outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units / interval_float);
666                 if (do_rapl & RAPL_GFX)
667                         outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units / interval_float);
668                 if (do_rapl & RAPL_DRAM)
669                         outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units / interval_float);
670                 if (do_rapl & RAPL_PKG_PERF_STATUS)
671                         outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
672                 if (do_rapl & RAPL_DRAM_PERF_STATUS)
673                         outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
674         } else if (do_rapl && rapl_joules) {
675                 if (do_rapl & RAPL_PKG)
676                         outp += sprintf(outp, fmt8,
677                                         p->energy_pkg * rapl_energy_units);
678                 if (do_rapl & RAPL_CORES)
679                         outp += sprintf(outp, fmt8,
680                                         p->energy_cores * rapl_energy_units);
681                 if (do_rapl & RAPL_GFX)
682                         outp += sprintf(outp, fmt8,
683                                         p->energy_gfx * rapl_energy_units);
684                 if (do_rapl & RAPL_DRAM)
685                         outp += sprintf(outp, fmt8,
686                                         p->energy_dram * rapl_dram_energy_units);
687                 if (do_rapl & RAPL_PKG_PERF_STATUS)
688                         outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
689                 if (do_rapl & RAPL_DRAM_PERF_STATUS)
690                         outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
691         }
692 done:
693         outp += sprintf(outp, "\n");
694
695         return 0;
696 }
697
698 void flush_output_stdout(void)
699 {
700         FILE *filep;
701
702         if (outf == stderr)
703                 filep = stdout;
704         else
705                 filep = outf;
706
707         fputs(output_buffer, filep);
708         fflush(filep);
709
710         outp = output_buffer;
711 }
712 void flush_output_stderr(void)
713 {
714         fputs(output_buffer, outf);
715         fflush(outf);
716         outp = output_buffer;
717 }
718 void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
719 {
720         static int printed;
721
722         if (!printed || !summary_only)
723                 print_header();
724
725         if (topo.num_cpus > 1)
726                 format_counters(&average.threads, &average.cores,
727                         &average.packages);
728
729         printed = 1;
730
731         if (summary_only)
732                 return;
733
734         for_all_cpus(format_counters, t, c, p);
735 }
736
737 #define DELTA_WRAP32(new, old)                  \
738         if (new > old) {                        \
739                 old = new - old;                \
740         } else {                                \
741                 old = 0x100000000 + new - old;  \
742         }
743
744 int
745 delta_package(struct pkg_data *new, struct pkg_data *old)
746 {
747
748         if (do_skl_residency) {
749                 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
750                 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
751                 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
752                 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
753         }
754         old->pc2 = new->pc2 - old->pc2;
755         if (do_pc3)
756                 old->pc3 = new->pc3 - old->pc3;
757         if (do_pc6)
758                 old->pc6 = new->pc6 - old->pc6;
759         if (do_pc7)
760                 old->pc7 = new->pc7 - old->pc7;
761         old->pc8 = new->pc8 - old->pc8;
762         old->pc9 = new->pc9 - old->pc9;
763         old->pc10 = new->pc10 - old->pc10;
764         old->pkg_temp_c = new->pkg_temp_c;
765
766         /* flag an error when rc6 counter resets/wraps */
767         if (old->gfx_rc6_ms >  new->gfx_rc6_ms)
768                 old->gfx_rc6_ms = -1;
769         else
770                 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
771
772         old->gfx_mhz = new->gfx_mhz;
773
774         DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
775         DELTA_WRAP32(new->energy_cores, old->energy_cores);
776         DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
777         DELTA_WRAP32(new->energy_dram, old->energy_dram);
778         DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
779         DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
780
781         return 0;
782 }
783
784 void
785 delta_core(struct core_data *new, struct core_data *old)
786 {
787         old->c3 = new->c3 - old->c3;
788         old->c6 = new->c6 - old->c6;
789         old->c7 = new->c7 - old->c7;
790         old->core_temp_c = new->core_temp_c;
791 }
792
793 /*
794  * old = new - old
795  */
796 int
797 delta_thread(struct thread_data *new, struct thread_data *old,
798         struct core_data *core_delta)
799 {
800         old->tsc = new->tsc - old->tsc;
801
802         /* check for TSC < 1 Mcycles over interval */
803         if (old->tsc < (1000 * 1000))
804                 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
805                      "You can disable all c-states by booting with \"idle=poll\"\n"
806                      "or just the deep ones with \"processor.max_cstate=1\"");
807
808         old->c1 = new->c1 - old->c1;
809
810         if (has_aperf) {
811                 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
812                         old->aperf = new->aperf - old->aperf;
813                         old->mperf = new->mperf - old->mperf;
814                 } else {
815                         return -1;
816                 }
817         }
818
819
820         if (use_c1_residency_msr) {
821                 /*
822                  * Some models have a dedicated C1 residency MSR,
823                  * which should be more accurate than the derivation below.
824                  */
825         } else {
826                 /*
827                  * As counter collection is not atomic,
828                  * it is possible for mperf's non-halted cycles + idle states
829                  * to exceed TSC's all cycles: show c1 = 0% in that case.
830                  */
831                 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > old->tsc)
832                         old->c1 = 0;
833                 else {
834                         /* normal case, derive c1 */
835                         old->c1 = old->tsc - old->mperf - core_delta->c3
836                                 - core_delta->c6 - core_delta->c7;
837                 }
838         }
839
840         if (old->mperf == 0) {
841                 if (debug > 1)
842                         fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
843                 old->mperf = 1; /* divide by 0 protection */
844         }
845
846         old->extra_delta32 = new->extra_delta32 - old->extra_delta32;
847         old->extra_delta32 &= 0xFFFFFFFF;
848
849         old->extra_delta64 = new->extra_delta64 - old->extra_delta64;
850
851         /*
852          * Extra MSR is just a snapshot, simply copy latest w/o subtracting
853          */
854         old->extra_msr32 = new->extra_msr32;
855         old->extra_msr64 = new->extra_msr64;
856
857         if (do_irq)
858                 old->irq_count = new->irq_count - old->irq_count;
859
860         if (do_smi)
861                 old->smi_count = new->smi_count - old->smi_count;
862
863         return 0;
864 }
865
866 int delta_cpu(struct thread_data *t, struct core_data *c,
867         struct pkg_data *p, struct thread_data *t2,
868         struct core_data *c2, struct pkg_data *p2)
869 {
870         int retval = 0;
871
872         /* calculate core delta only for 1st thread in core */
873         if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
874                 delta_core(c, c2);
875
876         /* always calculate thread delta */
877         retval = delta_thread(t, t2, c2);       /* c2 is core delta */
878         if (retval)
879                 return retval;
880
881         /* calculate package delta only for 1st core in package */
882         if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
883                 retval = delta_package(p, p2);
884
885         return retval;
886 }
887
888 void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
889 {
890         t->tsc = 0;
891         t->aperf = 0;
892         t->mperf = 0;
893         t->c1 = 0;
894
895         t->extra_delta32 = 0;
896         t->extra_delta64 = 0;
897
898         t->irq_count = 0;
899         t->smi_count = 0;
900
901         /* tells format_counters to dump all fields from this set */
902         t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
903
904         c->c3 = 0;
905         c->c6 = 0;
906         c->c7 = 0;
907         c->core_temp_c = 0;
908
909         p->pkg_wtd_core_c0 = 0;
910         p->pkg_any_core_c0 = 0;
911         p->pkg_any_gfxe_c0 = 0;
912         p->pkg_both_core_gfxe_c0 = 0;
913
914         p->pc2 = 0;
915         if (do_pc3)
916                 p->pc3 = 0;
917         if (do_pc6)
918                 p->pc6 = 0;
919         if (do_pc7)
920                 p->pc7 = 0;
921         p->pc8 = 0;
922         p->pc9 = 0;
923         p->pc10 = 0;
924
925         p->energy_pkg = 0;
926         p->energy_dram = 0;
927         p->energy_cores = 0;
928         p->energy_gfx = 0;
929         p->rapl_pkg_perf_status = 0;
930         p->rapl_dram_perf_status = 0;
931         p->pkg_temp_c = 0;
932
933         p->gfx_rc6_ms = 0;
934         p->gfx_mhz = 0;
935 }
936 int sum_counters(struct thread_data *t, struct core_data *c,
937         struct pkg_data *p)
938 {
939         average.threads.tsc += t->tsc;
940         average.threads.aperf += t->aperf;
941         average.threads.mperf += t->mperf;
942         average.threads.c1 += t->c1;
943
944         average.threads.extra_delta32 += t->extra_delta32;
945         average.threads.extra_delta64 += t->extra_delta64;
946
947         average.threads.irq_count += t->irq_count;
948         average.threads.smi_count += t->smi_count;
949
950         /* sum per-core values only for 1st thread in core */
951         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
952                 return 0;
953
954         average.cores.c3 += c->c3;
955         average.cores.c6 += c->c6;
956         average.cores.c7 += c->c7;
957
958         average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
959
960         /* sum per-pkg values only for 1st core in pkg */
961         if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
962                 return 0;
963
964         if (do_skl_residency) {
965                 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
966                 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
967                 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
968                 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
969         }
970
971         average.packages.pc2 += p->pc2;
972         if (do_pc3)
973                 average.packages.pc3 += p->pc3;
974         if (do_pc6)
975                 average.packages.pc6 += p->pc6;
976         if (do_pc7)
977                 average.packages.pc7 += p->pc7;
978         average.packages.pc8 += p->pc8;
979         average.packages.pc9 += p->pc9;
980         average.packages.pc10 += p->pc10;
981
982         average.packages.energy_pkg += p->energy_pkg;
983         average.packages.energy_dram += p->energy_dram;
984         average.packages.energy_cores += p->energy_cores;
985         average.packages.energy_gfx += p->energy_gfx;
986
987         average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
988         average.packages.gfx_mhz = p->gfx_mhz;
989
990         average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
991
992         average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
993         average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
994         return 0;
995 }
996 /*
997  * sum the counters for all cpus in the system
998  * compute the weighted average
999  */
1000 void compute_average(struct thread_data *t, struct core_data *c,
1001         struct pkg_data *p)
1002 {
1003         clear_counters(&average.threads, &average.cores, &average.packages);
1004
1005         for_all_cpus(sum_counters, t, c, p);
1006
1007         average.threads.tsc /= topo.num_cpus;
1008         average.threads.aperf /= topo.num_cpus;
1009         average.threads.mperf /= topo.num_cpus;
1010         average.threads.c1 /= topo.num_cpus;
1011
1012         average.threads.extra_delta32 /= topo.num_cpus;
1013         average.threads.extra_delta32 &= 0xFFFFFFFF;
1014
1015         average.threads.extra_delta64 /= topo.num_cpus;
1016
1017         average.cores.c3 /= topo.num_cores;
1018         average.cores.c6 /= topo.num_cores;
1019         average.cores.c7 /= topo.num_cores;
1020
1021         if (do_skl_residency) {
1022                 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
1023                 average.packages.pkg_any_core_c0 /= topo.num_packages;
1024                 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
1025                 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
1026         }
1027
1028         average.packages.pc2 /= topo.num_packages;
1029         if (do_pc3)
1030                 average.packages.pc3 /= topo.num_packages;
1031         if (do_pc6)
1032                 average.packages.pc6 /= topo.num_packages;
1033         if (do_pc7)
1034                 average.packages.pc7 /= topo.num_packages;
1035
1036         average.packages.pc8 /= topo.num_packages;
1037         average.packages.pc9 /= topo.num_packages;
1038         average.packages.pc10 /= topo.num_packages;
1039 }
1040
1041 static unsigned long long rdtsc(void)
1042 {
1043         unsigned int low, high;
1044
1045         asm volatile("rdtsc" : "=a" (low), "=d" (high));
1046
1047         return low | ((unsigned long long)high) << 32;
1048 }
1049
1050 /*
1051  * get_counters(...)
1052  * migrate to cpu
1053  * acquire and record local counters for that cpu
1054  */
1055 int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1056 {
1057         int cpu = t->cpu_id;
1058         unsigned long long msr;
1059         int aperf_mperf_retry_count = 0;
1060
1061         if (cpu_migrate(cpu)) {
1062                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
1063                 return -1;
1064         }
1065
1066 retry:
1067         t->tsc = rdtsc();       /* we are running on local CPU of interest */
1068
1069         if (has_aperf) {
1070                 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1071
1072                 /*
1073                  * The TSC, APERF and MPERF must be read together for
1074                  * APERF/MPERF and MPERF/TSC to give accurate results.
1075                  *
1076                  * Unfortunately, APERF and MPERF are read by
1077                  * individual system call, so delays may occur
1078                  * between them.  If the time to read them
1079                  * varies by a large amount, we re-read them.
1080                  */
1081
1082                 /*
1083                  * This initial dummy APERF read has been seen to
1084                  * reduce jitter in the subsequent reads.
1085                  */
1086
1087                 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1088                         return -3;
1089
1090                 t->tsc = rdtsc();       /* re-read close to APERF */
1091
1092                 tsc_before = t->tsc;
1093
1094                 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1095                         return -3;
1096
1097                 tsc_between = rdtsc();
1098
1099                 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
1100                         return -4;
1101
1102                 tsc_after = rdtsc();
1103
1104                 aperf_time = tsc_between - tsc_before;
1105                 mperf_time = tsc_after - tsc_between;
1106
1107                 /*
1108                  * If the system call latency to read APERF and MPERF
1109                  * differ by more than 2x, then try again.
1110                  */
1111                 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1112                         aperf_mperf_retry_count++;
1113                         if (aperf_mperf_retry_count < 5)
1114                                 goto retry;
1115                         else
1116                                 warnx("cpu%d jitter %lld %lld",
1117                                         cpu, aperf_time, mperf_time);
1118                 }
1119                 aperf_mperf_retry_count = 0;
1120
1121                 t->aperf = t->aperf * aperf_mperf_multiplier;
1122                 t->mperf = t->mperf * aperf_mperf_multiplier;
1123         }
1124
1125         if (do_irq)
1126                 t->irq_count = irqs_per_cpu[cpu];
1127         if (do_smi) {
1128                 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1129                         return -5;
1130                 t->smi_count = msr & 0xFFFFFFFF;
1131         }
1132         if (extra_delta_offset32) {
1133                 if (get_msr(cpu, extra_delta_offset32, &msr))
1134                         return -5;
1135                 t->extra_delta32 = msr & 0xFFFFFFFF;
1136         }
1137
1138         if (extra_delta_offset64)
1139                 if (get_msr(cpu, extra_delta_offset64, &t->extra_delta64))
1140                         return -5;
1141
1142         if (extra_msr_offset32) {
1143                 if (get_msr(cpu, extra_msr_offset32, &msr))
1144                         return -5;
1145                 t->extra_msr32 = msr & 0xFFFFFFFF;
1146         }
1147
1148         if (extra_msr_offset64)
1149                 if (get_msr(cpu, extra_msr_offset64, &t->extra_msr64))
1150                         return -5;
1151
1152         if (use_c1_residency_msr) {
1153                 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1154                         return -6;
1155         }
1156
1157         /* collect core counters only for 1st thread in core */
1158         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1159                 return 0;
1160
1161         if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates) {
1162                 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1163                         return -6;
1164         }
1165
1166         if (do_nhm_cstates && !do_knl_cstates) {
1167                 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1168                         return -7;
1169         } else if (do_knl_cstates) {
1170                 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1171                         return -7;
1172         }
1173
1174         if (do_snb_cstates)
1175                 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1176                         return -8;
1177
1178         if (do_dts) {
1179                 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1180                         return -9;
1181                 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1182         }
1183
1184
1185         /* collect package counters only for 1st core in package */
1186         if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1187                 return 0;
1188
1189         if (do_skl_residency) {
1190                 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1191                         return -10;
1192                 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1193                         return -11;
1194                 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1195                         return -12;
1196                 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1197                         return -13;
1198         }
1199         if (do_pc3)
1200                 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1201                         return -9;
1202         if (do_pc6)
1203                 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1204                         return -10;
1205         if (do_pc2)
1206                 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1207                         return -11;
1208         if (do_pc7)
1209                 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1210                         return -12;
1211         if (do_c8_c9_c10) {
1212                 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1213                         return -13;
1214                 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1215                         return -13;
1216                 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1217                         return -13;
1218         }
1219         if (do_rapl & RAPL_PKG) {
1220                 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1221                         return -13;
1222                 p->energy_pkg = msr & 0xFFFFFFFF;
1223         }
1224         if (do_rapl & RAPL_CORES_ENERGY_STATUS) {
1225                 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1226                         return -14;
1227                 p->energy_cores = msr & 0xFFFFFFFF;
1228         }
1229         if (do_rapl & RAPL_DRAM) {
1230                 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1231                         return -15;
1232                 p->energy_dram = msr & 0xFFFFFFFF;
1233         }
1234         if (do_rapl & RAPL_GFX) {
1235                 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1236                         return -16;
1237                 p->energy_gfx = msr & 0xFFFFFFFF;
1238         }
1239         if (do_rapl & RAPL_PKG_PERF_STATUS) {
1240                 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1241                         return -16;
1242                 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1243         }
1244         if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1245                 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1246                         return -16;
1247                 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1248         }
1249         if (do_ptm) {
1250                 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1251                         return -17;
1252                 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1253         }
1254
1255         if (do_gfx_rc6_ms)
1256                 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1257
1258         if (do_gfx_mhz)
1259                 p->gfx_mhz = gfx_cur_mhz;
1260
1261         return 0;
1262 }
1263
1264 /*
1265  * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1266  * If you change the values, note they are used both in comparisons
1267  * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1268  */
1269
1270 #define PCLUKN 0 /* Unknown */
1271 #define PCLRSV 1 /* Reserved */
1272 #define PCL__0 2 /* PC0 */
1273 #define PCL__1 3 /* PC1 */
1274 #define PCL__2 4 /* PC2 */
1275 #define PCL__3 5 /* PC3 */
1276 #define PCL__4 6 /* PC4 */
1277 #define PCL__6 7 /* PC6 */
1278 #define PCL_6N 8 /* PC6 No Retention */
1279 #define PCL_6R 9 /* PC6 Retention */
1280 #define PCL__7 10 /* PC7 */
1281 #define PCL_7S 11 /* PC7 Shrink */
1282 #define PCL__8 12 /* PC8 */
1283 #define PCL__9 13 /* PC9 */
1284 #define PCLUNL 14 /* Unlimited */
1285
1286 int pkg_cstate_limit = PCLUKN;
1287 char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
1288         "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
1289
1290 int nhm_pkg_cstate_limits[16] = {PCL__0, PCL__1, PCL__3, PCL__6, PCL__7, PCLRSV, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1291 int snb_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCL_6N, PCL_6R, PCL__7, PCL_7S, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1292 int hsw_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCL__3, PCL__6, PCL__7, PCL_7S, PCL__8, PCL__9, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1293 int slv_pkg_cstate_limits[16] = {PCL__0, PCL__1, PCLRSV, PCLRSV, PCL__4, PCLRSV, PCL__6, PCL__7, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1294 int amt_pkg_cstate_limits[16] = {PCL__0, PCL__1, PCL__2, PCLRSV, PCLRSV, PCLRSV, PCL__6, PCL__7, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1295 int phi_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCL_6N, PCL_6R, PCLRSV, PCLRSV, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1296 int bxt_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
1297
1298
1299 static void
1300 calculate_tsc_tweak()
1301 {
1302         tsc_tweak = base_hz / tsc_hz;
1303 }
1304
1305 static void
1306 dump_nhm_platform_info(void)
1307 {
1308         unsigned long long msr;
1309         unsigned int ratio;
1310
1311         get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
1312
1313         fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
1314
1315         ratio = (msr >> 40) & 0xFF;
1316         fprintf(outf, "%d * %.0f = %.0f MHz max efficiency frequency\n",
1317                 ratio, bclk, ratio * bclk);
1318
1319         ratio = (msr >> 8) & 0xFF;
1320         fprintf(outf, "%d * %.0f = %.0f MHz base frequency\n",
1321                 ratio, bclk, ratio * bclk);
1322
1323         get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
1324         fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
1325                 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
1326
1327         return;
1328 }
1329
1330 static void
1331 dump_hsw_turbo_ratio_limits(void)
1332 {
1333         unsigned long long msr;
1334         unsigned int ratio;
1335
1336         get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
1337
1338         fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
1339
1340         ratio = (msr >> 8) & 0xFF;
1341         if (ratio)
1342                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 18 active cores\n",
1343                         ratio, bclk, ratio * bclk);
1344
1345         ratio = (msr >> 0) & 0xFF;
1346         if (ratio)
1347                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 17 active cores\n",
1348                         ratio, bclk, ratio * bclk);
1349         return;
1350 }
1351
1352 static void
1353 dump_ivt_turbo_ratio_limits(void)
1354 {
1355         unsigned long long msr;
1356         unsigned int ratio;
1357
1358         get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
1359
1360         fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
1361
1362         ratio = (msr >> 56) & 0xFF;
1363         if (ratio)
1364                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 16 active cores\n",
1365                         ratio, bclk, ratio * bclk);
1366
1367         ratio = (msr >> 48) & 0xFF;
1368         if (ratio)
1369                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 15 active cores\n",
1370                         ratio, bclk, ratio * bclk);
1371
1372         ratio = (msr >> 40) & 0xFF;
1373         if (ratio)
1374                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 14 active cores\n",
1375                         ratio, bclk, ratio * bclk);
1376
1377         ratio = (msr >> 32) & 0xFF;
1378         if (ratio)
1379                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 13 active cores\n",
1380                         ratio, bclk, ratio * bclk);
1381
1382         ratio = (msr >> 24) & 0xFF;
1383         if (ratio)
1384                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 12 active cores\n",
1385                         ratio, bclk, ratio * bclk);
1386
1387         ratio = (msr >> 16) & 0xFF;
1388         if (ratio)
1389                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 11 active cores\n",
1390                         ratio, bclk, ratio * bclk);
1391
1392         ratio = (msr >> 8) & 0xFF;
1393         if (ratio)
1394                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 10 active cores\n",
1395                         ratio, bclk, ratio * bclk);
1396
1397         ratio = (msr >> 0) & 0xFF;
1398         if (ratio)
1399                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 9 active cores\n",
1400                         ratio, bclk, ratio * bclk);
1401         return;
1402 }
1403
1404 static void
1405 dump_nhm_turbo_ratio_limits(void)
1406 {
1407         unsigned long long msr;
1408         unsigned int ratio;
1409
1410         get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
1411
1412         fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
1413
1414         ratio = (msr >> 56) & 0xFF;
1415         if (ratio)
1416                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 8 active cores\n",
1417                         ratio, bclk, ratio * bclk);
1418
1419         ratio = (msr >> 48) & 0xFF;
1420         if (ratio)
1421                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 7 active cores\n",
1422                         ratio, bclk, ratio * bclk);
1423
1424         ratio = (msr >> 40) & 0xFF;
1425         if (ratio)
1426                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 6 active cores\n",
1427                         ratio, bclk, ratio * bclk);
1428
1429         ratio = (msr >> 32) & 0xFF;
1430         if (ratio)
1431                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 5 active cores\n",
1432                         ratio, bclk, ratio * bclk);
1433
1434         ratio = (msr >> 24) & 0xFF;
1435         if (ratio)
1436                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
1437                         ratio, bclk, ratio * bclk);
1438
1439         ratio = (msr >> 16) & 0xFF;
1440         if (ratio)
1441                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
1442                         ratio, bclk, ratio * bclk);
1443
1444         ratio = (msr >> 8) & 0xFF;
1445         if (ratio)
1446                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
1447                         ratio, bclk, ratio * bclk);
1448
1449         ratio = (msr >> 0) & 0xFF;
1450         if (ratio)
1451                 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
1452                         ratio, bclk, ratio * bclk);
1453         return;
1454 }
1455
1456 static void
1457 dump_knl_turbo_ratio_limits(void)
1458 {
1459         const unsigned int buckets_no = 7;
1460
1461         unsigned long long msr;
1462         int delta_cores, delta_ratio;
1463         int i, b_nr;
1464         unsigned int cores[buckets_no];
1465         unsigned int ratio[buckets_no];
1466
1467         get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
1468
1469         fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
1470                 base_cpu, msr);
1471
1472         /**
1473          * Turbo encoding in KNL is as follows:
1474          * [0] -- Reserved
1475          * [7:1] -- Base value of number of active cores of bucket 1.
1476          * [15:8] -- Base value of freq ratio of bucket 1.
1477          * [20:16] -- +ve delta of number of active cores of bucket 2.
1478          * i.e. active cores of bucket 2 =
1479          * active cores of bucket 1 + delta
1480          * [23:21] -- Negative delta of freq ratio of bucket 2.
1481          * i.e. freq ratio of bucket 2 =
1482          * freq ratio of bucket 1 - delta
1483          * [28:24]-- +ve delta of number of active cores of bucket 3.
1484          * [31:29]-- -ve delta of freq ratio of bucket 3.
1485          * [36:32]-- +ve delta of number of active cores of bucket 4.
1486          * [39:37]-- -ve delta of freq ratio of bucket 4.
1487          * [44:40]-- +ve delta of number of active cores of bucket 5.
1488          * [47:45]-- -ve delta of freq ratio of bucket 5.
1489          * [52:48]-- +ve delta of number of active cores of bucket 6.
1490          * [55:53]-- -ve delta of freq ratio of bucket 6.
1491          * [60:56]-- +ve delta of number of active cores of bucket 7.
1492          * [63:61]-- -ve delta of freq ratio of bucket 7.
1493          */
1494
1495         b_nr = 0;
1496         cores[b_nr] = (msr & 0xFF) >> 1;
1497         ratio[b_nr] = (msr >> 8) & 0xFF;
1498
1499         for (i = 16; i < 64; i += 8) {
1500                 delta_cores = (msr >> i) & 0x1F;
1501                 delta_ratio = (msr >> (i + 5)) & 0x7;
1502
1503                 cores[b_nr + 1] = cores[b_nr] + delta_cores;
1504                 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
1505                 b_nr++;
1506         }
1507
1508         for (i = buckets_no - 1; i >= 0; i--)
1509                 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
1510                         fprintf(outf,
1511                                 "%d * %.0f = %.0f MHz max turbo %d active cores\n",
1512                                 ratio[i], bclk, ratio[i] * bclk, cores[i]);
1513 }
1514
1515 static void
1516 dump_nhm_cst_cfg(void)
1517 {
1518         unsigned long long msr;
1519
1520         get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
1521
1522 #define SNB_C1_AUTO_UNDEMOTE              (1UL << 27)
1523 #define SNB_C3_AUTO_UNDEMOTE              (1UL << 28)
1524
1525         fprintf(outf, "cpu%d: MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x%08llx", base_cpu, msr);
1526
1527         fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
1528                 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
1529                 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
1530                 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
1531                 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
1532                 (msr & (1 << 15)) ? "" : "UN",
1533                 (unsigned int)msr & 0xF,
1534                 pkg_cstate_limit_strings[pkg_cstate_limit]);
1535         return;
1536 }
1537
1538 static void
1539 dump_config_tdp(void)
1540 {
1541         unsigned long long msr;
1542
1543         get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
1544         fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
1545         fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
1546
1547         get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
1548         fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
1549         if (msr) {
1550                 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1551                 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1552                 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1553                 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
1554         }
1555         fprintf(outf, ")\n");
1556
1557         get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
1558         fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
1559         if (msr) {
1560                 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1561                 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1562                 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1563                 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
1564         }
1565         fprintf(outf, ")\n");
1566
1567         get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
1568         fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
1569         if ((msr) & 0x3)
1570                 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
1571         fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1572         fprintf(outf, ")\n");
1573
1574         get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
1575         fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
1576         fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
1577         fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1578         fprintf(outf, ")\n");
1579 }
1580
1581 unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
1582
1583 void print_irtl(void)
1584 {
1585         unsigned long long msr;
1586
1587         get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
1588         fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
1589         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1590                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1591
1592         get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
1593         fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
1594         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1595                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1596
1597         get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
1598         fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
1599         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1600                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1601
1602         if (!do_irtl_hsw)
1603                 return;
1604
1605         get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
1606         fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
1607         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1608                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1609
1610         get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
1611         fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
1612         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1613                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1614
1615         get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
1616         fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
1617         fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1618                 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1619
1620 }
1621 void free_fd_percpu(void)
1622 {
1623         int i;
1624
1625         for (i = 0; i < topo.max_cpu_num + 1; ++i) {
1626                 if (fd_percpu[i] != 0)
1627                         close(fd_percpu[i]);
1628         }
1629
1630         free(fd_percpu);
1631 }
1632
1633 void free_all_buffers(void)
1634 {
1635         CPU_FREE(cpu_present_set);
1636         cpu_present_set = NULL;
1637         cpu_present_setsize = 0;
1638
1639         CPU_FREE(cpu_affinity_set);
1640         cpu_affinity_set = NULL;
1641         cpu_affinity_setsize = 0;
1642
1643         free(thread_even);
1644         free(core_even);
1645         free(package_even);
1646
1647         thread_even = NULL;
1648         core_even = NULL;
1649         package_even = NULL;
1650
1651         free(thread_odd);
1652         free(core_odd);
1653         free(package_odd);
1654
1655         thread_odd = NULL;
1656         core_odd = NULL;
1657         package_odd = NULL;
1658
1659         free(output_buffer);
1660         output_buffer = NULL;
1661         outp = NULL;
1662
1663         free_fd_percpu();
1664
1665         free(irq_column_2_cpu);
1666         free(irqs_per_cpu);
1667 }
1668
1669 /*
1670  * Open a file, and exit on failure
1671  */
1672 FILE *fopen_or_die(const char *path, const char *mode)
1673 {
1674         FILE *filep = fopen(path, mode);
1675         if (!filep)
1676                 err(1, "%s: open failed", path);
1677         return filep;
1678 }
1679
1680 /*
1681  * Parse a file containing a single int.
1682  */
1683 int parse_int_file(const char *fmt, ...)
1684 {
1685         va_list args;
1686         char path[PATH_MAX];
1687         FILE *filep;
1688         int value;
1689
1690         va_start(args, fmt);
1691         vsnprintf(path, sizeof(path), fmt, args);
1692         va_end(args);
1693         filep = fopen_or_die(path, "r");
1694         if (fscanf(filep, "%d", &value) != 1)
1695                 err(1, "%s: failed to parse number from file", path);
1696         fclose(filep);
1697         return value;
1698 }
1699
1700 /*
1701  * get_cpu_position_in_core(cpu)
1702  * return the position of the CPU among its HT siblings in the core
1703  * return -1 if the sibling is not in list
1704  */
1705 int get_cpu_position_in_core(int cpu)
1706 {
1707         char path[64];
1708         FILE *filep;
1709         int this_cpu;
1710         char character;
1711         int i;
1712
1713         sprintf(path,
1714                 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
1715                 cpu);
1716         filep = fopen(path, "r");
1717         if (filep == NULL) {
1718                 perror(path);
1719                 exit(1);
1720         }
1721
1722         for (i = 0; i < topo.num_threads_per_core; i++) {
1723                 fscanf(filep, "%d", &this_cpu);
1724                 if (this_cpu == cpu) {
1725                         fclose(filep);
1726                         return i;
1727                 }
1728
1729                 /* Account for no separator after last thread*/
1730                 if (i != (topo.num_threads_per_core - 1))
1731                         fscanf(filep, "%c", &character);
1732         }
1733
1734         fclose(filep);
1735         return -1;
1736 }
1737
1738 /*
1739  * cpu_is_first_core_in_package(cpu)
1740  * return 1 if given CPU is 1st core in package
1741  */
1742 int cpu_is_first_core_in_package(int cpu)
1743 {
1744         return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
1745 }
1746
1747 int get_physical_package_id(int cpu)
1748 {
1749         return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
1750 }
1751
1752 int get_core_id(int cpu)
1753 {
1754         return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
1755 }
1756
1757 int get_num_ht_siblings(int cpu)
1758 {
1759         char path[80];
1760         FILE *filep;
1761         int sib1;
1762         int matches = 0;
1763         char character;
1764         char str[100];
1765         char *ch;
1766
1767         sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
1768         filep = fopen_or_die(path, "r");
1769
1770         /*
1771          * file format:
1772          * A ',' separated or '-' separated set of numbers
1773          * (eg 1-2 or 1,3,4,5)
1774          */
1775         fscanf(filep, "%d%c\n", &sib1, &character);
1776         fseek(filep, 0, SEEK_SET);
1777         fgets(str, 100, filep);
1778         ch = strchr(str, character);
1779         while (ch != NULL) {
1780                 matches++;
1781                 ch = strchr(ch+1, character);
1782         }
1783
1784         fclose(filep);
1785         return matches+1;
1786 }
1787
1788 /*
1789  * run func(thread, core, package) in topology order
1790  * skip non-present cpus
1791  */
1792
1793 int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
1794         struct pkg_data *, struct thread_data *, struct core_data *,
1795         struct pkg_data *), struct thread_data *thread_base,
1796         struct core_data *core_base, struct pkg_data *pkg_base,
1797         struct thread_data *thread_base2, struct core_data *core_base2,
1798         struct pkg_data *pkg_base2)
1799 {
1800         int retval, pkg_no, core_no, thread_no;
1801
1802         for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
1803                 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
1804                         for (thread_no = 0; thread_no <
1805                                 topo.num_threads_per_core; ++thread_no) {
1806                                 struct thread_data *t, *t2;
1807                                 struct core_data *c, *c2;
1808                                 struct pkg_data *p, *p2;
1809
1810                                 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
1811
1812                                 if (cpu_is_not_present(t->cpu_id))
1813                                         continue;
1814
1815                                 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
1816
1817                                 c = GET_CORE(core_base, core_no, pkg_no);
1818                                 c2 = GET_CORE(core_base2, core_no, pkg_no);
1819
1820                                 p = GET_PKG(pkg_base, pkg_no);
1821                                 p2 = GET_PKG(pkg_base2, pkg_no);
1822
1823                                 retval = func(t, c, p, t2, c2, p2);
1824                                 if (retval)
1825                                         return retval;
1826                         }
1827                 }
1828         }
1829         return 0;
1830 }
1831
1832 /*
1833  * run func(cpu) on every cpu in /proc/stat
1834  * return max_cpu number
1835  */
1836 int for_all_proc_cpus(int (func)(int))
1837 {
1838         FILE *fp;
1839         int cpu_num;
1840         int retval;
1841
1842         fp = fopen_or_die(proc_stat, "r");
1843
1844         retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
1845         if (retval != 0)
1846                 err(1, "%s: failed to parse format", proc_stat);
1847
1848         while (1) {
1849                 retval = fscanf(fp, "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu_num);
1850                 if (retval != 1)
1851                         break;
1852
1853                 retval = func(cpu_num);
1854                 if (retval) {
1855                         fclose(fp);
1856                         return(retval);
1857                 }
1858         }
1859         fclose(fp);
1860         return 0;
1861 }
1862
1863 void re_initialize(void)
1864 {
1865         free_all_buffers();
1866         setup_all_buffers();
1867         printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
1868 }
1869
1870
1871 /*
1872  * count_cpus()
1873  * remember the last one seen, it will be the max
1874  */
1875 int count_cpus(int cpu)
1876 {
1877         if (topo.max_cpu_num < cpu)
1878                 topo.max_cpu_num = cpu;
1879
1880         topo.num_cpus += 1;
1881         return 0;
1882 }
1883 int mark_cpu_present(int cpu)
1884 {
1885         CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
1886         return 0;
1887 }
1888
1889 /*
1890  * snapshot_proc_interrupts()
1891  *
1892  * read and record summary of /proc/interrupts
1893  *
1894  * return 1 if config change requires a restart, else return 0
1895  */
1896 int snapshot_proc_interrupts(void)
1897 {
1898         static FILE *fp;
1899         int column, retval;
1900
1901         if (fp == NULL)
1902                 fp = fopen_or_die("/proc/interrupts", "r");
1903         else
1904                 rewind(fp);
1905
1906         /* read 1st line of /proc/interrupts to get cpu* name for each column */
1907         for (column = 0; column < topo.num_cpus; ++column) {
1908                 int cpu_number;
1909
1910                 retval = fscanf(fp, " CPU%d", &cpu_number);
1911                 if (retval != 1)
1912                         break;
1913
1914                 if (cpu_number > topo.max_cpu_num) {
1915                         warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
1916                         return 1;
1917                 }
1918
1919                 irq_column_2_cpu[column] = cpu_number;
1920                 irqs_per_cpu[cpu_number] = 0;
1921         }
1922
1923         /* read /proc/interrupt count lines and sum up irqs per cpu */
1924         while (1) {
1925                 int column;
1926                 char buf[64];
1927
1928                 retval = fscanf(fp, " %s:", buf);       /* flush irq# "N:" */
1929                 if (retval != 1)
1930                         break;
1931
1932                 /* read the count per cpu */
1933                 for (column = 0; column < topo.num_cpus; ++column) {
1934
1935                         int cpu_number, irq_count;
1936
1937                         retval = fscanf(fp, " %d", &irq_count);
1938                         if (retval != 1)
1939                                 break;
1940
1941                         cpu_number = irq_column_2_cpu[column];
1942                         irqs_per_cpu[cpu_number] += irq_count;
1943
1944                 }
1945
1946                 while (getc(fp) != '\n')
1947                         ;       /* flush interrupt description */
1948
1949         }
1950         return 0;
1951 }
1952 /*
1953  * snapshot_gfx_rc6_ms()
1954  *
1955  * record snapshot of
1956  * /sys/class/drm/card0/power/rc6_residency_ms
1957  *
1958  * return 1 if config change requires a restart, else return 0
1959  */
1960 int snapshot_gfx_rc6_ms(void)
1961 {
1962         FILE *fp;
1963         int retval;
1964
1965         fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
1966
1967         retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
1968         if (retval != 1)
1969                 err(1, "GFX rc6");
1970
1971         fclose(fp);
1972
1973         return 0;
1974 }
1975 /*
1976  * snapshot_gfx_mhz()
1977  *
1978  * record snapshot of
1979  * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
1980  *
1981  * return 1 if config change requires a restart, else return 0
1982  */
1983 int snapshot_gfx_mhz(void)
1984 {
1985         static FILE *fp;
1986         int retval;
1987
1988         if (fp == NULL)
1989                 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
1990         else
1991                 rewind(fp);
1992
1993         retval = fscanf(fp, "%d", &gfx_cur_mhz);
1994         if (retval != 1)
1995                 err(1, "GFX MHz");
1996
1997         return 0;
1998 }
1999
2000 /*
2001  * snapshot /proc and /sys files
2002  *
2003  * return 1 if configuration restart needed, else return 0
2004  */
2005 int snapshot_proc_sysfs_files(void)
2006 {
2007         if (snapshot_proc_interrupts())
2008                 return 1;
2009
2010         if (do_gfx_rc6_ms)
2011                 snapshot_gfx_rc6_ms();
2012
2013         if (do_gfx_mhz)
2014                 snapshot_gfx_mhz();
2015
2016         return 0;
2017 }
2018
2019 void turbostat_loop()
2020 {
2021         int retval;
2022         int restarted = 0;
2023
2024 restart:
2025         restarted++;
2026
2027         snapshot_proc_sysfs_files();
2028         retval = for_all_cpus(get_counters, EVEN_COUNTERS);
2029         if (retval < -1) {
2030                 exit(retval);
2031         } else if (retval == -1) {
2032                 if (restarted > 1) {
2033                         exit(retval);
2034                 }
2035                 re_initialize();
2036                 goto restart;
2037         }
2038         restarted = 0;
2039         gettimeofday(&tv_even, (struct timezone *)NULL);
2040
2041         while (1) {
2042                 if (for_all_proc_cpus(cpu_is_not_present)) {
2043                         re_initialize();
2044                         goto restart;
2045                 }
2046                 nanosleep(&interval_ts, NULL);
2047                 if (snapshot_proc_sysfs_files())
2048                         goto restart;
2049                 retval = for_all_cpus(get_counters, ODD_COUNTERS);
2050                 if (retval < -1) {
2051                         exit(retval);
2052                 } else if (retval == -1) {
2053                         re_initialize();
2054                         goto restart;
2055                 }
2056                 gettimeofday(&tv_odd, (struct timezone *)NULL);
2057                 timersub(&tv_odd, &tv_even, &tv_delta);
2058                 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2059                         re_initialize();
2060                         goto restart;
2061                 }
2062                 compute_average(EVEN_COUNTERS);
2063                 format_all_counters(EVEN_COUNTERS);
2064                 flush_output_stdout();
2065                 nanosleep(&interval_ts, NULL);
2066                 if (snapshot_proc_sysfs_files())
2067                         goto restart;
2068                 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
2069                 if (retval < -1) {
2070                         exit(retval);
2071                 } else if (retval == -1) {
2072                         re_initialize();
2073                         goto restart;
2074                 }
2075                 gettimeofday(&tv_even, (struct timezone *)NULL);
2076                 timersub(&tv_even, &tv_odd, &tv_delta);
2077                 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2078                         re_initialize();
2079                         goto restart;
2080                 }
2081                 compute_average(ODD_COUNTERS);
2082                 format_all_counters(ODD_COUNTERS);
2083                 flush_output_stdout();
2084         }
2085 }
2086
2087 void check_dev_msr()
2088 {
2089         struct stat sb;
2090         char pathname[32];
2091
2092         sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2093         if (stat(pathname, &sb))
2094                 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2095                         err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
2096 }
2097
2098 void check_permissions()
2099 {
2100         struct __user_cap_header_struct cap_header_data;
2101         cap_user_header_t cap_header = &cap_header_data;
2102         struct __user_cap_data_struct cap_data_data;
2103         cap_user_data_t cap_data = &cap_data_data;
2104         extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2105         int do_exit = 0;
2106         char pathname[32];
2107
2108         /* check for CAP_SYS_RAWIO */
2109         cap_header->pid = getpid();
2110         cap_header->version = _LINUX_CAPABILITY_VERSION;
2111         if (capget(cap_header, cap_data) < 0)
2112                 err(-6, "capget(2) failed");
2113
2114         if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2115                 do_exit++;
2116                 warnx("capget(CAP_SYS_RAWIO) failed,"
2117                         " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2118         }
2119
2120         /* test file permissions */
2121         sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2122         if (euidaccess(pathname, R_OK)) {
2123                 do_exit++;
2124                 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2125         }
2126
2127         /* if all else fails, thell them to be root */
2128         if (do_exit)
2129                 if (getuid() != 0)
2130                         warnx("... or simply run as root");
2131
2132         if (do_exit)
2133                 exit(-6);
2134 }
2135
2136 /*
2137  * NHM adds support for additional MSRs:
2138  *
2139  * MSR_SMI_COUNT                   0x00000034
2140  *
2141  * MSR_PLATFORM_INFO               0x000000ce
2142  * MSR_NHM_SNB_PKG_CST_CFG_CTL     0x000000e2
2143  *
2144  * MSR_PKG_C3_RESIDENCY            0x000003f8
2145  * MSR_PKG_C6_RESIDENCY            0x000003f9
2146  * MSR_CORE_C3_RESIDENCY           0x000003fc
2147  * MSR_CORE_C6_RESIDENCY           0x000003fd
2148  *
2149  * Side effect:
2150  * sets global pkg_cstate_limit to decode MSR_NHM_SNB_PKG_CST_CFG_CTL
2151  */
2152 int probe_nhm_msrs(unsigned int family, unsigned int model)
2153 {
2154         unsigned long long msr;
2155         unsigned int base_ratio;
2156         int *pkg_cstate_limits;
2157
2158         if (!genuine_intel)
2159                 return 0;
2160
2161         if (family != 6)
2162                 return 0;
2163
2164         bclk = discover_bclk(family, model);
2165
2166         switch (model) {
2167         case INTEL_FAM6_NEHALEM_EP:     /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2168         case INTEL_FAM6_NEHALEM:        /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
2169         case 0x1F:      /* Core i7 and i5 Processor - Nehalem */
2170         case INTEL_FAM6_WESTMERE:       /* Westmere Client - Clarkdale, Arrandale */
2171         case INTEL_FAM6_WESTMERE_EP:    /* Westmere EP - Gulftown */
2172         case INTEL_FAM6_NEHALEM_EX:     /* Nehalem-EX Xeon - Beckton */
2173         case INTEL_FAM6_WESTMERE_EX:    /* Westmere-EX Xeon - Eagleton */
2174                 pkg_cstate_limits = nhm_pkg_cstate_limits;
2175                 break;
2176         case INTEL_FAM6_SANDYBRIDGE:    /* SNB */
2177         case INTEL_FAM6_SANDYBRIDGE_X:  /* SNB Xeon */
2178         case INTEL_FAM6_IVYBRIDGE:      /* IVB */
2179         case INTEL_FAM6_IVYBRIDGE_X:    /* IVB Xeon */
2180                 pkg_cstate_limits = snb_pkg_cstate_limits;
2181                 break;
2182         case INTEL_FAM6_HASWELL_CORE:   /* HSW */
2183         case INTEL_FAM6_HASWELL_X:      /* HSX */
2184         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2185         case INTEL_FAM6_HASWELL_GT3E:   /* HSW */
2186         case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2187         case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2188         case INTEL_FAM6_BROADWELL_X:    /* BDX */
2189         case INTEL_FAM6_BROADWELL_XEON_D:       /* BDX-DE */
2190         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2191         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2192         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2193         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2194         case INTEL_FAM6_SKYLAKE_X:      /* SKX */
2195                 pkg_cstate_limits = hsw_pkg_cstate_limits;
2196                 break;
2197         case INTEL_FAM6_ATOM_SILVERMONT1:       /* BYT */
2198         case INTEL_FAM6_ATOM_SILVERMONT2:       /* AVN */
2199                 pkg_cstate_limits = slv_pkg_cstate_limits;
2200                 break;
2201         case INTEL_FAM6_ATOM_AIRMONT:   /* AMT */
2202                 pkg_cstate_limits = amt_pkg_cstate_limits;
2203                 break;
2204         case INTEL_FAM6_XEON_PHI_KNL:   /* PHI */
2205                 pkg_cstate_limits = phi_pkg_cstate_limits;
2206                 break;
2207         case INTEL_FAM6_ATOM_GOLDMONT:  /* BXT */
2208         case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
2209                 pkg_cstate_limits = bxt_pkg_cstate_limits;
2210                 break;
2211         default:
2212                 return 0;
2213         }
2214         get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
2215         pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
2216
2217         get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
2218         base_ratio = (msr >> 8) & 0xFF;
2219
2220         base_hz = base_ratio * bclk * 1000000;
2221         has_base_hz = 1;
2222         return 1;
2223 }
2224 int has_nhm_turbo_ratio_limit(unsigned int family, unsigned int model)
2225 {
2226         switch (model) {
2227         /* Nehalem compatible, but do not include turbo-ratio limit support */
2228         case INTEL_FAM6_NEHALEM_EX:     /* Nehalem-EX Xeon - Beckton */
2229         case INTEL_FAM6_WESTMERE_EX:    /* Westmere-EX Xeon - Eagleton */
2230         case INTEL_FAM6_XEON_PHI_KNL:   /* PHI - Knights Landing (different MSR definition) */
2231                 return 0;
2232         default:
2233                 return 1;
2234         }
2235 }
2236 int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2237 {
2238         if (!genuine_intel)
2239                 return 0;
2240
2241         if (family != 6)
2242                 return 0;
2243
2244         switch (model) {
2245         case INTEL_FAM6_IVYBRIDGE_X:    /* IVB Xeon */
2246         case INTEL_FAM6_HASWELL_X:      /* HSW Xeon */
2247                 return 1;
2248         default:
2249                 return 0;
2250         }
2251 }
2252 int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2253 {
2254         if (!genuine_intel)
2255                 return 0;
2256
2257         if (family != 6)
2258                 return 0;
2259
2260         switch (model) {
2261         case INTEL_FAM6_HASWELL_X:      /* HSW Xeon */
2262                 return 1;
2263         default:
2264                 return 0;
2265         }
2266 }
2267
2268 int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2269 {
2270         if (!genuine_intel)
2271                 return 0;
2272
2273         if (family != 6)
2274                 return 0;
2275
2276         switch (model) {
2277         case INTEL_FAM6_XEON_PHI_KNL:   /* Knights Landing */
2278                 return 1;
2279         default:
2280                 return 0;
2281         }
2282 }
2283 int has_config_tdp(unsigned int family, unsigned int model)
2284 {
2285         if (!genuine_intel)
2286                 return 0;
2287
2288         if (family != 6)
2289                 return 0;
2290
2291         switch (model) {
2292         case INTEL_FAM6_IVYBRIDGE:      /* IVB */
2293         case INTEL_FAM6_HASWELL_CORE:   /* HSW */
2294         case INTEL_FAM6_HASWELL_X:      /* HSX */
2295         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2296         case INTEL_FAM6_HASWELL_GT3E:   /* HSW */
2297         case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2298         case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2299         case INTEL_FAM6_BROADWELL_X:    /* BDX */
2300         case INTEL_FAM6_BROADWELL_XEON_D:       /* BDX-DE */
2301         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2302         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2303         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2304         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2305         case INTEL_FAM6_SKYLAKE_X:      /* SKX */
2306
2307         case INTEL_FAM6_XEON_PHI_KNL:   /* Knights Landing */
2308                 return 1;
2309         default:
2310                 return 0;
2311         }
2312 }
2313
2314 static void
2315 dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
2316 {
2317         if (!do_nhm_platform_info)
2318                 return;
2319
2320         dump_nhm_platform_info();
2321
2322         if (has_hsw_turbo_ratio_limit(family, model))
2323                 dump_hsw_turbo_ratio_limits();
2324
2325         if (has_ivt_turbo_ratio_limit(family, model))
2326                 dump_ivt_turbo_ratio_limits();
2327
2328         if (has_nhm_turbo_ratio_limit(family, model))
2329                 dump_nhm_turbo_ratio_limits();
2330
2331         if (has_knl_turbo_ratio_limit(family, model))
2332                 dump_knl_turbo_ratio_limits();
2333
2334         if (has_config_tdp(family, model))
2335                 dump_config_tdp();
2336
2337         dump_nhm_cst_cfg();
2338 }
2339
2340
2341 /*
2342  * print_epb()
2343  * Decode the ENERGY_PERF_BIAS MSR
2344  */
2345 int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2346 {
2347         unsigned long long msr;
2348         char *epb_string;
2349         int cpu;
2350
2351         if (!has_epb)
2352                 return 0;
2353
2354         cpu = t->cpu_id;
2355
2356         /* EPB is per-package */
2357         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2358                 return 0;
2359
2360         if (cpu_migrate(cpu)) {
2361                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
2362                 return -1;
2363         }
2364
2365         if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
2366                 return 0;
2367
2368         switch (msr & 0xF) {
2369         case ENERGY_PERF_BIAS_PERFORMANCE:
2370                 epb_string = "performance";
2371                 break;
2372         case ENERGY_PERF_BIAS_NORMAL:
2373                 epb_string = "balanced";
2374                 break;
2375         case ENERGY_PERF_BIAS_POWERSAVE:
2376                 epb_string = "powersave";
2377                 break;
2378         default:
2379                 epb_string = "custom";
2380                 break;
2381         }
2382         fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
2383
2384         return 0;
2385 }
2386 /*
2387  * print_hwp()
2388  * Decode the MSR_HWP_CAPABILITIES
2389  */
2390 int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2391 {
2392         unsigned long long msr;
2393         int cpu;
2394
2395         if (!has_hwp)
2396                 return 0;
2397
2398         cpu = t->cpu_id;
2399
2400         /* MSR_HWP_CAPABILITIES is per-package */
2401         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2402                 return 0;
2403
2404         if (cpu_migrate(cpu)) {
2405                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
2406                 return -1;
2407         }
2408
2409         if (get_msr(cpu, MSR_PM_ENABLE, &msr))
2410                 return 0;
2411
2412         fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
2413                 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
2414
2415         /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
2416         if ((msr & (1 << 0)) == 0)
2417                 return 0;
2418
2419         if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
2420                 return 0;
2421
2422         fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
2423                         "(high 0x%x guar 0x%x eff 0x%x low 0x%x)\n",
2424                         cpu, msr,
2425                         (unsigned int)HWP_HIGHEST_PERF(msr),
2426                         (unsigned int)HWP_GUARANTEED_PERF(msr),
2427                         (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
2428                         (unsigned int)HWP_LOWEST_PERF(msr));
2429
2430         if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
2431                 return 0;
2432
2433         fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
2434                         "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x pkg 0x%x)\n",
2435                         cpu, msr,
2436                         (unsigned int)(((msr) >> 0) & 0xff),
2437                         (unsigned int)(((msr) >> 8) & 0xff),
2438                         (unsigned int)(((msr) >> 16) & 0xff),
2439                         (unsigned int)(((msr) >> 24) & 0xff),
2440                         (unsigned int)(((msr) >> 32) & 0xff3),
2441                         (unsigned int)(((msr) >> 42) & 0x1));
2442
2443         if (has_hwp_pkg) {
2444                 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
2445                         return 0;
2446
2447                 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
2448                         "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x)\n",
2449                         cpu, msr,
2450                         (unsigned int)(((msr) >> 0) & 0xff),
2451                         (unsigned int)(((msr) >> 8) & 0xff),
2452                         (unsigned int)(((msr) >> 16) & 0xff),
2453                         (unsigned int)(((msr) >> 24) & 0xff),
2454                         (unsigned int)(((msr) >> 32) & 0xff3));
2455         }
2456         if (has_hwp_notify) {
2457                 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
2458                         return 0;
2459
2460                 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
2461                         "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
2462                         cpu, msr,
2463                         ((msr) & 0x1) ? "EN" : "Dis",
2464                         ((msr) & 0x2) ? "EN" : "Dis");
2465         }
2466         if (get_msr(cpu, MSR_HWP_STATUS, &msr))
2467                 return 0;
2468
2469         fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
2470                         "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
2471                         cpu, msr,
2472                         ((msr) & 0x1) ? "" : "No-",
2473                         ((msr) & 0x2) ? "" : "No-");
2474
2475         return 0;
2476 }
2477
2478 /*
2479  * print_perf_limit()
2480  */
2481 int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2482 {
2483         unsigned long long msr;
2484         int cpu;
2485
2486         cpu = t->cpu_id;
2487
2488         /* per-package */
2489         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2490                 return 0;
2491
2492         if (cpu_migrate(cpu)) {
2493                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
2494                 return -1;
2495         }
2496
2497         if (do_core_perf_limit_reasons) {
2498                 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
2499                 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2500                 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
2501                         (msr & 1 << 15) ? "bit15, " : "",
2502                         (msr & 1 << 14) ? "bit14, " : "",
2503                         (msr & 1 << 13) ? "Transitions, " : "",
2504                         (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
2505                         (msr & 1 << 11) ? "PkgPwrL2, " : "",
2506                         (msr & 1 << 10) ? "PkgPwrL1, " : "",
2507                         (msr & 1 << 9) ? "CorePwr, " : "",
2508                         (msr & 1 << 8) ? "Amps, " : "",
2509                         (msr & 1 << 6) ? "VR-Therm, " : "",
2510                         (msr & 1 << 5) ? "Auto-HWP, " : "",
2511                         (msr & 1 << 4) ? "Graphics, " : "",
2512                         (msr & 1 << 2) ? "bit2, " : "",
2513                         (msr & 1 << 1) ? "ThermStatus, " : "",
2514                         (msr & 1 << 0) ? "PROCHOT, " : "");
2515                 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)\n",
2516                         (msr & 1 << 31) ? "bit31, " : "",
2517                         (msr & 1 << 30) ? "bit30, " : "",
2518                         (msr & 1 << 29) ? "Transitions, " : "",
2519                         (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
2520                         (msr & 1 << 27) ? "PkgPwrL2, " : "",
2521                         (msr & 1 << 26) ? "PkgPwrL1, " : "",
2522                         (msr & 1 << 25) ? "CorePwr, " : "",
2523                         (msr & 1 << 24) ? "Amps, " : "",
2524                         (msr & 1 << 22) ? "VR-Therm, " : "",
2525                         (msr & 1 << 21) ? "Auto-HWP, " : "",
2526                         (msr & 1 << 20) ? "Graphics, " : "",
2527                         (msr & 1 << 18) ? "bit18, " : "",
2528                         (msr & 1 << 17) ? "ThermStatus, " : "",
2529                         (msr & 1 << 16) ? "PROCHOT, " : "");
2530
2531         }
2532         if (do_gfx_perf_limit_reasons) {
2533                 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
2534                 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2535                 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
2536                         (msr & 1 << 0) ? "PROCHOT, " : "",
2537                         (msr & 1 << 1) ? "ThermStatus, " : "",
2538                         (msr & 1 << 4) ? "Graphics, " : "",
2539                         (msr & 1 << 6) ? "VR-Therm, " : "",
2540                         (msr & 1 << 8) ? "Amps, " : "",
2541                         (msr & 1 << 9) ? "GFXPwr, " : "",
2542                         (msr & 1 << 10) ? "PkgPwrL1, " : "",
2543                         (msr & 1 << 11) ? "PkgPwrL2, " : "");
2544                 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
2545                         (msr & 1 << 16) ? "PROCHOT, " : "",
2546                         (msr & 1 << 17) ? "ThermStatus, " : "",
2547                         (msr & 1 << 20) ? "Graphics, " : "",
2548                         (msr & 1 << 22) ? "VR-Therm, " : "",
2549                         (msr & 1 << 24) ? "Amps, " : "",
2550                         (msr & 1 << 25) ? "GFXPwr, " : "",
2551                         (msr & 1 << 26) ? "PkgPwrL1, " : "",
2552                         (msr & 1 << 27) ? "PkgPwrL2, " : "");
2553         }
2554         if (do_ring_perf_limit_reasons) {
2555                 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
2556                 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2557                 fprintf(outf, " (Active: %s%s%s%s%s%s)",
2558                         (msr & 1 << 0) ? "PROCHOT, " : "",
2559                         (msr & 1 << 1) ? "ThermStatus, " : "",
2560                         (msr & 1 << 6) ? "VR-Therm, " : "",
2561                         (msr & 1 << 8) ? "Amps, " : "",
2562                         (msr & 1 << 10) ? "PkgPwrL1, " : "",
2563                         (msr & 1 << 11) ? "PkgPwrL2, " : "");
2564                 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
2565                         (msr & 1 << 16) ? "PROCHOT, " : "",
2566                         (msr & 1 << 17) ? "ThermStatus, " : "",
2567                         (msr & 1 << 22) ? "VR-Therm, " : "",
2568                         (msr & 1 << 24) ? "Amps, " : "",
2569                         (msr & 1 << 26) ? "PkgPwrL1, " : "",
2570                         (msr & 1 << 27) ? "PkgPwrL2, " : "");
2571         }
2572         return 0;
2573 }
2574
2575 #define RAPL_POWER_GRANULARITY  0x7FFF  /* 15 bit power granularity */
2576 #define RAPL_TIME_GRANULARITY   0x3F /* 6 bit time granularity */
2577
2578 double get_tdp(unsigned int model)
2579 {
2580         unsigned long long msr;
2581
2582         if (do_rapl & RAPL_PKG_POWER_INFO)
2583                 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
2584                         return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
2585
2586         switch (model) {
2587         case INTEL_FAM6_ATOM_SILVERMONT1:
2588         case INTEL_FAM6_ATOM_SILVERMONT2:
2589                 return 30.0;
2590         default:
2591                 return 135.0;
2592         }
2593 }
2594
2595 /*
2596  * rapl_dram_energy_units_probe()
2597  * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
2598  */
2599 static double
2600 rapl_dram_energy_units_probe(int  model, double rapl_energy_units)
2601 {
2602         /* only called for genuine_intel, family 6 */
2603
2604         switch (model) {
2605         case INTEL_FAM6_HASWELL_X:      /* HSX */
2606         case INTEL_FAM6_BROADWELL_X:    /* BDX */
2607         case INTEL_FAM6_BROADWELL_XEON_D:       /* BDX-DE */
2608         case INTEL_FAM6_XEON_PHI_KNL:   /* KNL */
2609                 return (rapl_dram_energy_units = 15.3 / 1000000);
2610         default:
2611                 return (rapl_energy_units);
2612         }
2613 }
2614
2615
2616 /*
2617  * rapl_probe()
2618  *
2619  * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
2620  */
2621 void rapl_probe(unsigned int family, unsigned int model)
2622 {
2623         unsigned long long msr;
2624         unsigned int time_unit;
2625         double tdp;
2626
2627         if (!genuine_intel)
2628                 return;
2629
2630         if (family != 6)
2631                 return;
2632
2633         switch (model) {
2634         case INTEL_FAM6_SANDYBRIDGE:
2635         case INTEL_FAM6_IVYBRIDGE:
2636         case INTEL_FAM6_HASWELL_CORE:   /* HSW */
2637         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2638         case INTEL_FAM6_HASWELL_GT3E:   /* HSW */
2639         case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2640         case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2641                 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
2642                 break;
2643         case INTEL_FAM6_ATOM_GOLDMONT:  /* BXT */
2644                 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
2645                 break;
2646         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2647         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2648         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2649         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2650                 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
2651                 break;
2652         case INTEL_FAM6_HASWELL_X:      /* HSX */
2653         case INTEL_FAM6_BROADWELL_X:    /* BDX */
2654         case INTEL_FAM6_BROADWELL_XEON_D:       /* BDX-DE */
2655         case INTEL_FAM6_SKYLAKE_X:      /* SKX */
2656         case INTEL_FAM6_XEON_PHI_KNL:   /* KNL */
2657                 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
2658                 break;
2659         case INTEL_FAM6_SANDYBRIDGE_X:
2660         case INTEL_FAM6_IVYBRIDGE_X:
2661                 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_PKG_PERF_STATUS | RAPL_DRAM_PERF_STATUS | RAPL_PKG_POWER_INFO;
2662                 break;
2663         case INTEL_FAM6_ATOM_SILVERMONT1:       /* BYT */
2664         case INTEL_FAM6_ATOM_SILVERMONT2:       /* AVN */
2665                 do_rapl = RAPL_PKG | RAPL_CORES;
2666                 break;
2667         case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
2668                 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO | RAPL_CORES_ENERGY_STATUS;
2669                 break;
2670         default:
2671                 return;
2672         }
2673
2674         /* units on package 0, verify later other packages match */
2675         if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
2676                 return;
2677
2678         rapl_power_units = 1.0 / (1 << (msr & 0xF));
2679         if (model == INTEL_FAM6_ATOM_SILVERMONT1)
2680                 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
2681         else
2682                 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
2683
2684         rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
2685
2686         time_unit = msr >> 16 & 0xF;
2687         if (time_unit == 0)
2688                 time_unit = 0xA;
2689
2690         rapl_time_units = 1.0 / (1 << (time_unit));
2691
2692         tdp = get_tdp(model);
2693
2694         rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
2695         if (debug)
2696                 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
2697
2698         return;
2699 }
2700
2701 void perf_limit_reasons_probe(unsigned int family, unsigned int model)
2702 {
2703         if (!genuine_intel)
2704                 return;
2705
2706         if (family != 6)
2707                 return;
2708
2709         switch (model) {
2710         case INTEL_FAM6_HASWELL_CORE:   /* HSW */
2711         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2712         case INTEL_FAM6_HASWELL_GT3E:   /* HSW */
2713                 do_gfx_perf_limit_reasons = 1;
2714         case INTEL_FAM6_HASWELL_X:      /* HSX */
2715                 do_core_perf_limit_reasons = 1;
2716                 do_ring_perf_limit_reasons = 1;
2717         default:
2718                 return;
2719         }
2720 }
2721
2722 int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2723 {
2724         unsigned long long msr;
2725         unsigned int dts;
2726         int cpu;
2727
2728         if (!(do_dts || do_ptm))
2729                 return 0;
2730
2731         cpu = t->cpu_id;
2732
2733         /* DTS is per-core, no need to print for each thread */
2734         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE)) 
2735                 return 0;
2736
2737         if (cpu_migrate(cpu)) {
2738                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
2739                 return -1;
2740         }
2741
2742         if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
2743                 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
2744                         return 0;
2745
2746                 dts = (msr >> 16) & 0x7F;
2747                 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
2748                         cpu, msr, tcc_activation_temp - dts);
2749
2750 #ifdef  THERM_DEBUG
2751                 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
2752                         return 0;
2753
2754                 dts = (msr >> 16) & 0x7F;
2755                 dts2 = (msr >> 8) & 0x7F;
2756                 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
2757                         cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2758 #endif
2759         }
2760
2761
2762         if (do_dts) {
2763                 unsigned int resolution;
2764
2765                 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
2766                         return 0;
2767
2768                 dts = (msr >> 16) & 0x7F;
2769                 resolution = (msr >> 27) & 0xF;
2770                 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
2771                         cpu, msr, tcc_activation_temp - dts, resolution);
2772
2773 #ifdef THERM_DEBUG
2774                 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
2775                         return 0;
2776
2777                 dts = (msr >> 16) & 0x7F;
2778                 dts2 = (msr >> 8) & 0x7F;
2779                 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
2780                         cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2781 #endif
2782         }
2783
2784         return 0;
2785 }
2786
2787 void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
2788 {
2789         fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
2790                 cpu, label,
2791                 ((msr >> 15) & 1) ? "EN" : "DIS",
2792                 ((msr >> 0) & 0x7FFF) * rapl_power_units,
2793                 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
2794                 (((msr >> 16) & 1) ? "EN" : "DIS"));
2795
2796         return;
2797 }
2798
2799 int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2800 {
2801         unsigned long long msr;
2802         int cpu;
2803
2804         if (!do_rapl)
2805                 return 0;
2806
2807         /* RAPL counters are per package, so print only for 1st thread/package */
2808         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2809                 return 0;
2810
2811         cpu = t->cpu_id;
2812         if (cpu_migrate(cpu)) {
2813                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
2814                 return -1;
2815         }
2816
2817         if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
2818                 return -1;
2819
2820         if (debug) {
2821                 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx "
2822                         "(%f Watts, %f Joules, %f sec.)\n", cpu, msr,
2823                         rapl_power_units, rapl_energy_units, rapl_time_units);
2824         }
2825         if (do_rapl & RAPL_PKG_POWER_INFO) {
2826
2827                 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
2828                         return -5;
2829
2830
2831                 fprintf(outf, "cpu%d: MSR_PKG_POWER_INFO: 0x%08llx (%.0f W TDP, RAPL %.0f - %.0f W, %f sec.)\n",
2832                         cpu, msr,
2833                         ((msr >>  0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2834                         ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2835                         ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2836                         ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
2837
2838         }
2839         if (do_rapl & RAPL_PKG) {
2840
2841                 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
2842                         return -9;
2843
2844                 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
2845                         cpu, msr, (msr >> 63) & 1 ? "": "UN");
2846
2847                 print_power_limit_msr(cpu, msr, "PKG Limit #1");
2848                 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
2849                         cpu,
2850                         ((msr >> 47) & 1) ? "EN" : "DIS",
2851                         ((msr >> 32) & 0x7FFF) * rapl_power_units,
2852                         (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
2853                         ((msr >> 48) & 1) ? "EN" : "DIS");
2854         }
2855
2856         if (do_rapl & RAPL_DRAM_POWER_INFO) {
2857                 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
2858                         return -6;
2859
2860                 fprintf(outf, "cpu%d: MSR_DRAM_POWER_INFO,: 0x%08llx (%.0f W TDP, RAPL %.0f - %.0f W, %f sec.)\n",
2861                         cpu, msr,
2862                         ((msr >>  0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2863                         ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2864                         ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2865                         ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
2866         }
2867         if (do_rapl & RAPL_DRAM) {
2868                 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
2869                         return -9;
2870                 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
2871                                 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2872
2873                 print_power_limit_msr(cpu, msr, "DRAM Limit");
2874         }
2875         if (do_rapl & RAPL_CORE_POLICY) {
2876                 if (debug) {
2877                         if (get_msr(cpu, MSR_PP0_POLICY, &msr))
2878                                 return -7;
2879
2880                         fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
2881                 }
2882         }
2883         if (do_rapl & RAPL_CORES_POWER_LIMIT) {
2884                 if (debug) {
2885                         if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
2886                                 return -9;
2887                         fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
2888                                         cpu, msr, (msr >> 31) & 1 ? "": "UN");
2889                         print_power_limit_msr(cpu, msr, "Cores Limit");
2890                 }
2891         }
2892         if (do_rapl & RAPL_GFX) {
2893                 if (debug) {
2894                         if (get_msr(cpu, MSR_PP1_POLICY, &msr))
2895                                 return -8;
2896
2897                         fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
2898
2899                         if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
2900                                 return -9;
2901                         fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
2902                                         cpu, msr, (msr >> 31) & 1 ? "": "UN");
2903                         print_power_limit_msr(cpu, msr, "GFX Limit");
2904                 }
2905         }
2906         return 0;
2907 }
2908
2909 /*
2910  * SNB adds support for additional MSRs:
2911  *
2912  * MSR_PKG_C7_RESIDENCY            0x000003fa
2913  * MSR_CORE_C7_RESIDENCY           0x000003fe
2914  * MSR_PKG_C2_RESIDENCY            0x0000060d
2915  */
2916
2917 int has_snb_msrs(unsigned int family, unsigned int model)
2918 {
2919         if (!genuine_intel)
2920                 return 0;
2921
2922         switch (model) {
2923         case INTEL_FAM6_SANDYBRIDGE:
2924         case INTEL_FAM6_SANDYBRIDGE_X:
2925         case INTEL_FAM6_IVYBRIDGE:      /* IVB */
2926         case INTEL_FAM6_IVYBRIDGE_X:    /* IVB Xeon */
2927         case INTEL_FAM6_HASWELL_CORE:   /* HSW */
2928         case INTEL_FAM6_HASWELL_X:      /* HSW */
2929         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2930         case INTEL_FAM6_HASWELL_GT3E:   /* HSW */
2931         case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2932         case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2933         case INTEL_FAM6_BROADWELL_X:    /* BDX */
2934         case INTEL_FAM6_BROADWELL_XEON_D:       /* BDX-DE */
2935         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2936         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2937         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2938         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2939         case INTEL_FAM6_SKYLAKE_X:      /* SKX */
2940         case INTEL_FAM6_ATOM_GOLDMONT:  /* BXT */
2941         case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
2942                 return 1;
2943         }
2944         return 0;
2945 }
2946
2947 /*
2948  * HSW adds support for additional MSRs:
2949  *
2950  * MSR_PKG_C8_RESIDENCY         0x00000630
2951  * MSR_PKG_C9_RESIDENCY         0x00000631
2952  * MSR_PKG_C10_RESIDENCY        0x00000632
2953  *
2954  * MSR_PKGC8_IRTL               0x00000633
2955  * MSR_PKGC9_IRTL               0x00000634
2956  * MSR_PKGC10_IRTL              0x00000635
2957  *
2958  */
2959 int has_hsw_msrs(unsigned int family, unsigned int model)
2960 {
2961         if (!genuine_intel)
2962                 return 0;
2963
2964         switch (model) {
2965         case INTEL_FAM6_HASWELL_ULT:    /* HSW */
2966         case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2967         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2968         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2969         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2970         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2971         case INTEL_FAM6_ATOM_GOLDMONT:  /* BXT */
2972                 return 1;
2973         }
2974         return 0;
2975 }
2976
2977 /*
2978  * SKL adds support for additional MSRS:
2979  *
2980  * MSR_PKG_WEIGHTED_CORE_C0_RES    0x00000658
2981  * MSR_PKG_ANY_CORE_C0_RES         0x00000659
2982  * MSR_PKG_ANY_GFXE_C0_RES         0x0000065A
2983  * MSR_PKG_BOTH_CORE_GFXE_C0_RES   0x0000065B
2984  */
2985 int has_skl_msrs(unsigned int family, unsigned int model)
2986 {
2987         if (!genuine_intel)
2988                 return 0;
2989
2990         switch (model) {
2991         case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2992         case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
2993         case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
2994         case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
2995                 return 1;
2996         }
2997         return 0;
2998 }
2999
3000
3001
3002 int is_slm(unsigned int family, unsigned int model)
3003 {
3004         if (!genuine_intel)
3005                 return 0;
3006         switch (model) {
3007         case INTEL_FAM6_ATOM_SILVERMONT1:       /* BYT */
3008         case INTEL_FAM6_ATOM_SILVERMONT2:       /* AVN */
3009                 return 1;
3010         }
3011         return 0;
3012 }
3013
3014 int is_knl(unsigned int family, unsigned int model)
3015 {
3016         if (!genuine_intel)
3017                 return 0;
3018         switch (model) {
3019         case INTEL_FAM6_XEON_PHI_KNL:   /* KNL */
3020                 return 1;
3021         }
3022         return 0;
3023 }
3024
3025 unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3026 {
3027         if (is_knl(family, model))
3028                 return 1024;
3029         return 1;
3030 }
3031
3032 #define SLM_BCLK_FREQS 5
3033 double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3034
3035 double slm_bclk(void)
3036 {
3037         unsigned long long msr = 3;
3038         unsigned int i;
3039         double freq;
3040
3041         if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
3042                 fprintf(outf, "SLM BCLK: unknown\n");
3043
3044         i = msr & 0xf;
3045         if (i >= SLM_BCLK_FREQS) {
3046                 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
3047                 i = 3;
3048         }
3049         freq = slm_freq_table[i];
3050
3051         fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
3052
3053         return freq;
3054 }
3055
3056 double discover_bclk(unsigned int family, unsigned int model)
3057 {
3058         if (has_snb_msrs(family, model) || is_knl(family, model))
3059                 return 100.00;
3060         else if (is_slm(family, model))
3061                 return slm_bclk();
3062         else
3063                 return 133.33;
3064 }
3065
3066 /*
3067  * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3068  * the Thermal Control Circuit (TCC) activates.
3069  * This is usually equal to tjMax.
3070  *
3071  * Older processors do not have this MSR, so there we guess,
3072  * but also allow cmdline over-ride with -T.
3073  *
3074  * Several MSR temperature values are in units of degrees-C
3075  * below this value, including the Digital Thermal Sensor (DTS),
3076  * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3077  */
3078 int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3079 {
3080         unsigned long long msr;
3081         unsigned int target_c_local;
3082         int cpu;
3083
3084         /* tcc_activation_temp is used only for dts or ptm */
3085         if (!(do_dts || do_ptm))
3086                 return 0;
3087
3088         /* this is a per-package concept */
3089         if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3090                 return 0;
3091
3092         cpu = t->cpu_id;
3093         if (cpu_migrate(cpu)) {
3094                 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
3095                 return -1;
3096         }
3097
3098         if (tcc_activation_temp_override != 0) {
3099                 tcc_activation_temp = tcc_activation_temp_override;
3100                 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
3101                         cpu, tcc_activation_temp);
3102                 return 0;
3103         }
3104
3105         /* Temperature Target MSR is Nehalem and newer only */
3106         if (!do_nhm_platform_info)
3107                 goto guess;
3108
3109         if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
3110                 goto guess;
3111
3112         target_c_local = (msr >> 16) & 0xFF;
3113
3114         if (debug)
3115                 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
3116                         cpu, msr, target_c_local);
3117
3118         if (!target_c_local)
3119                 goto guess;
3120
3121         tcc_activation_temp = target_c_local;
3122
3123         return 0;
3124
3125 guess:
3126         tcc_activation_temp = TJMAX_DEFAULT;
3127         fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
3128                 cpu, tcc_activation_temp);
3129
3130         return 0;
3131 }
3132
3133 void decode_feature_control_msr(void)
3134 {
3135         unsigned long long msr;
3136
3137         if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3138                 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3139                         base_cpu, msr,
3140                         msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3141                         msr & (1 << 18) ? "SGX" : "");
3142 }
3143
3144 void decode_misc_enable_msr(void)
3145 {
3146         unsigned long long msr;
3147
3148         if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
3149                 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%s %s %s)\n",
3150                         base_cpu, msr,
3151                         msr & (1 << 3) ? "TCC" : "",
3152                         msr & (1 << 16) ? "EIST" : "",
3153                         msr & (1 << 18) ? "MONITOR" : "");
3154 }
3155
3156 /*
3157  * Decode MSR_MISC_PWR_MGMT
3158  *
3159  * Decode the bits according to the Nehalem documentation
3160  * bit[0] seems to continue to have same meaning going forward
3161  * bit[1] less so...
3162  */
3163 void decode_misc_pwr_mgmt_msr(void)
3164 {
3165         unsigned long long msr;
3166
3167         if (!do_nhm_platform_info)
3168                 return;
3169
3170         if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
3171                 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB %sable-OOB)\n",
3172                         base_cpu, msr,
3173                         msr & (1 << 0) ? "DIS" : "EN",
3174                         msr & (1 << 1) ? "EN" : "DIS",
3175                         msr & (1 << 8) ? "EN" : "DIS");
3176 }
3177
3178 void process_cpuid()
3179 {
3180         unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
3181         unsigned int fms, family, model, stepping;
3182
3183         eax = ebx = ecx = edx = 0;
3184
3185         __cpuid(0, max_level, ebx, ecx, edx);
3186
3187         if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
3188                 genuine_intel = 1;
3189
3190         if (debug)
3191                 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
3192                         (char *)&ebx, (char *)&edx, (char *)&ecx);
3193
3194         __cpuid(1, fms, ebx, ecx, edx);
3195         family = (fms >> 8) & 0xf;
3196         model = (fms >> 4) & 0xf;
3197         stepping = fms & 0xf;
3198         if (family == 6 || family == 0xf)
3199                 model += ((fms >> 16) & 0xf) << 4;
3200
3201         if (debug) {
3202                 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
3203                         max_level, family, model, stepping, family, model, stepping);
3204                 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
3205                         ecx & (1 << 0) ? "SSE3" : "-",
3206                         ecx & (1 << 3) ? "MONITOR" : "-",
3207                         ecx & (1 << 6) ? "SMX" : "-",
3208                         ecx & (1 << 7) ? "EIST" : "-",
3209                         ecx & (1 << 8) ? "TM2" : "-",
3210                         edx & (1 << 4) ? "TSC" : "-",
3211                         edx & (1 << 5) ? "MSR" : "-",
3212                         edx & (1 << 22) ? "ACPI-TM" : "-",
3213                         edx & (1 << 29) ? "TM" : "-");
3214         }
3215
3216         if (!(edx & (1 << 5)))
3217                 errx(1, "CPUID: no MSR");
3218
3219         /*
3220          * check max extended function levels of CPUID.
3221          * This is needed to check for invariant TSC.
3222          * This check is valid for both Intel and AMD.
3223          */
3224         ebx = ecx = edx = 0;
3225         __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
3226
3227         if (max_extended_level >= 0x80000007) {
3228
3229                 /*
3230                  * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
3231                  * this check is valid for both Intel and AMD
3232                  */
3233                 __cpuid(0x80000007, eax, ebx, ecx, edx);
3234                 has_invariant_tsc = edx & (1 << 8);
3235         }
3236
3237         /*
3238          * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
3239          * this check is valid for both Intel and AMD
3240          */
3241
3242         __cpuid(0x6, eax, ebx, ecx, edx);
3243         has_aperf = ecx & (1 << 0);
3244         do_dts = eax & (1 << 0);
3245         do_ptm = eax & (1 << 6);
3246         has_hwp = eax & (1 << 7);
3247         has_hwp_notify = eax & (1 << 8);
3248         has_hwp_activity_window = eax & (1 << 9);
3249         has_hwp_epp = eax & (1 << 10);
3250         has_hwp_pkg = eax & (1 << 11);
3251         has_epb = ecx & (1 << 3);
3252
3253         if (debug)
3254                 fprintf(outf, "CPUID(6): %sAPERF, %sDTS, %sPTM, %sHWP, "
3255                         "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
3256                         has_aperf ? "" : "No-",
3257                         do_dts ? "" : "No-",
3258                         do_ptm ? "" : "No-",
3259                         has_hwp ? "" : "No-",
3260                         has_hwp_notify ? "" : "No-",
3261                         has_hwp_activity_window ? "" : "No-",
3262                         has_hwp_epp ? "" : "No-",
3263                         has_hwp_pkg ? "" : "No-",
3264                         has_epb ? "" : "No-");
3265
3266         if (debug)
3267                 decode_misc_enable_msr();
3268
3269         if (max_level >= 0x7 && debug) {
3270                 int has_sgx;
3271
3272                 ecx = 0;
3273
3274                 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
3275
3276                 has_sgx = ebx & (1 << 2);
3277                 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
3278
3279                 if (has_sgx)
3280                         decode_feature_control_msr();
3281         }
3282
3283         if (max_level >= 0x15) {
3284                 unsigned int eax_crystal;
3285                 unsigned int ebx_tsc;
3286
3287                 /*
3288                  * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
3289                  */
3290                 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
3291                 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
3292
3293                 if (ebx_tsc != 0) {
3294
3295                         if (debug && (ebx != 0))
3296                                 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
3297                                         eax_crystal, ebx_tsc, crystal_hz);
3298
3299                         if (crystal_hz == 0)
3300                                 switch(model) {
3301                                 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3302                                 case INTEL_FAM6_SKYLAKE_DESKTOP:        /* SKL */
3303                                 case INTEL_FAM6_KABYLAKE_MOBILE:        /* KBL */
3304                                 case INTEL_FAM6_KABYLAKE_DESKTOP:       /* KBL */
3305                                         crystal_hz = 24000000;  /* 24.0 MHz */
3306                                         break;
3307                                 case INTEL_FAM6_SKYLAKE_X:      /* SKX */
3308                                         crystal_hz = 25000000;  /* 25.0 MHz */
3309                                         break;
3310                                 case INTEL_FAM6_ATOM_GOLDMONT:  /* BXT */
3311                                 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
3312                                         crystal_hz = 19200000;  /* 19.2 MHz */
3313                                         break;
3314                                 default:
3315                                         crystal_hz = 0;
3316                         }
3317
3318                         if (crystal_hz) {
3319                                 tsc_hz =  (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
3320                                 if (debug)
3321                                         fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
3322                                                 tsc_hz / 1000000, crystal_hz, ebx_tsc,  eax_crystal);
3323                         }
3324                 }
3325         }
3326         if (max_level >= 0x16) {
3327                 unsigned int base_mhz, max_mhz, bus_mhz, edx;
3328
3329                 /*
3330                  * CPUID 16H Base MHz, Max MHz, Bus MHz
3331                  */
3332                 base_mhz = max_mhz = bus_mhz = edx = 0;
3333
3334                 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
3335                 if (debug)
3336                         fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
3337                                 base_mhz, max_mhz, bus_mhz);
3338         }
3339
3340         if (has_aperf)
3341                 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
3342
3343         do_nhm_platform_info = do_nhm_cstates = do_smi = probe_nhm_msrs(family, model);
3344         do_snb_cstates = has_snb_msrs(family, model);
3345         do_irtl_snb = has_snb_msrs(family, model);
3346         do_pc2 = do_snb_cstates && (pkg_cstate_limit >= PCL__2);
3347         do_pc3 = (pkg_cstate_limit >= PCL__3);
3348         do_pc6 = (pkg_cstate_limit >= PCL__6);
3349         do_pc7 = do_snb_cstates && (pkg_cstate_limit >= PCL__7);
3350         do_c8_c9_c10 = has_hsw_msrs(family, model);
3351         do_irtl_hsw = has_hsw_msrs(family, model);
3352         do_skl_residency = has_skl_msrs(family, model);
3353         do_slm_cstates = is_slm(family, model);
3354         do_knl_cstates  = is_knl(family, model);
3355
3356         if (debug)
3357                 decode_misc_pwr_mgmt_msr();
3358
3359         rapl_probe(family, model);
3360         perf_limit_reasons_probe(family, model);
3361
3362         if (debug)
3363                 dump_cstate_pstate_config_info(family, model);
3364
3365         if (has_skl_msrs(family, model))
3366                 calculate_tsc_tweak();
3367
3368         do_gfx_rc6_ms = !access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK);
3369
3370         do_gfx_mhz = !access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK);
3371
3372         return;
3373 }
3374
3375 void help()
3376 {
3377         fprintf(outf,
3378         "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
3379         "\n"
3380         "Turbostat forks the specified COMMAND and prints statistics\n"
3381         "when COMMAND completes.\n"
3382         "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
3383         "to print statistics, until interrupted.\n"
3384         "--debug        run in \"debug\" mode\n"
3385         "--interval sec Override default 5-second measurement interval\n"
3386         "--help         print this help message\n"
3387         "--counter msr  print 32-bit counter at address \"msr\"\n"
3388         "--Counter msr  print 64-bit Counter at address \"msr\"\n"
3389         "--out file     create or truncate \"file\" for all output\n"
3390         "--msr msr      print 32-bit value at address \"msr\"\n"
3391         "--MSR msr      print 64-bit Value at address \"msr\"\n"
3392         "--version      print version information\n"
3393         "\n"
3394         "For more help, run \"man turbostat\"\n");
3395 }
3396
3397
3398 /*
3399  * in /dev/cpu/ return success for names that are numbers
3400  * ie. filter out ".", "..", "microcode".
3401  */
3402 int dir_filter(const struct dirent *dirp)
3403 {
3404         if (isdigit(dirp->d_name[0]))
3405                 return 1;
3406         else
3407                 return 0;
3408 }
3409
3410 int open_dev_cpu_msr(int dummy1)
3411 {
3412         return 0;
3413 }
3414
3415 void topology_probe()
3416 {
3417         int i;
3418         int max_core_id = 0;
3419         int max_package_id = 0;
3420         int max_siblings = 0;
3421         struct cpu_topology {
3422                 int core_id;
3423                 int physical_package_id;
3424         } *cpus;
3425
3426         /* Initialize num_cpus, max_cpu_num */
3427         topo.num_cpus = 0;
3428         topo.max_cpu_num = 0;
3429         for_all_proc_cpus(count_cpus);
3430         if (!summary_only && topo.num_cpus > 1)
3431                 show_cpu = 1;
3432
3433         if (debug > 1)
3434                 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
3435
3436         cpus = calloc(1, (topo.max_cpu_num  + 1) * sizeof(struct cpu_topology));
3437         if (cpus == NULL)
3438                 err(1, "calloc cpus");
3439
3440         /*
3441          * Allocate and initialize cpu_present_set
3442          */
3443         cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
3444         if (cpu_present_set == NULL)
3445                 err(3, "CPU_ALLOC");
3446         cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3447         CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
3448         for_all_proc_cpus(mark_cpu_present);
3449
3450         /*
3451          * Allocate and initialize cpu_affinity_set
3452          */
3453         cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
3454         if (cpu_affinity_set == NULL)
3455                 err(3, "CPU_ALLOC");
3456         cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3457         CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
3458
3459
3460         /*
3461          * For online cpus
3462          * find max_core_id, max_package_id
3463          */
3464         for (i = 0; i <= topo.max_cpu_num; ++i) {
3465                 int siblings;
3466
3467                 if (cpu_is_not_present(i)) {
3468                         if (debug > 1)
3469                                 fprintf(outf, "cpu%d NOT PRESENT\n", i);
3470                         continue;
3471                 }
3472                 cpus[i].core_id = get_core_id(i);
3473                 if (cpus[i].core_id > max_core_id)
3474                         max_core_id = cpus[i].core_id;
3475
3476                 cpus[i].physical_package_id = get_physical_package_id(i);
3477                 if (cpus[i].physical_package_id > max_package_id)
3478                         max_package_id = cpus[i].physical_package_id;
3479
3480                 siblings = get_num_ht_siblings(i);
3481                 if (siblings > max_siblings)
3482                         max_siblings = siblings;
3483                 if (debug > 1)
3484                         fprintf(outf, "cpu %d pkg %d core %d\n",
3485                                 i, cpus[i].physical_package_id, cpus[i].core_id);
3486         }
3487         topo.num_cores_per_pkg = max_core_id + 1;
3488         if (debug > 1)
3489                 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
3490                         max_core_id, topo.num_cores_per_pkg);
3491         if (debug && !summary_only && topo.num_cores_per_pkg > 1)
3492                 show_core = 1;
3493
3494         topo.num_packages = max_package_id + 1;
3495         if (debug > 1)
3496                 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
3497                         max_package_id, topo.num_packages);
3498         if (debug && !summary_only && topo.num_packages > 1)
3499                 show_pkg = 1;
3500
3501         topo.num_threads_per_core = max_siblings;
3502         if (debug > 1)
3503                 fprintf(outf, "max_siblings %d\n", max_siblings);
3504
3505         free(cpus);
3506 }
3507
3508 void
3509 allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
3510 {
3511         int i;
3512
3513         *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
3514                 topo.num_packages, sizeof(struct thread_data));
3515         if (*t == NULL)
3516                 goto error;
3517
3518         for (i = 0; i < topo.num_threads_per_core *
3519                 topo.num_cores_per_pkg * topo.num_packages; i++)
3520                 (*t)[i].cpu_id = -1;
3521
3522         *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
3523                 sizeof(struct core_data));
3524         if (*c == NULL)
3525                 goto error;
3526
3527         for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
3528                 (*c)[i].core_id = -1;
3529
3530         *p = calloc(topo.num_packages, sizeof(struct pkg_data));
3531         if (*p == NULL)
3532                 goto error;
3533
3534         for (i = 0; i < topo.num_packages; i++)
3535                 (*p)[i].package_id = i;
3536
3537         return;
3538 error:
3539         err(1, "calloc counters");
3540 }
3541 /*
3542  * init_counter()
3543  *
3544  * set cpu_id, core_num, pkg_num
3545  * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
3546  *
3547  * increment topo.num_cores when 1st core in pkg seen
3548  */
3549 void init_counter(struct thread_data *thread_base, struct core_data *core_base,
3550         struct pkg_data *pkg_base, int thread_num, int core_num,
3551         int pkg_num, int cpu_id)
3552 {
3553         struct thread_data *t;
3554         struct core_data *c;
3555         struct pkg_data *p;
3556
3557         t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
3558         c = GET_CORE(core_base, core_num, pkg_num);
3559         p = GET_PKG(pkg_base, pkg_num);
3560
3561         t->cpu_id = cpu_id;
3562         if (thread_num == 0) {
3563                 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
3564                 if (cpu_is_first_core_in_package(cpu_id))
3565                         t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
3566         }
3567
3568         c->core_id = core_num;
3569         p->package_id = pkg_num;
3570 }
3571
3572
3573 int initialize_counters(int cpu_id)
3574 {
3575         int my_thread_id, my_core_id, my_package_id;
3576
3577         my_package_id = get_physical_package_id(cpu_id);
3578         my_core_id = get_core_id(cpu_id);
3579         my_thread_id = get_cpu_position_in_core(cpu_id);
3580         if (!my_thread_id)
3581                 topo.num_cores++;
3582
3583         init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3584         init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3585         return 0;
3586 }
3587
3588 void allocate_output_buffer()
3589 {
3590         output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
3591         outp = output_buffer;
3592         if (outp == NULL)
3593                 err(-1, "calloc output buffer");
3594 }
3595 void allocate_fd_percpu(void)
3596 {
3597         fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
3598         if (fd_percpu == NULL)
3599                 err(-1, "calloc fd_percpu");
3600 }
3601 void allocate_irq_buffers(void)
3602 {
3603         irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
3604         if (irq_column_2_cpu == NULL)
3605                 err(-1, "calloc %d", topo.num_cpus);
3606
3607         irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
3608         if (irqs_per_cpu == NULL)
3609                 err(-1, "calloc %d", topo.max_cpu_num + 1);
3610 }
3611 void setup_all_buffers(void)
3612 {
3613         topology_probe();
3614         allocate_irq_buffers();
3615         allocate_fd_percpu();
3616         allocate_counters(&thread_even, &core_even, &package_even);
3617         allocate_counters(&thread_odd, &core_odd, &package_odd);
3618         allocate_output_buffer();
3619         for_all_proc_cpus(initialize_counters);
3620 }
3621
3622 void set_base_cpu(void)
3623 {
3624         base_cpu = sched_getcpu();
3625         if (base_cpu < 0)
3626                 err(-ENODEV, "No valid cpus found");
3627
3628         if (debug > 1)
3629                 fprintf(outf, "base_cpu = %d\n", base_cpu);
3630 }
3631
3632 void turbostat_init()
3633 {
3634         setup_all_buffers();
3635         set_base_cpu();
3636         check_dev_msr();
3637         check_permissions();
3638         process_cpuid();
3639
3640
3641         if (debug)
3642                 for_all_cpus(print_hwp, ODD_COUNTERS);
3643
3644         if (debug)
3645                 for_all_cpus(print_epb, ODD_COUNTERS);
3646
3647         if (debug)
3648                 for_all_cpus(print_perf_limit, ODD_COUNTERS);
3649
3650         if (debug)
3651                 for_all_cpus(print_rapl, ODD_COUNTERS);
3652
3653         for_all_cpus(set_temperature_target, ODD_COUNTERS);
3654
3655         if (debug)
3656                 for_all_cpus(print_thermal, ODD_COUNTERS);
3657
3658         if (debug && do_irtl_snb)
3659                 print_irtl();
3660 }
3661
3662 int fork_it(char **argv)
3663 {
3664         pid_t child_pid;
3665         int status;
3666
3667         status = for_all_cpus(get_counters, EVEN_COUNTERS);
3668         if (status)
3669                 exit(status);
3670         /* clear affinity side-effect of get_counters() */
3671         sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
3672         gettimeofday(&tv_even, (struct timezone *)NULL);
3673
3674         child_pid = fork();
3675         if (!child_pid) {
3676                 /* child */
3677                 execvp(argv[0], argv);
3678         } else {
3679
3680                 /* parent */
3681                 if (child_pid == -1)
3682                         err(1, "fork");
3683
3684                 signal(SIGINT, SIG_IGN);
3685                 signal(SIGQUIT, SIG_IGN);
3686                 if (waitpid(child_pid, &status, 0) == -1)
3687                         err(status, "waitpid");
3688         }
3689         /*
3690          * n.b. fork_it() does not check for errors from for_all_cpus()
3691          * because re-starting is problematic when forking
3692          */
3693         for_all_cpus(get_counters, ODD_COUNTERS);
3694         gettimeofday(&tv_odd, (struct timezone *)NULL);
3695         timersub(&tv_odd, &tv_even, &tv_delta);
3696         if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
3697                 fprintf(outf, "%s: Counter reset detected\n", progname);
3698         else {
3699                 compute_average(EVEN_COUNTERS);
3700                 format_all_counters(EVEN_COUNTERS);
3701         }
3702
3703         fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
3704
3705         flush_output_stderr();
3706
3707         return status;
3708 }
3709
3710 int get_and_dump_counters(void)
3711 {
3712         int status;
3713
3714         status = for_all_cpus(get_counters, ODD_COUNTERS);
3715         if (status)
3716                 return status;
3717
3718         status = for_all_cpus(dump_counters, ODD_COUNTERS);
3719         if (status)
3720                 return status;
3721
3722         flush_output_stdout();
3723
3724         return status;
3725 }
3726
3727 void print_version() {
3728         fprintf(outf, "turbostat version 4.14 22 Apr 2016"
3729                 " - Len Brown <lenb@kernel.org>\n");
3730 }
3731
3732 void cmdline(int argc, char **argv)
3733 {
3734         int opt;
3735         int option_index = 0;
3736         static struct option long_options[] = {
3737                 {"Counter",     required_argument,      0, 'C'},
3738                 {"counter",     required_argument,      0, 'c'},
3739                 {"Dump",        no_argument,            0, 'D'},
3740                 {"debug",       no_argument,            0, 'd'},
3741                 {"interval",    required_argument,      0, 'i'},
3742                 {"help",        no_argument,            0, 'h'},
3743                 {"Joules",      no_argument,            0, 'J'},
3744                 {"MSR",         required_argument,      0, 'M'},
3745                 {"msr",         required_argument,      0, 'm'},
3746                 {"out",         required_argument,      0, 'o'},
3747                 {"Package",     no_argument,            0, 'p'},
3748                 {"processor",   no_argument,            0, 'p'},
3749                 {"Summary",     no_argument,            0, 'S'},
3750                 {"TCC",         required_argument,      0, 'T'},
3751                 {"version",     no_argument,            0, 'v' },
3752                 {0,             0,                      0,  0 }
3753         };
3754
3755         progname = argv[0];
3756
3757         while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:PpST:v",
3758                                 long_options, &option_index)) != -1) {
3759                 switch (opt) {
3760                 case 'C':
3761                         sscanf(optarg, "%x", &extra_delta_offset64);
3762                         break;
3763                 case 'c':
3764                         sscanf(optarg, "%x", &extra_delta_offset32);
3765                         break;
3766                 case 'D':
3767                         dump_only++;
3768                         break;
3769                 case 'd':
3770                         debug++;
3771                         break;
3772                 case 'h':
3773                 default:
3774                         help();
3775                         exit(1);
3776                 case 'i':
3777                         {
3778                                 double interval = strtod(optarg, NULL);
3779
3780                                 if (interval < 0.001) {
3781                                         fprintf(outf, "interval %f seconds is too small\n",
3782                                                 interval);
3783                                         exit(2);
3784                                 }
3785
3786                                 interval_ts.tv_sec = interval;
3787                                 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
3788                         }
3789                         break;
3790                 case 'J':
3791                         rapl_joules++;
3792                         break;
3793                 case 'M':
3794                         sscanf(optarg, "%x", &extra_msr_offset64);
3795                         break;
3796                 case 'm':
3797                         sscanf(optarg, "%x", &extra_msr_offset32);
3798                         break;
3799                 case 'o':
3800                         outf = fopen_or_die(optarg, "w");
3801                         break;
3802                 case 'P':
3803                         show_pkg_only++;
3804                         break;
3805                 case 'p':
3806                         show_core_only++;
3807                         break;
3808                 case 'S':
3809                         summary_only++;
3810                         break;
3811                 case 'T':
3812                         tcc_activation_temp_override = atoi(optarg);
3813                         break;
3814                 case 'v':
3815                         print_version();
3816                         exit(0);
3817                         break;
3818                 }
3819         }
3820 }
3821
3822 int main(int argc, char **argv)
3823 {
3824         outf = stderr;
3825
3826         cmdline(argc, argv);
3827
3828         if (debug)
3829                 print_version();
3830
3831         turbostat_init();
3832
3833         /* dump counters and exit */
3834         if (dump_only)
3835                 return get_and_dump_counters();
3836
3837         /*
3838          * if any params left, it must be a command to fork
3839          */
3840         if (argc - optind)
3841                 return fork_it(argv + optind);
3842         else
3843                 turbostat_loop();
3844
3845         return 0;
3846 }