blob: 741fefa2f07ee168eab1eeb89850e24d909e58c2 [file] [log] [blame]
Len Brown103a8fe2010-10-22 23:53:03 -04001/*
2 * turbostat -- show CPU frequency and C-state residency
3 * on modern Intel turbo-capable processors.
4 *
Len Brown144b44b2013-11-09 00:30:16 -05005 * Copyright (c) 2013 Intel Corporation.
Len Brown103a8fe2010-10-22 23:53:03 -04006 * Len Brown <len.brown@intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
Len Brown88c32812012-03-29 21:44:40 -040022#define _GNU_SOURCE
Josh Triplettb731f312013-08-20 17:20:12 -070023#include MSRHEADER
Josh Triplett95aebc42013-08-20 17:20:16 -070024#include <stdarg.h>
Len Brown103a8fe2010-10-22 23:53:03 -040025#include <stdio.h>
Josh Triplettb2c95d92013-08-20 17:20:18 -070026#include <err.h>
Len Brown103a8fe2010-10-22 23:53:03 -040027#include <unistd.h>
28#include <sys/types.h>
29#include <sys/wait.h>
30#include <sys/stat.h>
31#include <sys/resource.h>
32#include <fcntl.h>
33#include <signal.h>
34#include <sys/time.h>
35#include <stdlib.h>
Len Brownd8af6f52015-02-10 01:56:38 -050036#include <getopt.h>
Len Brown103a8fe2010-10-22 23:53:03 -040037#include <dirent.h>
38#include <string.h>
39#include <ctype.h>
Len Brown88c32812012-03-29 21:44:40 -040040#include <sched.h>
Len Brown2a0609c2016-02-12 22:44:48 -050041#include <time.h>
Josh Triplett2b928652013-08-20 17:20:14 -070042#include <cpuid.h>
Len Brown98481e72014-08-15 00:36:50 -040043#include <linux/capability.h>
44#include <errno.h>
Len Brown103a8fe2010-10-22 23:53:03 -040045
Len Brown103a8fe2010-10-22 23:53:03 -040046char *proc_stat = "/proc/stat";
Len Brownb7d8c142016-02-13 23:36:17 -050047FILE *outf;
Len Brown36229892016-02-26 20:51:02 -050048int *fd_percpu;
Len Brown2a0609c2016-02-12 22:44:48 -050049struct timespec interval_ts = {5, 0};
Len Brownd8af6f52015-02-10 01:56:38 -050050unsigned int debug;
51unsigned int rapl_joules;
52unsigned int summary_only;
53unsigned int dump_only;
Len Brown103a8fe2010-10-22 23:53:03 -040054unsigned int do_nhm_cstates;
55unsigned int do_snb_cstates;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -070056unsigned int do_knl_cstates;
Len Brownee7e38e2015-02-09 23:39:45 -050057unsigned int do_pc2;
58unsigned int do_pc3;
59unsigned int do_pc6;
60unsigned int do_pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -080061unsigned int do_c8_c9_c10;
Len Brown0b2bb692015-03-26 00:50:30 -040062unsigned int do_skl_residency;
Len Brown144b44b2013-11-09 00:30:16 -050063unsigned int do_slm_cstates;
64unsigned int use_c1_residency_msr;
Len Brown103a8fe2010-10-22 23:53:03 -040065unsigned int has_aperf;
Len Brown889facb2012-11-08 00:48:57 -050066unsigned int has_epb;
Len Brown5a634262016-04-06 17:15:55 -040067unsigned int do_irtl_snb;
68unsigned int do_irtl_hsw;
Len Brownfc04cc62014-02-06 00:55:19 -050069unsigned int units = 1000000; /* MHz etc */
Len Brown103a8fe2010-10-22 23:53:03 -040070unsigned int genuine_intel;
71unsigned int has_invariant_tsc;
Len Brownd7899442015-01-23 00:12:33 -050072unsigned int do_nhm_platform_info;
Len Brown2f32edf2012-09-21 23:45:46 -040073unsigned int extra_msr_offset32;
74unsigned int extra_msr_offset64;
Len Brown8e180f32012-09-22 01:25:08 -040075unsigned int extra_delta_offset32;
76unsigned int extra_delta_offset64;
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +020077unsigned int aperf_mperf_multiplier = 1;
Len Brown562a2d32016-02-26 23:48:05 -050078int do_irq = 1;
Len Brown1ed51012013-02-10 17:19:24 -050079int do_smi;
Len Brown103a8fe2010-10-22 23:53:03 -040080double bclk;
Len Browna2b7b742015-09-26 00:12:38 -040081double base_hz;
Len Brown21ed5572015-10-19 22:37:40 -040082unsigned int has_base_hz;
Len Browna2b7b742015-09-26 00:12:38 -040083double tsc_tweak = 1.0;
Len Brown103a8fe2010-10-22 23:53:03 -040084unsigned int show_pkg;
85unsigned int show_core;
86unsigned int show_cpu;
Len Brownc98d5d92012-06-04 00:56:40 -040087unsigned int show_pkg_only;
88unsigned int show_core_only;
89char *output_buffer, *outp;
Len Brown889facb2012-11-08 00:48:57 -050090unsigned int do_rapl;
91unsigned int do_dts;
92unsigned int do_ptm;
Len Brownfdf676e2016-02-27 01:28:12 -050093unsigned int do_gfx_rc6_ms;
94unsigned long long gfx_cur_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -050095unsigned int do_gfx_mhz;
96unsigned int gfx_cur_mhz;
Len Brown889facb2012-11-08 00:48:57 -050097unsigned int tcc_activation_temp;
98unsigned int tcc_activation_temp_override;
Andrey Semin40ee8e32014-12-05 00:07:00 -050099double rapl_power_units, rapl_time_units;
100double rapl_dram_energy_units, rapl_energy_units;
Len Brown889facb2012-11-08 00:48:57 -0500101double rapl_joule_counter_range;
Len Brown3a9a9412014-08-15 02:39:52 -0400102unsigned int do_core_perf_limit_reasons;
103unsigned int do_gfx_perf_limit_reasons;
104unsigned int do_ring_perf_limit_reasons;
Len Brown8a5bdf42015-04-01 21:02:57 -0400105unsigned int crystal_hz;
106unsigned long long tsc_hz;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -0400107int base_cpu;
Len Brown21ed5572015-10-19 22:37:40 -0400108double discover_bclk(unsigned int family, unsigned int model);
Len Brown7f5c2582015-12-01 01:36:39 -0500109unsigned int has_hwp; /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
110 /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
111unsigned int has_hwp_notify; /* IA32_HWP_INTERRUPT */
112unsigned int has_hwp_activity_window; /* IA32_HWP_REQUEST[bits 41:32] */
113unsigned int has_hwp_epp; /* IA32_HWP_REQUEST[bits 31:24] */
114unsigned int has_hwp_pkg; /* IA32_HWP_REQUEST_PKG */
Len Brown889facb2012-11-08 00:48:57 -0500115
Len Browne6f9bb32013-12-03 02:19:19 -0500116#define RAPL_PKG (1 << 0)
117 /* 0x610 MSR_PKG_POWER_LIMIT */
118 /* 0x611 MSR_PKG_ENERGY_STATUS */
119#define RAPL_PKG_PERF_STATUS (1 << 1)
120 /* 0x613 MSR_PKG_PERF_STATUS */
121#define RAPL_PKG_POWER_INFO (1 << 2)
122 /* 0x614 MSR_PKG_POWER_INFO */
123
124#define RAPL_DRAM (1 << 3)
125 /* 0x618 MSR_DRAM_POWER_LIMIT */
126 /* 0x619 MSR_DRAM_ENERGY_STATUS */
Len Browne6f9bb32013-12-03 02:19:19 -0500127#define RAPL_DRAM_PERF_STATUS (1 << 4)
128 /* 0x61b MSR_DRAM_PERF_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400129#define RAPL_DRAM_POWER_INFO (1 << 5)
130 /* 0x61c MSR_DRAM_POWER_INFO */
Len Browne6f9bb32013-12-03 02:19:19 -0500131
Len Brown0b2bb692015-03-26 00:50:30 -0400132#define RAPL_CORES (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500133 /* 0x638 MSR_PP0_POWER_LIMIT */
134 /* 0x639 MSR_PP0_ENERGY_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400135#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500136 /* 0x63a MSR_PP0_POLICY */
137
Len Brown0b2bb692015-03-26 00:50:30 -0400138#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500139 /* 0x640 MSR_PP1_POWER_LIMIT */
140 /* 0x641 MSR_PP1_ENERGY_STATUS */
141 /* 0x642 MSR_PP1_POLICY */
Len Brown889facb2012-11-08 00:48:57 -0500142#define TJMAX_DEFAULT 100
143
144#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400145
Len Brown103a8fe2010-10-22 23:53:03 -0400146int backwards_count;
147char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -0400148
Len Brownc98d5d92012-06-04 00:56:40 -0400149cpu_set_t *cpu_present_set, *cpu_affinity_set;
150size_t cpu_present_setsize, cpu_affinity_setsize;
Len Brown103a8fe2010-10-22 23:53:03 -0400151
Len Brownc98d5d92012-06-04 00:56:40 -0400152struct thread_data {
153 unsigned long long tsc;
154 unsigned long long aperf;
155 unsigned long long mperf;
Len Brown144b44b2013-11-09 00:30:16 -0500156 unsigned long long c1;
Len Brown2f32edf2012-09-21 23:45:46 -0400157 unsigned long long extra_msr64;
Len Brown8e180f32012-09-22 01:25:08 -0400158 unsigned long long extra_delta64;
159 unsigned long long extra_msr32;
160 unsigned long long extra_delta32;
Len Brown562a2d32016-02-26 23:48:05 -0500161 unsigned int irq_count;
Len Brown1ed51012013-02-10 17:19:24 -0500162 unsigned int smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400163 unsigned int cpu_id;
164 unsigned int flags;
165#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
166#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
167} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400168
Len Brownc98d5d92012-06-04 00:56:40 -0400169struct core_data {
170 unsigned long long c3;
171 unsigned long long c6;
172 unsigned long long c7;
Len Brown889facb2012-11-08 00:48:57 -0500173 unsigned int core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400174 unsigned int core_id;
175} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400176
Len Brownc98d5d92012-06-04 00:56:40 -0400177struct pkg_data {
178 unsigned long long pc2;
179 unsigned long long pc3;
180 unsigned long long pc6;
181 unsigned long long pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800182 unsigned long long pc8;
183 unsigned long long pc9;
184 unsigned long long pc10;
Len Brown0b2bb692015-03-26 00:50:30 -0400185 unsigned long long pkg_wtd_core_c0;
186 unsigned long long pkg_any_core_c0;
187 unsigned long long pkg_any_gfxe_c0;
188 unsigned long long pkg_both_core_gfxe_c0;
Len Brown9185e982016-04-06 17:16:00 -0400189 long long gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500190 unsigned int gfx_mhz;
Len Brownc98d5d92012-06-04 00:56:40 -0400191 unsigned int package_id;
Len Brown889facb2012-11-08 00:48:57 -0500192 unsigned int energy_pkg; /* MSR_PKG_ENERGY_STATUS */
193 unsigned int energy_dram; /* MSR_DRAM_ENERGY_STATUS */
194 unsigned int energy_cores; /* MSR_PP0_ENERGY_STATUS */
195 unsigned int energy_gfx; /* MSR_PP1_ENERGY_STATUS */
196 unsigned int rapl_pkg_perf_status; /* MSR_PKG_PERF_STATUS */
197 unsigned int rapl_dram_perf_status; /* MSR_DRAM_PERF_STATUS */
198 unsigned int pkg_temp_c;
199
Len Brownc98d5d92012-06-04 00:56:40 -0400200} *package_even, *package_odd;
201
202#define ODD_COUNTERS thread_odd, core_odd, package_odd
203#define EVEN_COUNTERS thread_even, core_even, package_even
204
205#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
206 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
207 topo.num_threads_per_core + \
208 (core_no) * topo.num_threads_per_core + (thread_no))
209#define GET_CORE(core_base, core_no, pkg_no) \
210 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
211#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
212
213struct system_summary {
214 struct thread_data threads;
215 struct core_data cores;
216 struct pkg_data packages;
217} sum, average;
218
219
220struct topo_params {
221 int num_packages;
222 int num_cpus;
223 int num_cores;
224 int max_cpu_num;
225 int num_cores_per_pkg;
226 int num_threads_per_core;
227} topo;
228
229struct timeval tv_even, tv_odd, tv_delta;
230
Len Brown562a2d32016-02-26 23:48:05 -0500231int *irq_column_2_cpu; /* /proc/interrupts column numbers */
232int *irqs_per_cpu; /* indexed by cpu_num */
233
Len Brownc98d5d92012-06-04 00:56:40 -0400234void setup_all_buffers(void);
235
236int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400237{
Len Brownc98d5d92012-06-04 00:56:40 -0400238 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400239}
Len Brown88c32812012-03-29 21:44:40 -0400240/*
Len Brownc98d5d92012-06-04 00:56:40 -0400241 * run func(thread, core, package) in topology order
242 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400243 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400244
Len Brownc98d5d92012-06-04 00:56:40 -0400245int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
246 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400247{
Len Brownc98d5d92012-06-04 00:56:40 -0400248 int retval, pkg_no, core_no, thread_no;
249
250 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
251 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
252 for (thread_no = 0; thread_no <
253 topo.num_threads_per_core; ++thread_no) {
254 struct thread_data *t;
255 struct core_data *c;
256 struct pkg_data *p;
257
258 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
259
260 if (cpu_is_not_present(t->cpu_id))
261 continue;
262
263 c = GET_CORE(core_base, core_no, pkg_no);
264 p = GET_PKG(pkg_base, pkg_no);
265
266 retval = func(t, c, p);
267 if (retval)
268 return retval;
269 }
270 }
271 }
272 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400273}
274
275int cpu_migrate(int cpu)
276{
Len Brownc98d5d92012-06-04 00:56:40 -0400277 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
278 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
279 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400280 return -1;
281 else
282 return 0;
283}
Len Brown36229892016-02-26 20:51:02 -0500284int get_msr_fd(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400285{
Len Brown103a8fe2010-10-22 23:53:03 -0400286 char pathname[32];
287 int fd;
288
Len Brown36229892016-02-26 20:51:02 -0500289 fd = fd_percpu[cpu];
290
291 if (fd)
292 return fd;
293
Len Brown103a8fe2010-10-22 23:53:03 -0400294 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
295 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400296 if (fd < 0)
Len Brown98481e72014-08-15 00:36:50 -0400297 err(-1, "%s open failed, try chown or chmod +r /dev/cpu/*/msr, or run as root", pathname);
Len Brown103a8fe2010-10-22 23:53:03 -0400298
Len Brown36229892016-02-26 20:51:02 -0500299 fd_percpu[cpu] = fd;
300
301 return fd;
302}
303
304int get_msr(int cpu, off_t offset, unsigned long long *msr)
305{
306 ssize_t retval;
307
308 retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
Len Brown15aaa342012-03-29 22:19:58 -0400309
Len Brown98481e72014-08-15 00:36:50 -0400310 if (retval != sizeof *msr)
Len Brown36229892016-02-26 20:51:02 -0500311 err(-1, "msr %d offset 0x%llx read failed", cpu, (unsigned long long)offset);
Len Brown15aaa342012-03-29 22:19:58 -0400312
313 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400314}
315
Len Brownfc04cc62014-02-06 00:55:19 -0500316/*
317 * Example Format w/ field column widths:
318 *
Len Brown27d47352016-02-27 00:37:54 -0500319 * 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
Len Brown562a2d32016-02-26 23:48:05 -0500320 * 12345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678
Len Brownfc04cc62014-02-06 00:55:19 -0500321 */
322
Len Browna829eb42011-02-10 23:36:34 -0500323void print_header(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400324{
325 if (show_pkg)
Len Brown3d109de2016-04-22 23:24:27 -0400326 outp += sprintf(outp, "\tPackage");
Len Brown103a8fe2010-10-22 23:53:03 -0400327 if (show_core)
Len Brown3d109de2016-04-22 23:24:27 -0400328 outp += sprintf(outp, "\tCore");
Len Brown103a8fe2010-10-22 23:53:03 -0400329 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400330 outp += sprintf(outp, "\tCPU");
Len Brown103a8fe2010-10-22 23:53:03 -0400331 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400332 outp += sprintf(outp, "\tAvg_MHz");
Len Brownd7899442015-01-23 00:12:33 -0500333 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400334 outp += sprintf(outp, "\tBusy%%");
Len Brownfc04cc62014-02-06 00:55:19 -0500335 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400336 outp += sprintf(outp, "\tBzy_MHz");
337 outp += sprintf(outp, "\tTSC_MHz");
Len Brown1cc21f72015-02-23 00:34:57 -0500338
Len Brown8e180f32012-09-22 01:25:08 -0400339 if (extra_delta_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400340 outp += sprintf(outp, "\tcount 0x%03X", extra_delta_offset32);
Len Brown8e180f32012-09-22 01:25:08 -0400341 if (extra_delta_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400342 outp += sprintf(outp, "\tCOUNT 0x%03X", extra_delta_offset64);
Len Brown2f32edf2012-09-21 23:45:46 -0400343 if (extra_msr_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400344 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset32);
Len Brown2f32edf2012-09-21 23:45:46 -0400345 if (extra_msr_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400346 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset64);
Len Brown1cc21f72015-02-23 00:34:57 -0500347
348 if (!debug)
349 goto done;
350
Len Brown562a2d32016-02-26 23:48:05 -0500351 if (do_irq)
Len Brown3d109de2016-04-22 23:24:27 -0400352 outp += sprintf(outp, "\tIRQ");
Len Brown1cc21f72015-02-23 00:34:57 -0500353 if (do_smi)
Len Brown3d109de2016-04-22 23:24:27 -0400354 outp += sprintf(outp, "\tSMI");
Len Brown1cc21f72015-02-23 00:34:57 -0500355
Len Brown103a8fe2010-10-22 23:53:03 -0400356 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400357 outp += sprintf(outp, "\tCPU%%c1");
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700358 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400359 outp += sprintf(outp, "\tCPU%%c3");
Len Brown103a8fe2010-10-22 23:53:03 -0400360 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400361 outp += sprintf(outp, "\tCPU%%c6");
Len Brown103a8fe2010-10-22 23:53:03 -0400362 if (do_snb_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400363 outp += sprintf(outp, "\tCPU%%c7");
Len Brown889facb2012-11-08 00:48:57 -0500364
365 if (do_dts)
Len Brown3d109de2016-04-22 23:24:27 -0400366 outp += sprintf(outp, "\tCoreTmp");
Len Brown889facb2012-11-08 00:48:57 -0500367 if (do_ptm)
Len Brown3d109de2016-04-22 23:24:27 -0400368 outp += sprintf(outp, "\tPkgTmp");
Len Brown889facb2012-11-08 00:48:57 -0500369
Len Brownfdf676e2016-02-27 01:28:12 -0500370 if (do_gfx_rc6_ms)
Len Brown3d109de2016-04-22 23:24:27 -0400371 outp += sprintf(outp, "\tGFX%%rc6");
Len Brownfdf676e2016-02-27 01:28:12 -0500372
Len Brown27d47352016-02-27 00:37:54 -0500373 if (do_gfx_mhz)
Len Brown3d109de2016-04-22 23:24:27 -0400374 outp += sprintf(outp, "\tGFXMHz");
Len Brown27d47352016-02-27 00:37:54 -0500375
Len Brown0b2bb692015-03-26 00:50:30 -0400376 if (do_skl_residency) {
Len Brown3d109de2016-04-22 23:24:27 -0400377 outp += sprintf(outp, "\tTotl%%C0");
378 outp += sprintf(outp, "\tAny%%C0");
379 outp += sprintf(outp, "\tGFX%%C0");
380 outp += sprintf(outp, "\tCPUGFX%%");
Len Brown0b2bb692015-03-26 00:50:30 -0400381 }
382
Len Brownee7e38e2015-02-09 23:39:45 -0500383 if (do_pc2)
Len Brown3d109de2016-04-22 23:24:27 -0400384 outp += sprintf(outp, "\tPkg%%pc2");
Len Brownee7e38e2015-02-09 23:39:45 -0500385 if (do_pc3)
Len Brown3d109de2016-04-22 23:24:27 -0400386 outp += sprintf(outp, "\tPkg%%pc3");
Len Brownee7e38e2015-02-09 23:39:45 -0500387 if (do_pc6)
Len Brown3d109de2016-04-22 23:24:27 -0400388 outp += sprintf(outp, "\tPkg%%pc6");
Len Brownee7e38e2015-02-09 23:39:45 -0500389 if (do_pc7)
Len Brown3d109de2016-04-22 23:24:27 -0400390 outp += sprintf(outp, "\tPkg%%pc7");
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800391 if (do_c8_c9_c10) {
Len Brown3d109de2016-04-22 23:24:27 -0400392 outp += sprintf(outp, "\tPkg%%pc8");
393 outp += sprintf(outp, "\tPkg%%pc9");
394 outp += sprintf(outp, "\tPk%%pc10");
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800395 }
Len Brown103a8fe2010-10-22 23:53:03 -0400396
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800397 if (do_rapl && !rapl_joules) {
398 if (do_rapl & RAPL_PKG)
Len Brown3d109de2016-04-22 23:24:27 -0400399 outp += sprintf(outp, "\tPkgWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800400 if (do_rapl & RAPL_CORES)
Len Brown3d109de2016-04-22 23:24:27 -0400401 outp += sprintf(outp, "\tCorWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800402 if (do_rapl & RAPL_GFX)
Len Brown3d109de2016-04-22 23:24:27 -0400403 outp += sprintf(outp, "\tGFXWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800404 if (do_rapl & RAPL_DRAM)
Len Brown3d109de2016-04-22 23:24:27 -0400405 outp += sprintf(outp, "\tRAMWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800406 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400407 outp += sprintf(outp, "\tPKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800408 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400409 outp += sprintf(outp, "\tRAM_%%");
Len Brownd7899442015-01-23 00:12:33 -0500410 } else if (do_rapl && rapl_joules) {
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800411 if (do_rapl & RAPL_PKG)
Len Brown3d109de2016-04-22 23:24:27 -0400412 outp += sprintf(outp, "\tPkg_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800413 if (do_rapl & RAPL_CORES)
Len Brown3d109de2016-04-22 23:24:27 -0400414 outp += sprintf(outp, "\tCor_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800415 if (do_rapl & RAPL_GFX)
Len Brown3d109de2016-04-22 23:24:27 -0400416 outp += sprintf(outp, "\tGFX_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800417 if (do_rapl & RAPL_DRAM)
Len Brown3d109de2016-04-22 23:24:27 -0400418 outp += sprintf(outp, "\tRAM_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800419 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400420 outp += sprintf(outp, "\tPKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800421 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400422 outp += sprintf(outp, "\tRAM_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800423 }
Len Brown1cc21f72015-02-23 00:34:57 -0500424 done:
Len Brownc98d5d92012-06-04 00:56:40 -0400425 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400426}
427
Len Brownc98d5d92012-06-04 00:56:40 -0400428int dump_counters(struct thread_data *t, struct core_data *c,
429 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400430{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200431 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400432
Len Brownc98d5d92012-06-04 00:56:40 -0400433 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200434 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
435 t->cpu_id, t->flags);
436 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
437 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
438 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
439 outp += sprintf(outp, "c1: %016llX\n", t->c1);
440 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400441 extra_delta_offset32, t->extra_delta32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200442 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400443 extra_delta_offset64, t->extra_delta64);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200444 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400445 extra_msr_offset32, t->extra_msr32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200446 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400447 extra_msr_offset64, t->extra_msr64);
Len Brown562a2d32016-02-26 23:48:05 -0500448 if (do_irq)
449 outp += sprintf(outp, "IRQ: %08X\n", t->irq_count);
Len Brown1ed51012013-02-10 17:19:24 -0500450 if (do_smi)
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200451 outp += sprintf(outp, "SMI: %08X\n", t->smi_count);
Len Brownc98d5d92012-06-04 00:56:40 -0400452 }
Len Brown103a8fe2010-10-22 23:53:03 -0400453
Len Brownc98d5d92012-06-04 00:56:40 -0400454 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200455 outp += sprintf(outp, "core: %d\n", c->core_id);
456 outp += sprintf(outp, "c3: %016llX\n", c->c3);
457 outp += sprintf(outp, "c6: %016llX\n", c->c6);
458 outp += sprintf(outp, "c7: %016llX\n", c->c7);
459 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400460 }
461
462 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200463 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400464
465 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
466 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
467 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
468 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
469
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200470 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brownee7e38e2015-02-09 23:39:45 -0500471 if (do_pc3)
472 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
473 if (do_pc6)
474 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
475 if (do_pc7)
476 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200477 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
478 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
479 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
480 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
481 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
482 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
483 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
484 outp += sprintf(outp, "Throttle PKG: %0X\n",
485 p->rapl_pkg_perf_status);
486 outp += sprintf(outp, "Throttle RAM: %0X\n",
487 p->rapl_dram_perf_status);
488 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400489 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200490
491 outp += sprintf(outp, "\n");
492
Len Brownc98d5d92012-06-04 00:56:40 -0400493 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400494}
495
Len Browne23da032012-02-06 18:37:16 -0500496/*
497 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500498 */
Len Brownc98d5d92012-06-04 00:56:40 -0400499int format_counters(struct thread_data *t, struct core_data *c,
500 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400501{
502 double interval_float;
Len Brownfc04cc62014-02-06 00:55:19 -0500503 char *fmt8;
Len Brown103a8fe2010-10-22 23:53:03 -0400504
Len Brownc98d5d92012-06-04 00:56:40 -0400505 /* if showing only 1st thread in core and this isn't one, bail out */
506 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
507 return 0;
508
509 /* if showing only 1st thread in pkg and this isn't one, bail out */
510 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
511 return 0;
512
Len Brown103a8fe2010-10-22 23:53:03 -0400513 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
514
Len Brownc98d5d92012-06-04 00:56:40 -0400515 /* topo columns, print blanks on 1st (average) line */
516 if (t == &average.threads) {
Len Brown103a8fe2010-10-22 23:53:03 -0400517 if (show_pkg)
Len Brown3d109de2016-04-22 23:24:27 -0400518 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400519 if (show_core)
Len Brown3d109de2016-04-22 23:24:27 -0400520 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400521 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400522 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400523 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400524 if (show_pkg) {
525 if (p)
Len Brown3d109de2016-04-22 23:24:27 -0400526 outp += sprintf(outp, "\t%d", p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400527 else
Len Brown3d109de2016-04-22 23:24:27 -0400528 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400529 }
Len Brownc98d5d92012-06-04 00:56:40 -0400530 if (show_core) {
531 if (c)
Len Brown3d109de2016-04-22 23:24:27 -0400532 outp += sprintf(outp, "\t%d", c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400533 else
Len Brown3d109de2016-04-22 23:24:27 -0400534 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400535 }
Len Brown103a8fe2010-10-22 23:53:03 -0400536 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400537 outp += sprintf(outp, "\t%d", t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400538 }
Len Brownfc04cc62014-02-06 00:55:19 -0500539
Len Brownd7899442015-01-23 00:12:33 -0500540 /* Avg_MHz */
Len Brownfc04cc62014-02-06 00:55:19 -0500541 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400542 outp += sprintf(outp, "\t%.0f",
Len Brownfc04cc62014-02-06 00:55:19 -0500543 1.0 / units * t->aperf / interval_float);
544
Len Brown75d2e442016-02-13 23:41:53 -0500545 /* Busy% */
Len Brownba3dec92016-04-22 20:31:46 -0400546 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400547 outp += sprintf(outp, "\t%.2f", 100.0 * t->mperf/t->tsc/tsc_tweak);
Len Brown103a8fe2010-10-22 23:53:03 -0400548
Len Brownd7899442015-01-23 00:12:33 -0500549 /* Bzy_MHz */
Len Brown21ed5572015-10-19 22:37:40 -0400550 if (has_aperf) {
551 if (has_base_hz)
Len Brown3d109de2016-04-22 23:24:27 -0400552 outp += sprintf(outp, "\t%.0f", base_hz / units * t->aperf / t->mperf);
Len Brown21ed5572015-10-19 22:37:40 -0400553 else
Len Brown3d109de2016-04-22 23:24:27 -0400554 outp += sprintf(outp, "\t%.0f",
Len Brown21ed5572015-10-19 22:37:40 -0400555 1.0 * t->tsc / units * t->aperf / t->mperf / interval_float);
556 }
Len Brown103a8fe2010-10-22 23:53:03 -0400557
Len Brownd7899442015-01-23 00:12:33 -0500558 /* TSC_MHz */
Len Brown3d109de2016-04-22 23:24:27 -0400559 outp += sprintf(outp, "\t%.0f", 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400560
Len Brown8e180f32012-09-22 01:25:08 -0400561 /* delta */
562 if (extra_delta_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400563 outp += sprintf(outp, "\t%11llu", t->extra_delta32);
Len Brown8e180f32012-09-22 01:25:08 -0400564
565 /* DELTA */
566 if (extra_delta_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400567 outp += sprintf(outp, "\t%11llu", t->extra_delta64);
Len Brown2f32edf2012-09-21 23:45:46 -0400568 /* msr */
569 if (extra_msr_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400570 outp += sprintf(outp, "\t0x%08llx", t->extra_msr32);
Len Brown2f32edf2012-09-21 23:45:46 -0400571
Len Brown130ff302012-09-21 22:56:06 -0400572 /* MSR */
Len Brown2f32edf2012-09-21 23:45:46 -0400573 if (extra_msr_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400574 outp += sprintf(outp, "\t0x%016llx", t->extra_msr64);
Len Brown130ff302012-09-21 22:56:06 -0400575
Len Brown1cc21f72015-02-23 00:34:57 -0500576 if (!debug)
577 goto done;
578
Len Brown562a2d32016-02-26 23:48:05 -0500579 /* IRQ */
580 if (do_irq)
Len Brown3d109de2016-04-22 23:24:27 -0400581 outp += sprintf(outp, "\t%d", t->irq_count);
Len Brown562a2d32016-02-26 23:48:05 -0500582
Len Brown1cc21f72015-02-23 00:34:57 -0500583 /* SMI */
584 if (do_smi)
Len Brown3d109de2016-04-22 23:24:27 -0400585 outp += sprintf(outp, "\t%d", t->smi_count);
Len Brown1cc21f72015-02-23 00:34:57 -0500586
Len Brownba3dec92016-04-22 20:31:46 -0400587 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400588 outp += sprintf(outp, "\t%.2f", 100.0 * t->c1/t->tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400589
590 /* print per-core data only for 1st thread in core */
591 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
592 goto done;
593
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700594 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400595 outp += sprintf(outp, "\t%.2f", 100.0 * c->c3/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400596 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400597 outp += sprintf(outp, "\t%.2f", 100.0 * c->c6/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400598 if (do_snb_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400599 outp += sprintf(outp, "\t%.2f", 100.0 * c->c7/t->tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400600
Len Brown889facb2012-11-08 00:48:57 -0500601 if (do_dts)
Len Brown3d109de2016-04-22 23:24:27 -0400602 outp += sprintf(outp, "\t%d", c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500603
Len Brownc98d5d92012-06-04 00:56:40 -0400604 /* print per-package data only for 1st core in package */
605 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
606 goto done;
607
Len Brown0b2bb692015-03-26 00:50:30 -0400608 /* PkgTmp */
Len Brown889facb2012-11-08 00:48:57 -0500609 if (do_ptm)
Len Brown3d109de2016-04-22 23:24:27 -0400610 outp += sprintf(outp, "\t%d", p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500611
Len Brownfdf676e2016-02-27 01:28:12 -0500612 /* GFXrc6 */
Len Brown9185e982016-04-06 17:16:00 -0400613 if (do_gfx_rc6_ms) {
Len Brownba3dec92016-04-22 20:31:46 -0400614 if (p->gfx_rc6_ms == -1) { /* detect GFX counter reset */
Len Brown3d109de2016-04-22 23:24:27 -0400615 outp += sprintf(outp, "\t**.**");
Len Brown9185e982016-04-06 17:16:00 -0400616 } else {
Len Brown3d109de2016-04-22 23:24:27 -0400617 outp += sprintf(outp, "\t%.2f",
Len Brown9185e982016-04-06 17:16:00 -0400618 p->gfx_rc6_ms / 10.0 / interval_float);
619 }
620 }
Len Brownfdf676e2016-02-27 01:28:12 -0500621
Len Brown27d47352016-02-27 00:37:54 -0500622 /* GFXMHz */
623 if (do_gfx_mhz)
Len Brown3d109de2016-04-22 23:24:27 -0400624 outp += sprintf(outp, "\t%d", p->gfx_mhz);
Len Brown27d47352016-02-27 00:37:54 -0500625
Len Brown0b2bb692015-03-26 00:50:30 -0400626 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
627 if (do_skl_residency) {
Len Brown3d109de2016-04-22 23:24:27 -0400628 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_wtd_core_c0/t->tsc);
629 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_core_c0/t->tsc);
630 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_gfxe_c0/t->tsc);
631 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_both_core_gfxe_c0/t->tsc);
Len Brown0b2bb692015-03-26 00:50:30 -0400632 }
633
Len Brownee7e38e2015-02-09 23:39:45 -0500634 if (do_pc2)
Len Brown3d109de2016-04-22 23:24:27 -0400635 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc2/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500636 if (do_pc3)
Len Brown3d109de2016-04-22 23:24:27 -0400637 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc3/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500638 if (do_pc6)
Len Brown3d109de2016-04-22 23:24:27 -0400639 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc6/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500640 if (do_pc7)
Len Brown3d109de2016-04-22 23:24:27 -0400641 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc7/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800642 if (do_c8_c9_c10) {
Len Brown3d109de2016-04-22 23:24:27 -0400643 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc8/t->tsc);
644 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc9/t->tsc);
645 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc10/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800646 }
Len Brown889facb2012-11-08 00:48:57 -0500647
648 /*
649 * If measurement interval exceeds minimum RAPL Joule Counter range,
650 * indicate that results are suspect by printing "**" in fraction place.
651 */
Len Brownfc04cc62014-02-06 00:55:19 -0500652 if (interval_float < rapl_joule_counter_range)
Len Brown3d109de2016-04-22 23:24:27 -0400653 fmt8 = "\t%.2f";
Len Brownfc04cc62014-02-06 00:55:19 -0500654 else
Len Browne975db52016-04-06 23:56:02 -0400655 fmt8 = "%6.0f**";
Len Brown889facb2012-11-08 00:48:57 -0500656
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800657 if (do_rapl && !rapl_joules) {
658 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500659 outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800660 if (do_rapl & RAPL_CORES)
Len Brownfc04cc62014-02-06 00:55:19 -0500661 outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800662 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500663 outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800664 if (do_rapl & RAPL_DRAM)
Andrey Semin40ee8e32014-12-05 00:07:00 -0500665 outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800666 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500667 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800668 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500669 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Len Brownd7899442015-01-23 00:12:33 -0500670 } else if (do_rapl && rapl_joules) {
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800671 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500672 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800673 p->energy_pkg * rapl_energy_units);
674 if (do_rapl & RAPL_CORES)
Len Brownfc04cc62014-02-06 00:55:19 -0500675 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800676 p->energy_cores * rapl_energy_units);
677 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500678 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800679 p->energy_gfx * rapl_energy_units);
680 if (do_rapl & RAPL_DRAM)
Len Brownfc04cc62014-02-06 00:55:19 -0500681 outp += sprintf(outp, fmt8,
Andrey Semin40ee8e32014-12-05 00:07:00 -0500682 p->energy_dram * rapl_dram_energy_units);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800683 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500684 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800685 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500686 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800687 }
Len Brownc98d5d92012-06-04 00:56:40 -0400688done:
Len Brownc98d5d92012-06-04 00:56:40 -0400689 outp += sprintf(outp, "\n");
690
691 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400692}
693
Len Brownb7d8c142016-02-13 23:36:17 -0500694void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400695{
Len Brownb7d8c142016-02-13 23:36:17 -0500696 FILE *filep;
697
698 if (outf == stderr)
699 filep = stdout;
700 else
701 filep = outf;
702
703 fputs(output_buffer, filep);
704 fflush(filep);
705
Len Brownc98d5d92012-06-04 00:56:40 -0400706 outp = output_buffer;
707}
Len Brownb7d8c142016-02-13 23:36:17 -0500708void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -0400709{
Len Brownb7d8c142016-02-13 23:36:17 -0500710 fputs(output_buffer, outf);
711 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -0400712 outp = output_buffer;
713}
714void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
715{
Len Browne23da032012-02-06 18:37:16 -0500716 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -0400717
Len Browne23da032012-02-06 18:37:16 -0500718 if (!printed || !summary_only)
719 print_header();
Len Brown103a8fe2010-10-22 23:53:03 -0400720
Len Brownc98d5d92012-06-04 00:56:40 -0400721 if (topo.num_cpus > 1)
722 format_counters(&average.threads, &average.cores,
723 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -0400724
Len Browne23da032012-02-06 18:37:16 -0500725 printed = 1;
726
727 if (summary_only)
728 return;
729
Len Brownc98d5d92012-06-04 00:56:40 -0400730 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400731}
732
Len Brown889facb2012-11-08 00:48:57 -0500733#define DELTA_WRAP32(new, old) \
734 if (new > old) { \
735 old = new - old; \
736 } else { \
737 old = 0x100000000 + new - old; \
738 }
739
Len Brownba3dec92016-04-22 20:31:46 -0400740int
Len Brownc98d5d92012-06-04 00:56:40 -0400741delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -0400742{
Len Brown0b2bb692015-03-26 00:50:30 -0400743
744 if (do_skl_residency) {
745 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
746 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
747 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
748 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
749 }
Len Brownc98d5d92012-06-04 00:56:40 -0400750 old->pc2 = new->pc2 - old->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500751 if (do_pc3)
752 old->pc3 = new->pc3 - old->pc3;
753 if (do_pc6)
754 old->pc6 = new->pc6 - old->pc6;
755 if (do_pc7)
756 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800757 old->pc8 = new->pc8 - old->pc8;
758 old->pc9 = new->pc9 - old->pc9;
759 old->pc10 = new->pc10 - old->pc10;
Len Brown889facb2012-11-08 00:48:57 -0500760 old->pkg_temp_c = new->pkg_temp_c;
761
Len Brown9185e982016-04-06 17:16:00 -0400762 /* flag an error when rc6 counter resets/wraps */
763 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
764 old->gfx_rc6_ms = -1;
765 else
766 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
767
Len Brown27d47352016-02-27 00:37:54 -0500768 old->gfx_mhz = new->gfx_mhz;
769
Len Brown889facb2012-11-08 00:48:57 -0500770 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
771 DELTA_WRAP32(new->energy_cores, old->energy_cores);
772 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
773 DELTA_WRAP32(new->energy_dram, old->energy_dram);
774 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
775 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownba3dec92016-04-22 20:31:46 -0400776
777 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400778}
Len Brown103a8fe2010-10-22 23:53:03 -0400779
Len Brownc98d5d92012-06-04 00:56:40 -0400780void
781delta_core(struct core_data *new, struct core_data *old)
782{
783 old->c3 = new->c3 - old->c3;
784 old->c6 = new->c6 - old->c6;
785 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -0500786 old->core_temp_c = new->core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400787}
Len Brown103a8fe2010-10-22 23:53:03 -0400788
Len Brownc3ae3312012-06-13 21:31:46 -0400789/*
790 * old = new - old
791 */
Len Brownba3dec92016-04-22 20:31:46 -0400792int
Len Brownc98d5d92012-06-04 00:56:40 -0400793delta_thread(struct thread_data *new, struct thread_data *old,
794 struct core_data *core_delta)
795{
796 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -0400797
Len Brownc98d5d92012-06-04 00:56:40 -0400798 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -0700799 if (old->tsc < (1000 * 1000))
800 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
801 "You can disable all c-states by booting with \"idle=poll\"\n"
802 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -0400803
Len Brownc98d5d92012-06-04 00:56:40 -0400804 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -0400805
Len Browna7296172015-01-23 01:33:58 -0500806 if (has_aperf) {
807 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
808 old->aperf = new->aperf - old->aperf;
809 old->mperf = new->mperf - old->mperf;
810 } else {
Len Brownba3dec92016-04-22 20:31:46 -0400811 return -1;
Len Brownc98d5d92012-06-04 00:56:40 -0400812 }
Len Brownc98d5d92012-06-04 00:56:40 -0400813 }
Len Brown103a8fe2010-10-22 23:53:03 -0400814
Len Brown103a8fe2010-10-22 23:53:03 -0400815
Len Brown144b44b2013-11-09 00:30:16 -0500816 if (use_c1_residency_msr) {
817 /*
818 * Some models have a dedicated C1 residency MSR,
819 * which should be more accurate than the derivation below.
820 */
821 } else {
822 /*
823 * As counter collection is not atomic,
824 * it is possible for mperf's non-halted cycles + idle states
825 * to exceed TSC's all cycles: show c1 = 0% in that case.
826 */
827 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > old->tsc)
828 old->c1 = 0;
829 else {
830 /* normal case, derive c1 */
831 old->c1 = old->tsc - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -0400832 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -0500833 }
Len Brownc98d5d92012-06-04 00:56:40 -0400834 }
Len Brownc3ae3312012-06-13 21:31:46 -0400835
Len Brownc98d5d92012-06-04 00:56:40 -0400836 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -0500837 if (debug > 1)
838 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400839 old->mperf = 1; /* divide by 0 protection */
840 }
841
Len Brown8e180f32012-09-22 01:25:08 -0400842 old->extra_delta32 = new->extra_delta32 - old->extra_delta32;
843 old->extra_delta32 &= 0xFFFFFFFF;
844
845 old->extra_delta64 = new->extra_delta64 - old->extra_delta64;
846
Len Brownc98d5d92012-06-04 00:56:40 -0400847 /*
Len Brown8e180f32012-09-22 01:25:08 -0400848 * Extra MSR is just a snapshot, simply copy latest w/o subtracting
Len Brownc98d5d92012-06-04 00:56:40 -0400849 */
Len Brown2f32edf2012-09-21 23:45:46 -0400850 old->extra_msr32 = new->extra_msr32;
851 old->extra_msr64 = new->extra_msr64;
Len Brown1ed51012013-02-10 17:19:24 -0500852
Len Brown562a2d32016-02-26 23:48:05 -0500853 if (do_irq)
854 old->irq_count = new->irq_count - old->irq_count;
855
Len Brown1ed51012013-02-10 17:19:24 -0500856 if (do_smi)
857 old->smi_count = new->smi_count - old->smi_count;
Len Brownba3dec92016-04-22 20:31:46 -0400858
859 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400860}
861
862int delta_cpu(struct thread_data *t, struct core_data *c,
863 struct pkg_data *p, struct thread_data *t2,
864 struct core_data *c2, struct pkg_data *p2)
865{
Len Brownba3dec92016-04-22 20:31:46 -0400866 int retval = 0;
867
Len Brownc98d5d92012-06-04 00:56:40 -0400868 /* calculate core delta only for 1st thread in core */
869 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
870 delta_core(c, c2);
871
872 /* always calculate thread delta */
Len Brownba3dec92016-04-22 20:31:46 -0400873 retval = delta_thread(t, t2, c2); /* c2 is core delta */
874 if (retval)
875 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -0400876
877 /* calculate package delta only for 1st core in package */
878 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
Len Brownba3dec92016-04-22 20:31:46 -0400879 retval = delta_package(p, p2);
Len Brownc98d5d92012-06-04 00:56:40 -0400880
Len Brownba3dec92016-04-22 20:31:46 -0400881 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -0400882}
883
884void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
885{
886 t->tsc = 0;
887 t->aperf = 0;
888 t->mperf = 0;
889 t->c1 = 0;
890
Len Brown8e180f32012-09-22 01:25:08 -0400891 t->extra_delta32 = 0;
892 t->extra_delta64 = 0;
893
Len Brown562a2d32016-02-26 23:48:05 -0500894 t->irq_count = 0;
895 t->smi_count = 0;
896
Len Brownc98d5d92012-06-04 00:56:40 -0400897 /* tells format_counters to dump all fields from this set */
898 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
899
900 c->c3 = 0;
901 c->c6 = 0;
902 c->c7 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500903 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400904
Len Brown0b2bb692015-03-26 00:50:30 -0400905 p->pkg_wtd_core_c0 = 0;
906 p->pkg_any_core_c0 = 0;
907 p->pkg_any_gfxe_c0 = 0;
908 p->pkg_both_core_gfxe_c0 = 0;
909
Len Brownc98d5d92012-06-04 00:56:40 -0400910 p->pc2 = 0;
Len Brownee7e38e2015-02-09 23:39:45 -0500911 if (do_pc3)
912 p->pc3 = 0;
913 if (do_pc6)
914 p->pc6 = 0;
915 if (do_pc7)
916 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800917 p->pc8 = 0;
918 p->pc9 = 0;
919 p->pc10 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500920
921 p->energy_pkg = 0;
922 p->energy_dram = 0;
923 p->energy_cores = 0;
924 p->energy_gfx = 0;
925 p->rapl_pkg_perf_status = 0;
926 p->rapl_dram_perf_status = 0;
927 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -0500928
Len Brownfdf676e2016-02-27 01:28:12 -0500929 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -0500930 p->gfx_mhz = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400931}
932int sum_counters(struct thread_data *t, struct core_data *c,
933 struct pkg_data *p)
934{
935 average.threads.tsc += t->tsc;
936 average.threads.aperf += t->aperf;
937 average.threads.mperf += t->mperf;
938 average.threads.c1 += t->c1;
939
Len Brown8e180f32012-09-22 01:25:08 -0400940 average.threads.extra_delta32 += t->extra_delta32;
941 average.threads.extra_delta64 += t->extra_delta64;
942
Len Brown562a2d32016-02-26 23:48:05 -0500943 average.threads.irq_count += t->irq_count;
944 average.threads.smi_count += t->smi_count;
945
Len Brownc98d5d92012-06-04 00:56:40 -0400946 /* sum per-core values only for 1st thread in core */
947 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
948 return 0;
949
950 average.cores.c3 += c->c3;
951 average.cores.c6 += c->c6;
952 average.cores.c7 += c->c7;
953
Len Brown889facb2012-11-08 00:48:57 -0500954 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
955
Len Brownc98d5d92012-06-04 00:56:40 -0400956 /* sum per-pkg values only for 1st core in pkg */
957 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
958 return 0;
959
Len Brown0b2bb692015-03-26 00:50:30 -0400960 if (do_skl_residency) {
961 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
962 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
963 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
964 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
965 }
966
Len Brownc98d5d92012-06-04 00:56:40 -0400967 average.packages.pc2 += p->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500968 if (do_pc3)
969 average.packages.pc3 += p->pc3;
970 if (do_pc6)
971 average.packages.pc6 += p->pc6;
972 if (do_pc7)
973 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800974 average.packages.pc8 += p->pc8;
975 average.packages.pc9 += p->pc9;
976 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -0400977
Len Brown889facb2012-11-08 00:48:57 -0500978 average.packages.energy_pkg += p->energy_pkg;
979 average.packages.energy_dram += p->energy_dram;
980 average.packages.energy_cores += p->energy_cores;
981 average.packages.energy_gfx += p->energy_gfx;
982
Len Brownfdf676e2016-02-27 01:28:12 -0500983 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500984 average.packages.gfx_mhz = p->gfx_mhz;
985
Len Brown889facb2012-11-08 00:48:57 -0500986 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
987
988 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
989 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brownc98d5d92012-06-04 00:56:40 -0400990 return 0;
991}
992/*
993 * sum the counters for all cpus in the system
994 * compute the weighted average
995 */
996void compute_average(struct thread_data *t, struct core_data *c,
997 struct pkg_data *p)
998{
999 clear_counters(&average.threads, &average.cores, &average.packages);
1000
1001 for_all_cpus(sum_counters, t, c, p);
1002
1003 average.threads.tsc /= topo.num_cpus;
1004 average.threads.aperf /= topo.num_cpus;
1005 average.threads.mperf /= topo.num_cpus;
1006 average.threads.c1 /= topo.num_cpus;
1007
Len Brown8e180f32012-09-22 01:25:08 -04001008 average.threads.extra_delta32 /= topo.num_cpus;
1009 average.threads.extra_delta32 &= 0xFFFFFFFF;
1010
1011 average.threads.extra_delta64 /= topo.num_cpus;
1012
Len Brownc98d5d92012-06-04 00:56:40 -04001013 average.cores.c3 /= topo.num_cores;
1014 average.cores.c6 /= topo.num_cores;
1015 average.cores.c7 /= topo.num_cores;
1016
Len Brown0b2bb692015-03-26 00:50:30 -04001017 if (do_skl_residency) {
1018 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
1019 average.packages.pkg_any_core_c0 /= topo.num_packages;
1020 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
1021 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
1022 }
1023
Len Brownc98d5d92012-06-04 00:56:40 -04001024 average.packages.pc2 /= topo.num_packages;
Len Brownee7e38e2015-02-09 23:39:45 -05001025 if (do_pc3)
1026 average.packages.pc3 /= topo.num_packages;
1027 if (do_pc6)
1028 average.packages.pc6 /= topo.num_packages;
1029 if (do_pc7)
1030 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001031
1032 average.packages.pc8 /= topo.num_packages;
1033 average.packages.pc9 /= topo.num_packages;
1034 average.packages.pc10 /= topo.num_packages;
Len Brownc98d5d92012-06-04 00:56:40 -04001035}
1036
1037static unsigned long long rdtsc(void)
1038{
1039 unsigned int low, high;
1040
1041 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1042
1043 return low | ((unsigned long long)high) << 32;
1044}
1045
Len Brownc98d5d92012-06-04 00:56:40 -04001046/*
1047 * get_counters(...)
1048 * migrate to cpu
1049 * acquire and record local counters for that cpu
1050 */
1051int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1052{
1053 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001054 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001055 int aperf_mperf_retry_count = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001056
Len Browne52966c2012-11-08 22:38:05 -05001057 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001058 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001059 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001060 }
Len Brownc98d5d92012-06-04 00:56:40 -04001061
Len Brown0102b062016-02-27 03:11:29 -05001062retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001063 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1064
1065 if (has_aperf) {
Len Brown0102b062016-02-27 03:11:29 -05001066 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1067
1068 /*
1069 * The TSC, APERF and MPERF must be read together for
1070 * APERF/MPERF and MPERF/TSC to give accurate results.
1071 *
1072 * Unfortunately, APERF and MPERF are read by
1073 * individual system call, so delays may occur
1074 * between them. If the time to read them
1075 * varies by a large amount, we re-read them.
1076 */
1077
1078 /*
1079 * This initial dummy APERF read has been seen to
1080 * reduce jitter in the subsequent reads.
1081 */
1082
Len Brown9c63a652012-10-31 01:29:52 -04001083 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001084 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001085
1086 t->tsc = rdtsc(); /* re-read close to APERF */
1087
1088 tsc_before = t->tsc;
1089
1090 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1091 return -3;
1092
1093 tsc_between = rdtsc();
1094
Len Brown9c63a652012-10-31 01:29:52 -04001095 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001096 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001097
1098 tsc_after = rdtsc();
1099
1100 aperf_time = tsc_between - tsc_before;
1101 mperf_time = tsc_after - tsc_between;
1102
1103 /*
1104 * If the system call latency to read APERF and MPERF
1105 * differ by more than 2x, then try again.
1106 */
1107 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1108 aperf_mperf_retry_count++;
1109 if (aperf_mperf_retry_count < 5)
1110 goto retry;
1111 else
1112 warnx("cpu%d jitter %lld %lld",
1113 cpu, aperf_time, mperf_time);
1114 }
1115 aperf_mperf_retry_count = 0;
1116
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001117 t->aperf = t->aperf * aperf_mperf_multiplier;
1118 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001119 }
1120
Len Brown562a2d32016-02-26 23:48:05 -05001121 if (do_irq)
1122 t->irq_count = irqs_per_cpu[cpu];
Len Brown1ed51012013-02-10 17:19:24 -05001123 if (do_smi) {
1124 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1125 return -5;
1126 t->smi_count = msr & 0xFFFFFFFF;
1127 }
Len Brown8e180f32012-09-22 01:25:08 -04001128 if (extra_delta_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001129 if (get_msr(cpu, extra_delta_offset32, &msr))
Len Brown2f32edf2012-09-21 23:45:46 -04001130 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001131 t->extra_delta32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001132 }
1133
1134 if (extra_delta_offset64)
1135 if (get_msr(cpu, extra_delta_offset64, &t->extra_delta64))
1136 return -5;
1137
1138 if (extra_msr_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001139 if (get_msr(cpu, extra_msr_offset32, &msr))
Len Brown8e180f32012-09-22 01:25:08 -04001140 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001141 t->extra_msr32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001142 }
Len Brown2f32edf2012-09-21 23:45:46 -04001143
1144 if (extra_msr_offset64)
1145 if (get_msr(cpu, extra_msr_offset64, &t->extra_msr64))
Len Brownc98d5d92012-06-04 00:56:40 -04001146 return -5;
1147
Len Brown144b44b2013-11-09 00:30:16 -05001148 if (use_c1_residency_msr) {
1149 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1150 return -6;
1151 }
1152
Len Brownc98d5d92012-06-04 00:56:40 -04001153 /* collect core counters only for 1st thread in core */
1154 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1155 return 0;
1156
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001157 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001158 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1159 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001160 }
1161
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001162 if (do_nhm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001163 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1164 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001165 } else if (do_knl_cstates) {
1166 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1167 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001168 }
1169
1170 if (do_snb_cstates)
1171 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1172 return -8;
1173
Len Brown889facb2012-11-08 00:48:57 -05001174 if (do_dts) {
1175 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1176 return -9;
1177 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1178 }
1179
1180
Len Brownc98d5d92012-06-04 00:56:40 -04001181 /* collect package counters only for 1st core in package */
1182 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1183 return 0;
1184
Len Brown0b2bb692015-03-26 00:50:30 -04001185 if (do_skl_residency) {
1186 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1187 return -10;
1188 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1189 return -11;
1190 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1191 return -12;
1192 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1193 return -13;
1194 }
Len Brownee7e38e2015-02-09 23:39:45 -05001195 if (do_pc3)
Len Brownc98d5d92012-06-04 00:56:40 -04001196 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1197 return -9;
Len Brownee7e38e2015-02-09 23:39:45 -05001198 if (do_pc6)
Len Brownc98d5d92012-06-04 00:56:40 -04001199 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1200 return -10;
Len Brownee7e38e2015-02-09 23:39:45 -05001201 if (do_pc2)
Len Brownc98d5d92012-06-04 00:56:40 -04001202 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1203 return -11;
Len Brownee7e38e2015-02-09 23:39:45 -05001204 if (do_pc7)
Len Brownc98d5d92012-06-04 00:56:40 -04001205 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1206 return -12;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001207 if (do_c8_c9_c10) {
1208 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1209 return -13;
1210 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1211 return -13;
1212 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1213 return -13;
1214 }
Len Brown889facb2012-11-08 00:48:57 -05001215 if (do_rapl & RAPL_PKG) {
1216 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1217 return -13;
1218 p->energy_pkg = msr & 0xFFFFFFFF;
1219 }
1220 if (do_rapl & RAPL_CORES) {
1221 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1222 return -14;
1223 p->energy_cores = msr & 0xFFFFFFFF;
1224 }
1225 if (do_rapl & RAPL_DRAM) {
1226 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1227 return -15;
1228 p->energy_dram = msr & 0xFFFFFFFF;
1229 }
1230 if (do_rapl & RAPL_GFX) {
1231 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1232 return -16;
1233 p->energy_gfx = msr & 0xFFFFFFFF;
1234 }
1235 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1236 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1237 return -16;
1238 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1239 }
1240 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1241 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1242 return -16;
1243 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1244 }
1245 if (do_ptm) {
1246 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1247 return -17;
1248 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1249 }
Len Brownfdf676e2016-02-27 01:28:12 -05001250
1251 if (do_gfx_rc6_ms)
1252 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1253
Len Brown27d47352016-02-27 00:37:54 -05001254 if (do_gfx_mhz)
1255 p->gfx_mhz = gfx_cur_mhz;
1256
Len Brown103a8fe2010-10-22 23:53:03 -04001257 return 0;
1258}
1259
Len Brownee7e38e2015-02-09 23:39:45 -05001260/*
1261 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1262 * If you change the values, note they are used both in comparisons
1263 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1264 */
1265
1266#define PCLUKN 0 /* Unknown */
1267#define PCLRSV 1 /* Reserved */
1268#define PCL__0 2 /* PC0 */
1269#define PCL__1 3 /* PC1 */
1270#define PCL__2 4 /* PC2 */
1271#define PCL__3 5 /* PC3 */
1272#define PCL__4 6 /* PC4 */
1273#define PCL__6 7 /* PC6 */
1274#define PCL_6N 8 /* PC6 No Retention */
1275#define PCL_6R 9 /* PC6 Retention */
1276#define PCL__7 10 /* PC7 */
1277#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001278#define PCL__8 12 /* PC8 */
1279#define PCL__9 13 /* PC9 */
1280#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001281
1282int pkg_cstate_limit = PCLUKN;
1283char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001284 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001285
Len Browne9257f52015-04-01 21:02:57 -04001286int 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};
1287int 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};
1288int 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};
1289int 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};
1290int 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};
1291int 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};
Len Browne4085d52016-04-06 17:15:56 -04001292int bxt_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
Len Brownee7e38e2015-02-09 23:39:45 -05001293
Len Browna2b7b742015-09-26 00:12:38 -04001294
1295static void
1296calculate_tsc_tweak()
1297{
Len Browna2b7b742015-09-26 00:12:38 -04001298 tsc_tweak = base_hz / tsc_hz;
1299}
1300
Len Brownfcd17212015-03-23 20:29:09 -04001301static void
1302dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001303{
1304 unsigned long long msr;
1305 unsigned int ratio;
1306
Len Brownec0adc52015-11-12 02:42:31 -05001307 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001308
Len Brownb7d8c142016-02-13 23:36:17 -05001309 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001310
Len Brown103a8fe2010-10-22 23:53:03 -04001311 ratio = (msr >> 40) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001312 fprintf(outf, "%d * %.0f = %.0f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001313 ratio, bclk, ratio * bclk);
1314
1315 ratio = (msr >> 8) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001316 fprintf(outf, "%d * %.0f = %.0f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001317 ratio, bclk, ratio * bclk);
1318
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001319 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001320 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001321 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001322
Len Brownfcd17212015-03-23 20:29:09 -04001323 return;
1324}
1325
1326static void
1327dump_hsw_turbo_ratio_limits(void)
1328{
1329 unsigned long long msr;
1330 unsigned int ratio;
1331
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001332 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001333
Len Brownb7d8c142016-02-13 23:36:17 -05001334 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001335
1336 ratio = (msr >> 8) & 0xFF;
1337 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001338 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001339 ratio, bclk, ratio * bclk);
1340
1341 ratio = (msr >> 0) & 0xFF;
1342 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001343 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001344 ratio, bclk, ratio * bclk);
1345 return;
1346}
1347
1348static void
1349dump_ivt_turbo_ratio_limits(void)
1350{
1351 unsigned long long msr;
1352 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001353
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001354 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001355
Len Brownb7d8c142016-02-13 23:36:17 -05001356 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001357
1358 ratio = (msr >> 56) & 0xFF;
1359 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001360 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001361 ratio, bclk, ratio * bclk);
1362
1363 ratio = (msr >> 48) & 0xFF;
1364 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001365 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001366 ratio, bclk, ratio * bclk);
1367
1368 ratio = (msr >> 40) & 0xFF;
1369 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001370 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001371 ratio, bclk, ratio * bclk);
1372
1373 ratio = (msr >> 32) & 0xFF;
1374 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001375 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001376 ratio, bclk, ratio * bclk);
1377
1378 ratio = (msr >> 24) & 0xFF;
1379 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001380 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001381 ratio, bclk, ratio * bclk);
1382
1383 ratio = (msr >> 16) & 0xFF;
1384 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001385 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001386 ratio, bclk, ratio * bclk);
1387
1388 ratio = (msr >> 8) & 0xFF;
1389 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001390 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001391 ratio, bclk, ratio * bclk);
1392
1393 ratio = (msr >> 0) & 0xFF;
1394 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001395 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001396 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001397 return;
1398}
Len Brown6574a5d2012-09-21 00:01:31 -04001399
Len Brownfcd17212015-03-23 20:29:09 -04001400static void
1401dump_nhm_turbo_ratio_limits(void)
1402{
1403 unsigned long long msr;
1404 unsigned int ratio;
Len Brown103a8fe2010-10-22 23:53:03 -04001405
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001406 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001407
Len Brownb7d8c142016-02-13 23:36:17 -05001408 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001409
1410 ratio = (msr >> 56) & 0xFF;
1411 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001412 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 8 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001413 ratio, bclk, ratio * bclk);
1414
1415 ratio = (msr >> 48) & 0xFF;
1416 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001417 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 7 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001418 ratio, bclk, ratio * bclk);
1419
1420 ratio = (msr >> 40) & 0xFF;
1421 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001422 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 6 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001423 ratio, bclk, ratio * bclk);
1424
1425 ratio = (msr >> 32) & 0xFF;
1426 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001427 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 5 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001428 ratio, bclk, ratio * bclk);
1429
Len Brown103a8fe2010-10-22 23:53:03 -04001430 ratio = (msr >> 24) & 0xFF;
1431 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001432 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001433 ratio, bclk, ratio * bclk);
1434
1435 ratio = (msr >> 16) & 0xFF;
1436 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001437 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001438 ratio, bclk, ratio * bclk);
1439
1440 ratio = (msr >> 8) & 0xFF;
1441 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001442 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001443 ratio, bclk, ratio * bclk);
1444
1445 ratio = (msr >> 0) & 0xFF;
1446 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001447 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001448 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001449 return;
1450}
Len Brown3a9a9412014-08-15 02:39:52 -04001451
Len Brownfcd17212015-03-23 20:29:09 -04001452static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001453dump_knl_turbo_ratio_limits(void)
1454{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001455 const unsigned int buckets_no = 7;
1456
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001457 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001458 int delta_cores, delta_ratio;
1459 int i, b_nr;
1460 unsigned int cores[buckets_no];
1461 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001462
Srinivas Pandruvadaebf59262016-07-06 16:07:56 -07001463 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001464
Len Brownb7d8c142016-02-13 23:36:17 -05001465 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04001466 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001467
1468 /**
1469 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001470 * [0] -- Reserved
1471 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001472 * [15:8] -- Base value of freq ratio of bucket 1.
1473 * [20:16] -- +ve delta of number of active cores of bucket 2.
1474 * i.e. active cores of bucket 2 =
1475 * active cores of bucket 1 + delta
1476 * [23:21] -- Negative delta of freq ratio of bucket 2.
1477 * i.e. freq ratio of bucket 2 =
1478 * freq ratio of bucket 1 - delta
1479 * [28:24]-- +ve delta of number of active cores of bucket 3.
1480 * [31:29]-- -ve delta of freq ratio of bucket 3.
1481 * [36:32]-- +ve delta of number of active cores of bucket 4.
1482 * [39:37]-- -ve delta of freq ratio of bucket 4.
1483 * [44:40]-- +ve delta of number of active cores of bucket 5.
1484 * [47:45]-- -ve delta of freq ratio of bucket 5.
1485 * [52:48]-- +ve delta of number of active cores of bucket 6.
1486 * [55:53]-- -ve delta of freq ratio of bucket 6.
1487 * [60:56]-- +ve delta of number of active cores of bucket 7.
1488 * [63:61]-- -ve delta of freq ratio of bucket 7.
1489 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001490
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001491 b_nr = 0;
1492 cores[b_nr] = (msr & 0xFF) >> 1;
1493 ratio[b_nr] = (msr >> 8) & 0xFF;
1494
1495 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001496 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001497 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001498
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001499 cores[b_nr + 1] = cores[b_nr] + delta_cores;
1500 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
1501 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001502 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001503
1504 for (i = buckets_no - 1; i >= 0; i--)
1505 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05001506 fprintf(outf,
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001507 "%d * %.0f = %.0f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001508 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001509}
1510
1511static void
Len Brownfcd17212015-03-23 20:29:09 -04001512dump_nhm_cst_cfg(void)
1513{
1514 unsigned long long msr;
1515
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001516 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001517
1518#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
1519#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
1520
Len Brownb7d8c142016-02-13 23:36:17 -05001521 fprintf(outf, "cpu%d: MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001522
Len Brownb7d8c142016-02-13 23:36:17 -05001523 fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
Len Brownfcd17212015-03-23 20:29:09 -04001524 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
1525 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
1526 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
1527 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
1528 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04001529 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04001530 pkg_cstate_limit_strings[pkg_cstate_limit]);
1531 return;
Len Brown103a8fe2010-10-22 23:53:03 -04001532}
1533
Len Brown6fb31432015-06-17 16:23:45 -04001534static void
1535dump_config_tdp(void)
1536{
1537 unsigned long long msr;
1538
1539 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001540 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001541 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04001542
1543 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001544 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001545 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001546 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1547 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1548 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1549 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001550 }
Len Brownb7d8c142016-02-13 23:36:17 -05001551 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001552
1553 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001554 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001555 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001556 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1557 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1558 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1559 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001560 }
Len Brownb7d8c142016-02-13 23:36:17 -05001561 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001562
1563 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001564 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001565 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05001566 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
1567 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1568 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05001569
Len Brown6fb31432015-06-17 16:23:45 -04001570 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001571 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001572 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05001573 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1574 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001575}
Len Brown5a634262016-04-06 17:15:55 -04001576
1577unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
1578
1579void print_irtl(void)
1580{
1581 unsigned long long msr;
1582
1583 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
1584 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
1585 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1586 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1587
1588 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
1589 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
1590 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1591 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1592
1593 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
1594 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
1595 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1596 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1597
1598 if (!do_irtl_hsw)
1599 return;
1600
1601 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
1602 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
1603 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1604 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1605
1606 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
1607 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
1608 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1609 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1610
1611 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
1612 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
1613 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1614 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1615
1616}
Len Brown36229892016-02-26 20:51:02 -05001617void free_fd_percpu(void)
1618{
1619 int i;
1620
Mika Westerberg01a67ad2016-04-22 11:13:23 +03001621 for (i = 0; i < topo.max_cpu_num + 1; ++i) {
Len Brown36229892016-02-26 20:51:02 -05001622 if (fd_percpu[i] != 0)
1623 close(fd_percpu[i]);
1624 }
1625
1626 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04001627}
1628
Len Brownc98d5d92012-06-04 00:56:40 -04001629void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001630{
Len Brownc98d5d92012-06-04 00:56:40 -04001631 CPU_FREE(cpu_present_set);
1632 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05001633 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001634
Len Brownc98d5d92012-06-04 00:56:40 -04001635 CPU_FREE(cpu_affinity_set);
1636 cpu_affinity_set = NULL;
1637 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001638
Len Brownc98d5d92012-06-04 00:56:40 -04001639 free(thread_even);
1640 free(core_even);
1641 free(package_even);
1642
1643 thread_even = NULL;
1644 core_even = NULL;
1645 package_even = NULL;
1646
1647 free(thread_odd);
1648 free(core_odd);
1649 free(package_odd);
1650
1651 thread_odd = NULL;
1652 core_odd = NULL;
1653 package_odd = NULL;
1654
1655 free(output_buffer);
1656 output_buffer = NULL;
1657 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05001658
1659 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05001660
1661 free(irq_column_2_cpu);
1662 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001663}
1664
Len Brownc98d5d92012-06-04 00:56:40 -04001665/*
Josh Triplett57a42a32013-08-20 17:20:17 -07001666 * Open a file, and exit on failure
1667 */
1668FILE *fopen_or_die(const char *path, const char *mode)
1669{
Len Brownb7d8c142016-02-13 23:36:17 -05001670 FILE *filep = fopen(path, mode);
Josh Triplettb2c95d92013-08-20 17:20:18 -07001671 if (!filep)
1672 err(1, "%s: open failed", path);
Josh Triplett57a42a32013-08-20 17:20:17 -07001673 return filep;
1674}
1675
1676/*
Josh Triplett95aebc42013-08-20 17:20:16 -07001677 * Parse a file containing a single int.
1678 */
1679int parse_int_file(const char *fmt, ...)
1680{
1681 va_list args;
1682 char path[PATH_MAX];
1683 FILE *filep;
1684 int value;
1685
1686 va_start(args, fmt);
1687 vsnprintf(path, sizeof(path), fmt, args);
1688 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07001689 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001690 if (fscanf(filep, "%d", &value) != 1)
1691 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07001692 fclose(filep);
1693 return value;
1694}
1695
1696/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001697 * get_cpu_position_in_core(cpu)
1698 * return the position of the CPU among its HT siblings in the core
1699 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04001700 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001701int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001702{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001703 char path[64];
1704 FILE *filep;
1705 int this_cpu;
1706 char character;
1707 int i;
1708
1709 sprintf(path,
1710 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
1711 cpu);
1712 filep = fopen(path, "r");
1713 if (filep == NULL) {
1714 perror(path);
1715 exit(1);
1716 }
1717
1718 for (i = 0; i < topo.num_threads_per_core; i++) {
1719 fscanf(filep, "%d", &this_cpu);
1720 if (this_cpu == cpu) {
1721 fclose(filep);
1722 return i;
1723 }
1724
1725 /* Account for no separator after last thread*/
1726 if (i != (topo.num_threads_per_core - 1))
1727 fscanf(filep, "%c", &character);
1728 }
1729
1730 fclose(filep);
1731 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04001732}
1733
Len Brownc98d5d92012-06-04 00:56:40 -04001734/*
1735 * cpu_is_first_core_in_package(cpu)
1736 * return 1 if given CPU is 1st core in package
1737 */
1738int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001739{
Josh Triplett95aebc42013-08-20 17:20:16 -07001740 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001741}
1742
1743int get_physical_package_id(int cpu)
1744{
Josh Triplett95aebc42013-08-20 17:20:16 -07001745 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001746}
1747
1748int get_core_id(int cpu)
1749{
Josh Triplett95aebc42013-08-20 17:20:16 -07001750 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001751}
1752
Len Brownc98d5d92012-06-04 00:56:40 -04001753int get_num_ht_siblings(int cpu)
1754{
1755 char path[80];
1756 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001757 int sib1;
1758 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001759 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001760 char str[100];
1761 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04001762
1763 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07001764 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001765
Len Brownc98d5d92012-06-04 00:56:40 -04001766 /*
1767 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001768 * A ',' separated or '-' separated set of numbers
1769 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04001770 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001771 fscanf(filep, "%d%c\n", &sib1, &character);
1772 fseek(filep, 0, SEEK_SET);
1773 fgets(str, 100, filep);
1774 ch = strchr(str, character);
1775 while (ch != NULL) {
1776 matches++;
1777 ch = strchr(ch+1, character);
1778 }
Len Brownc98d5d92012-06-04 00:56:40 -04001779
1780 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001781 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04001782}
1783
Len Brown103a8fe2010-10-22 23:53:03 -04001784/*
Len Brownc98d5d92012-06-04 00:56:40 -04001785 * run func(thread, core, package) in topology order
1786 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04001787 */
1788
Len Brownc98d5d92012-06-04 00:56:40 -04001789int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
1790 struct pkg_data *, struct thread_data *, struct core_data *,
1791 struct pkg_data *), struct thread_data *thread_base,
1792 struct core_data *core_base, struct pkg_data *pkg_base,
1793 struct thread_data *thread_base2, struct core_data *core_base2,
1794 struct pkg_data *pkg_base2)
1795{
1796 int retval, pkg_no, core_no, thread_no;
1797
1798 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
1799 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
1800 for (thread_no = 0; thread_no <
1801 topo.num_threads_per_core; ++thread_no) {
1802 struct thread_data *t, *t2;
1803 struct core_data *c, *c2;
1804 struct pkg_data *p, *p2;
1805
1806 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
1807
1808 if (cpu_is_not_present(t->cpu_id))
1809 continue;
1810
1811 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
1812
1813 c = GET_CORE(core_base, core_no, pkg_no);
1814 c2 = GET_CORE(core_base2, core_no, pkg_no);
1815
1816 p = GET_PKG(pkg_base, pkg_no);
1817 p2 = GET_PKG(pkg_base2, pkg_no);
1818
1819 retval = func(t, c, p, t2, c2, p2);
1820 if (retval)
1821 return retval;
1822 }
1823 }
1824 }
1825 return 0;
1826}
1827
1828/*
1829 * run func(cpu) on every cpu in /proc/stat
1830 * return max_cpu number
1831 */
1832int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04001833{
1834 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04001835 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04001836 int retval;
1837
Josh Triplett57a42a32013-08-20 17:20:17 -07001838 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04001839
1840 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001841 if (retval != 0)
1842 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04001843
Len Brownc98d5d92012-06-04 00:56:40 -04001844 while (1) {
1845 retval = fscanf(fp, "cpu%u %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n", &cpu_num);
Len Brown103a8fe2010-10-22 23:53:03 -04001846 if (retval != 1)
1847 break;
1848
Len Brownc98d5d92012-06-04 00:56:40 -04001849 retval = func(cpu_num);
1850 if (retval) {
1851 fclose(fp);
1852 return(retval);
1853 }
Len Brown103a8fe2010-10-22 23:53:03 -04001854 }
1855 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04001856 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001857}
1858
1859void re_initialize(void)
1860{
Len Brownc98d5d92012-06-04 00:56:40 -04001861 free_all_buffers();
1862 setup_all_buffers();
1863 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04001864}
1865
Len Brownc98d5d92012-06-04 00:56:40 -04001866
Len Brown103a8fe2010-10-22 23:53:03 -04001867/*
Len Brownc98d5d92012-06-04 00:56:40 -04001868 * count_cpus()
1869 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04001870 */
Len Brownc98d5d92012-06-04 00:56:40 -04001871int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001872{
Len Brownc98d5d92012-06-04 00:56:40 -04001873 if (topo.max_cpu_num < cpu)
1874 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04001875
Len Brownc98d5d92012-06-04 00:56:40 -04001876 topo.num_cpus += 1;
1877 return 0;
1878}
1879int mark_cpu_present(int cpu)
1880{
1881 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04001882 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001883}
1884
Len Brown562a2d32016-02-26 23:48:05 -05001885/*
1886 * snapshot_proc_interrupts()
1887 *
1888 * read and record summary of /proc/interrupts
1889 *
1890 * return 1 if config change requires a restart, else return 0
1891 */
1892int snapshot_proc_interrupts(void)
1893{
1894 static FILE *fp;
1895 int column, retval;
1896
1897 if (fp == NULL)
1898 fp = fopen_or_die("/proc/interrupts", "r");
1899 else
1900 rewind(fp);
1901
1902 /* read 1st line of /proc/interrupts to get cpu* name for each column */
1903 for (column = 0; column < topo.num_cpus; ++column) {
1904 int cpu_number;
1905
1906 retval = fscanf(fp, " CPU%d", &cpu_number);
1907 if (retval != 1)
1908 break;
1909
1910 if (cpu_number > topo.max_cpu_num) {
1911 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
1912 return 1;
1913 }
1914
1915 irq_column_2_cpu[column] = cpu_number;
1916 irqs_per_cpu[cpu_number] = 0;
1917 }
1918
1919 /* read /proc/interrupt count lines and sum up irqs per cpu */
1920 while (1) {
1921 int column;
1922 char buf[64];
1923
1924 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
1925 if (retval != 1)
1926 break;
1927
1928 /* read the count per cpu */
1929 for (column = 0; column < topo.num_cpus; ++column) {
1930
1931 int cpu_number, irq_count;
1932
1933 retval = fscanf(fp, " %d", &irq_count);
1934 if (retval != 1)
1935 break;
1936
1937 cpu_number = irq_column_2_cpu[column];
1938 irqs_per_cpu[cpu_number] += irq_count;
1939
1940 }
1941
1942 while (getc(fp) != '\n')
1943 ; /* flush interrupt description */
1944
1945 }
1946 return 0;
1947}
Len Brown27d47352016-02-27 00:37:54 -05001948/*
Len Brownfdf676e2016-02-27 01:28:12 -05001949 * snapshot_gfx_rc6_ms()
1950 *
1951 * record snapshot of
1952 * /sys/class/drm/card0/power/rc6_residency_ms
1953 *
1954 * return 1 if config change requires a restart, else return 0
1955 */
1956int snapshot_gfx_rc6_ms(void)
1957{
1958 FILE *fp;
1959 int retval;
1960
1961 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
1962
1963 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
1964 if (retval != 1)
1965 err(1, "GFX rc6");
1966
1967 fclose(fp);
1968
1969 return 0;
1970}
1971/*
Len Brown27d47352016-02-27 00:37:54 -05001972 * snapshot_gfx_mhz()
1973 *
1974 * record snapshot of
1975 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
1976 *
1977 * return 1 if config change requires a restart, else return 0
1978 */
1979int snapshot_gfx_mhz(void)
1980{
1981 static FILE *fp;
1982 int retval;
1983
1984 if (fp == NULL)
1985 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
1986 else
1987 rewind(fp);
1988
1989 retval = fscanf(fp, "%d", &gfx_cur_mhz);
1990 if (retval != 1)
1991 err(1, "GFX MHz");
1992
1993 return 0;
1994}
Len Brown562a2d32016-02-26 23:48:05 -05001995
1996/*
1997 * snapshot /proc and /sys files
1998 *
1999 * return 1 if configuration restart needed, else return 0
2000 */
2001int snapshot_proc_sysfs_files(void)
2002{
2003 if (snapshot_proc_interrupts())
2004 return 1;
2005
Len Brownfdf676e2016-02-27 01:28:12 -05002006 if (do_gfx_rc6_ms)
2007 snapshot_gfx_rc6_ms();
2008
Len Brown27d47352016-02-27 00:37:54 -05002009 if (do_gfx_mhz)
2010 snapshot_gfx_mhz();
2011
Len Brown562a2d32016-02-26 23:48:05 -05002012 return 0;
2013}
2014
Len Brown103a8fe2010-10-22 23:53:03 -04002015void turbostat_loop()
2016{
Len Brownc98d5d92012-06-04 00:56:40 -04002017 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002018 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002019
Len Brown103a8fe2010-10-22 23:53:03 -04002020restart:
Len Browne52966c2012-11-08 22:38:05 -05002021 restarted++;
2022
Len Brown562a2d32016-02-26 23:48:05 -05002023 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002024 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002025 if (retval < -1) {
2026 exit(retval);
2027 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002028 if (restarted > 1) {
2029 exit(retval);
2030 }
Len Brownc98d5d92012-06-04 00:56:40 -04002031 re_initialize();
2032 goto restart;
2033 }
Len Browne52966c2012-11-08 22:38:05 -05002034 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002035 gettimeofday(&tv_even, (struct timezone *)NULL);
2036
2037 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002038 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002039 re_initialize();
2040 goto restart;
2041 }
Len Brown2a0609c2016-02-12 22:44:48 -05002042 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002043 if (snapshot_proc_sysfs_files())
2044 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002045 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002046 if (retval < -1) {
2047 exit(retval);
2048 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002049 re_initialize();
2050 goto restart;
2051 }
Len Brown103a8fe2010-10-22 23:53:03 -04002052 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002053 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002054 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2055 re_initialize();
2056 goto restart;
2057 }
Len Brownc98d5d92012-06-04 00:56:40 -04002058 compute_average(EVEN_COUNTERS);
2059 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002060 flush_output_stdout();
Len Brown2a0609c2016-02-12 22:44:48 -05002061 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002062 if (snapshot_proc_sysfs_files())
2063 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002064 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002065 if (retval < -1) {
2066 exit(retval);
2067 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002068 re_initialize();
2069 goto restart;
2070 }
Len Brown103a8fe2010-10-22 23:53:03 -04002071 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002072 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002073 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2074 re_initialize();
2075 goto restart;
2076 }
Len Brownc98d5d92012-06-04 00:56:40 -04002077 compute_average(ODD_COUNTERS);
2078 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002079 flush_output_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -04002080 }
2081}
2082
2083void check_dev_msr()
2084{
2085 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002086 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002087
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002088 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2089 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002090 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2091 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002092}
2093
Len Brown98481e72014-08-15 00:36:50 -04002094void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002095{
Len Brown98481e72014-08-15 00:36:50 -04002096 struct __user_cap_header_struct cap_header_data;
2097 cap_user_header_t cap_header = &cap_header_data;
2098 struct __user_cap_data_struct cap_data_data;
2099 cap_user_data_t cap_data = &cap_data_data;
2100 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2101 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002102 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002103
2104 /* check for CAP_SYS_RAWIO */
2105 cap_header->pid = getpid();
2106 cap_header->version = _LINUX_CAPABILITY_VERSION;
2107 if (capget(cap_header, cap_data) < 0)
2108 err(-6, "capget(2) failed");
2109
2110 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2111 do_exit++;
2112 warnx("capget(CAP_SYS_RAWIO) failed,"
2113 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2114 }
2115
2116 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002117 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2118 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002119 do_exit++;
2120 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2121 }
2122
2123 /* if all else fails, thell them to be root */
2124 if (do_exit)
2125 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002126 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002127
2128 if (do_exit)
2129 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002130}
2131
Len Brownd7899442015-01-23 00:12:33 -05002132/*
2133 * NHM adds support for additional MSRs:
2134 *
2135 * MSR_SMI_COUNT 0x00000034
2136 *
Len Brownec0adc52015-11-12 02:42:31 -05002137 * MSR_PLATFORM_INFO 0x000000ce
Len Brownd7899442015-01-23 00:12:33 -05002138 * MSR_NHM_SNB_PKG_CST_CFG_CTL 0x000000e2
2139 *
2140 * MSR_PKG_C3_RESIDENCY 0x000003f8
2141 * MSR_PKG_C6_RESIDENCY 0x000003f9
2142 * MSR_CORE_C3_RESIDENCY 0x000003fc
2143 * MSR_CORE_C6_RESIDENCY 0x000003fd
2144 *
Len Brownee7e38e2015-02-09 23:39:45 -05002145 * Side effect:
2146 * sets global pkg_cstate_limit to decode MSR_NHM_SNB_PKG_CST_CFG_CTL
Len Brownd7899442015-01-23 00:12:33 -05002147 */
Len Brownee7e38e2015-02-09 23:39:45 -05002148int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002149{
Len Brownee7e38e2015-02-09 23:39:45 -05002150 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002151 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002152 int *pkg_cstate_limits;
2153
Len Brown103a8fe2010-10-22 23:53:03 -04002154 if (!genuine_intel)
2155 return 0;
2156
2157 if (family != 6)
2158 return 0;
2159
Len Brown21ed5572015-10-19 22:37:40 -04002160 bclk = discover_bclk(family, model);
2161
Len Brown103a8fe2010-10-22 23:53:03 -04002162 switch (model) {
2163 case 0x1A: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2164 case 0x1E: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
2165 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
2166 case 0x25: /* Westmere Client - Clarkdale, Arrandale */
2167 case 0x2C: /* Westmere EP - Gulftown */
Len Brownee7e38e2015-02-09 23:39:45 -05002168 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2169 case 0x2F: /* Westmere-EX Xeon - Eagleton */
2170 pkg_cstate_limits = nhm_pkg_cstate_limits;
2171 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002172 case 0x2A: /* SNB */
2173 case 0x2D: /* SNB Xeon */
Len Brown553575f2011-11-18 03:32:01 -05002174 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002175 case 0x3E: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002176 pkg_cstate_limits = snb_pkg_cstate_limits;
2177 break;
Len Brown70b43402013-01-08 01:26:07 -05002178 case 0x3C: /* HSW */
Len Browne6f9bb32013-12-03 02:19:19 -05002179 case 0x3F: /* HSX */
Len Brown70b43402013-01-08 01:26:07 -05002180 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002181 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002182 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002183 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002184 case 0x4F: /* BDX */
2185 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002186 case 0x4E: /* SKL */
2187 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002188 case 0x8E: /* KBL */
2189 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002190 case 0x55: /* SKX */
Len Brownee7e38e2015-02-09 23:39:45 -05002191 pkg_cstate_limits = hsw_pkg_cstate_limits;
2192 break;
2193 case 0x37: /* BYT */
2194 case 0x4D: /* AVN */
2195 pkg_cstate_limits = slv_pkg_cstate_limits;
2196 break;
2197 case 0x4C: /* AMT */
2198 pkg_cstate_limits = amt_pkg_cstate_limits;
2199 break;
2200 case 0x57: /* PHI */
2201 pkg_cstate_limits = phi_pkg_cstate_limits;
2202 break;
Len Browne4085d52016-04-06 17:15:56 -04002203 case 0x5C: /* BXT */
2204 pkg_cstate_limits = bxt_pkg_cstate_limits;
2205 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002206 default:
2207 return 0;
2208 }
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002209 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002210 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002211
Len Brownec0adc52015-11-12 02:42:31 -05002212 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002213 base_ratio = (msr >> 8) & 0xFF;
2214
2215 base_hz = base_ratio * bclk * 1000000;
2216 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002217 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002218}
Len Brownd7899442015-01-23 00:12:33 -05002219int has_nhm_turbo_ratio_limit(unsigned int family, unsigned int model)
2220{
Len Brownd7899442015-01-23 00:12:33 -05002221 switch (model) {
2222 /* Nehalem compatible, but do not include turbo-ratio limit support */
2223 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2224 case 0x2F: /* Westmere-EX Xeon - Eagleton */
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002225 case 0x57: /* PHI - Knights Landing (different MSR definition) */
Len Brownd7899442015-01-23 00:12:33 -05002226 return 0;
2227 default:
2228 return 1;
2229 }
2230}
Len Brown6574a5d2012-09-21 00:01:31 -04002231int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2232{
2233 if (!genuine_intel)
2234 return 0;
2235
2236 if (family != 6)
2237 return 0;
2238
2239 switch (model) {
2240 case 0x3E: /* IVB Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04002241 case 0x3F: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04002242 return 1;
2243 default:
2244 return 0;
2245 }
2246}
Len Brownfcd17212015-03-23 20:29:09 -04002247int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2248{
2249 if (!genuine_intel)
2250 return 0;
2251
2252 if (family != 6)
2253 return 0;
2254
2255 switch (model) {
2256 case 0x3F: /* HSW Xeon */
2257 return 1;
2258 default:
2259 return 0;
2260 }
2261}
2262
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002263int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2264{
2265 if (!genuine_intel)
2266 return 0;
2267
2268 if (family != 6)
2269 return 0;
2270
2271 switch (model) {
2272 case 0x57: /* Knights Landing */
2273 return 1;
2274 default:
2275 return 0;
2276 }
2277}
Len Brown6fb31432015-06-17 16:23:45 -04002278int has_config_tdp(unsigned int family, unsigned int model)
2279{
2280 if (!genuine_intel)
2281 return 0;
2282
2283 if (family != 6)
2284 return 0;
2285
2286 switch (model) {
2287 case 0x3A: /* IVB */
Len Brown6fb31432015-06-17 16:23:45 -04002288 case 0x3C: /* HSW */
2289 case 0x3F: /* HSX */
2290 case 0x45: /* HSW */
2291 case 0x46: /* HSW */
2292 case 0x3D: /* BDW */
2293 case 0x47: /* BDW */
2294 case 0x4F: /* BDX */
2295 case 0x56: /* BDX-DE */
2296 case 0x4E: /* SKL */
2297 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002298 case 0x8E: /* KBL */
2299 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002300 case 0x55: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04002301
2302 case 0x57: /* Knights Landing */
2303 return 1;
2304 default:
2305 return 0;
2306 }
2307}
2308
Len Brownfcd17212015-03-23 20:29:09 -04002309static void
Colin Ian King1b693172016-03-02 13:50:25 +00002310dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04002311{
2312 if (!do_nhm_platform_info)
2313 return;
2314
2315 dump_nhm_platform_info();
2316
2317 if (has_hsw_turbo_ratio_limit(family, model))
2318 dump_hsw_turbo_ratio_limits();
2319
2320 if (has_ivt_turbo_ratio_limit(family, model))
2321 dump_ivt_turbo_ratio_limits();
2322
2323 if (has_nhm_turbo_ratio_limit(family, model))
2324 dump_nhm_turbo_ratio_limits();
2325
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002326 if (has_knl_turbo_ratio_limit(family, model))
2327 dump_knl_turbo_ratio_limits();
2328
Len Brown6fb31432015-06-17 16:23:45 -04002329 if (has_config_tdp(family, model))
2330 dump_config_tdp();
2331
Len Brownfcd17212015-03-23 20:29:09 -04002332 dump_nhm_cst_cfg();
2333}
2334
Len Brown6574a5d2012-09-21 00:01:31 -04002335
Len Brown889facb2012-11-08 00:48:57 -05002336/*
2337 * print_epb()
2338 * Decode the ENERGY_PERF_BIAS MSR
2339 */
2340int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2341{
2342 unsigned long long msr;
2343 char *epb_string;
2344 int cpu;
2345
2346 if (!has_epb)
2347 return 0;
2348
2349 cpu = t->cpu_id;
2350
2351 /* EPB is per-package */
2352 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2353 return 0;
2354
2355 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002356 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002357 return -1;
2358 }
2359
2360 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
2361 return 0;
2362
Len Browne9be7dd2015-05-26 12:19:37 -04002363 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05002364 case ENERGY_PERF_BIAS_PERFORMANCE:
2365 epb_string = "performance";
2366 break;
2367 case ENERGY_PERF_BIAS_NORMAL:
2368 epb_string = "balanced";
2369 break;
2370 case ENERGY_PERF_BIAS_POWERSAVE:
2371 epb_string = "powersave";
2372 break;
2373 default:
2374 epb_string = "custom";
2375 break;
2376 }
Len Brownb7d8c142016-02-13 23:36:17 -05002377 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05002378
2379 return 0;
2380}
Len Brown7f5c2582015-12-01 01:36:39 -05002381/*
2382 * print_hwp()
2383 * Decode the MSR_HWP_CAPABILITIES
2384 */
2385int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2386{
2387 unsigned long long msr;
2388 int cpu;
2389
2390 if (!has_hwp)
2391 return 0;
2392
2393 cpu = t->cpu_id;
2394
2395 /* MSR_HWP_CAPABILITIES is per-package */
2396 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2397 return 0;
2398
2399 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002400 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05002401 return -1;
2402 }
2403
2404 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
2405 return 0;
2406
Len Brownb7d8c142016-02-13 23:36:17 -05002407 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05002408 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
2409
2410 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
2411 if ((msr & (1 << 0)) == 0)
2412 return 0;
2413
2414 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
2415 return 0;
2416
Len Brownb7d8c142016-02-13 23:36:17 -05002417 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002418 "(high 0x%x guar 0x%x eff 0x%x low 0x%x)\n",
2419 cpu, msr,
2420 (unsigned int)HWP_HIGHEST_PERF(msr),
2421 (unsigned int)HWP_GUARANTEED_PERF(msr),
2422 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
2423 (unsigned int)HWP_LOWEST_PERF(msr));
2424
2425 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
2426 return 0;
2427
Len Brownb7d8c142016-02-13 23:36:17 -05002428 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002429 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x pkg 0x%x)\n",
2430 cpu, msr,
2431 (unsigned int)(((msr) >> 0) & 0xff),
2432 (unsigned int)(((msr) >> 8) & 0xff),
2433 (unsigned int)(((msr) >> 16) & 0xff),
2434 (unsigned int)(((msr) >> 24) & 0xff),
2435 (unsigned int)(((msr) >> 32) & 0xff3),
2436 (unsigned int)(((msr) >> 42) & 0x1));
2437
2438 if (has_hwp_pkg) {
2439 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
2440 return 0;
2441
Len Brownb7d8c142016-02-13 23:36:17 -05002442 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002443 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x)\n",
2444 cpu, msr,
2445 (unsigned int)(((msr) >> 0) & 0xff),
2446 (unsigned int)(((msr) >> 8) & 0xff),
2447 (unsigned int)(((msr) >> 16) & 0xff),
2448 (unsigned int)(((msr) >> 24) & 0xff),
2449 (unsigned int)(((msr) >> 32) & 0xff3));
2450 }
2451 if (has_hwp_notify) {
2452 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
2453 return 0;
2454
Len Brownb7d8c142016-02-13 23:36:17 -05002455 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002456 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
2457 cpu, msr,
2458 ((msr) & 0x1) ? "EN" : "Dis",
2459 ((msr) & 0x2) ? "EN" : "Dis");
2460 }
2461 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
2462 return 0;
2463
Len Brownb7d8c142016-02-13 23:36:17 -05002464 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002465 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
2466 cpu, msr,
2467 ((msr) & 0x1) ? "" : "No-",
2468 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05002469
2470 return 0;
2471}
2472
Len Brown3a9a9412014-08-15 02:39:52 -04002473/*
2474 * print_perf_limit()
2475 */
2476int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2477{
2478 unsigned long long msr;
2479 int cpu;
2480
2481 cpu = t->cpu_id;
2482
2483 /* per-package */
2484 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2485 return 0;
2486
2487 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002488 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04002489 return -1;
2490 }
2491
2492 if (do_core_perf_limit_reasons) {
2493 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002494 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2495 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04002496 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002497 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002498 (msr & 1 << 13) ? "Transitions, " : "",
2499 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
2500 (msr & 1 << 11) ? "PkgPwrL2, " : "",
2501 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2502 (msr & 1 << 9) ? "CorePwr, " : "",
2503 (msr & 1 << 8) ? "Amps, " : "",
2504 (msr & 1 << 6) ? "VR-Therm, " : "",
2505 (msr & 1 << 5) ? "Auto-HWP, " : "",
2506 (msr & 1 << 4) ? "Graphics, " : "",
2507 (msr & 1 << 2) ? "bit2, " : "",
2508 (msr & 1 << 1) ? "ThermStatus, " : "",
2509 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002510 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)\n",
Len Browne33cbe82015-03-13 16:30:57 -04002511 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002512 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002513 (msr & 1 << 29) ? "Transitions, " : "",
2514 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
2515 (msr & 1 << 27) ? "PkgPwrL2, " : "",
2516 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2517 (msr & 1 << 25) ? "CorePwr, " : "",
2518 (msr & 1 << 24) ? "Amps, " : "",
2519 (msr & 1 << 22) ? "VR-Therm, " : "",
2520 (msr & 1 << 21) ? "Auto-HWP, " : "",
2521 (msr & 1 << 20) ? "Graphics, " : "",
2522 (msr & 1 << 18) ? "bit18, " : "",
2523 (msr & 1 << 17) ? "ThermStatus, " : "",
2524 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04002525
2526 }
2527 if (do_gfx_perf_limit_reasons) {
2528 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002529 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2530 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002531 (msr & 1 << 0) ? "PROCHOT, " : "",
2532 (msr & 1 << 1) ? "ThermStatus, " : "",
2533 (msr & 1 << 4) ? "Graphics, " : "",
2534 (msr & 1 << 6) ? "VR-Therm, " : "",
2535 (msr & 1 << 8) ? "Amps, " : "",
2536 (msr & 1 << 9) ? "GFXPwr, " : "",
2537 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2538 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002539 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002540 (msr & 1 << 16) ? "PROCHOT, " : "",
2541 (msr & 1 << 17) ? "ThermStatus, " : "",
2542 (msr & 1 << 20) ? "Graphics, " : "",
2543 (msr & 1 << 22) ? "VR-Therm, " : "",
2544 (msr & 1 << 24) ? "Amps, " : "",
2545 (msr & 1 << 25) ? "GFXPwr, " : "",
2546 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2547 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2548 }
2549 if (do_ring_perf_limit_reasons) {
2550 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002551 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2552 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002553 (msr & 1 << 0) ? "PROCHOT, " : "",
2554 (msr & 1 << 1) ? "ThermStatus, " : "",
2555 (msr & 1 << 6) ? "VR-Therm, " : "",
2556 (msr & 1 << 8) ? "Amps, " : "",
2557 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2558 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002559 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002560 (msr & 1 << 16) ? "PROCHOT, " : "",
2561 (msr & 1 << 17) ? "ThermStatus, " : "",
2562 (msr & 1 << 22) ? "VR-Therm, " : "",
2563 (msr & 1 << 24) ? "Amps, " : "",
2564 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2565 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2566 }
2567 return 0;
2568}
2569
Len Brown889facb2012-11-08 00:48:57 -05002570#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
2571#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
2572
Colin Ian King1b693172016-03-02 13:50:25 +00002573double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05002574{
2575 unsigned long long msr;
2576
2577 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002578 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05002579 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
2580
2581 switch (model) {
2582 case 0x37:
2583 case 0x4D:
2584 return 30.0;
2585 default:
2586 return 135.0;
2587 }
2588}
2589
Andrey Semin40ee8e32014-12-05 00:07:00 -05002590/*
2591 * rapl_dram_energy_units_probe()
2592 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
2593 */
2594static double
2595rapl_dram_energy_units_probe(int model, double rapl_energy_units)
2596{
2597 /* only called for genuine_intel, family 6 */
2598
2599 switch (model) {
2600 case 0x3F: /* HSX */
2601 case 0x4F: /* BDX */
2602 case 0x56: /* BDX-DE */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002603 case 0x57: /* KNL */
Andrey Semin40ee8e32014-12-05 00:07:00 -05002604 return (rapl_dram_energy_units = 15.3 / 1000000);
2605 default:
2606 return (rapl_energy_units);
2607 }
2608}
2609
Len Brown144b44b2013-11-09 00:30:16 -05002610
Len Brown889facb2012-11-08 00:48:57 -05002611/*
2612 * rapl_probe()
2613 *
Len Brown144b44b2013-11-09 00:30:16 -05002614 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05002615 */
2616void rapl_probe(unsigned int family, unsigned int model)
2617{
2618 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05002619 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05002620 double tdp;
2621
2622 if (!genuine_intel)
2623 return;
2624
2625 if (family != 6)
2626 return;
2627
2628 switch (model) {
2629 case 0x2A:
2630 case 0x3A:
Len Brown70b43402013-01-08 01:26:07 -05002631 case 0x3C: /* HSW */
Len Brown70b43402013-01-08 01:26:07 -05002632 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002633 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002634 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002635 case 0x47: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05002636 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown889facb2012-11-08 00:48:57 -05002637 break;
Len Browne4085d52016-04-06 17:15:56 -04002638 case 0x5C: /* BXT */
2639 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
2640 break;
Len Brown0b2bb692015-03-26 00:50:30 -04002641 case 0x4E: /* SKL */
2642 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002643 case 0x8E: /* KBL */
2644 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04002645 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
2646 break;
Len Browne6f9bb32013-12-03 02:19:19 -05002647 case 0x3F: /* HSX */
Len Brown4e8e863f2014-02-27 23:28:53 -05002648 case 0x4F: /* BDX */
2649 case 0x56: /* BDX-DE */
Len Brownec53e592016-04-06 17:15:58 -04002650 case 0x55: /* SKX */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002651 case 0x57: /* KNL */
Len Brown0b2bb692015-03-26 00:50:30 -04002652 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
Len Browne6f9bb32013-12-03 02:19:19 -05002653 break;
Len Brown889facb2012-11-08 00:48:57 -05002654 case 0x2D:
2655 case 0x3E:
Len Brown0b2bb692015-03-26 00:50:30 -04002656 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;
Len Brown144b44b2013-11-09 00:30:16 -05002657 break;
2658 case 0x37: /* BYT */
2659 case 0x4D: /* AVN */
2660 do_rapl = RAPL_PKG | RAPL_CORES ;
Len Brown889facb2012-11-08 00:48:57 -05002661 break;
2662 default:
2663 return;
2664 }
2665
2666 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002667 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05002668 return;
2669
2670 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown144b44b2013-11-09 00:30:16 -05002671 if (model == 0x37)
2672 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
2673 else
2674 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05002675
Andrey Semin40ee8e32014-12-05 00:07:00 -05002676 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
2677
Len Brown144b44b2013-11-09 00:30:16 -05002678 time_unit = msr >> 16 & 0xF;
2679 if (time_unit == 0)
2680 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05002681
Len Brown144b44b2013-11-09 00:30:16 -05002682 rapl_time_units = 1.0 / (1 << (time_unit));
2683
2684 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05002685
2686 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brownd8af6f52015-02-10 01:56:38 -05002687 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05002688 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05002689
2690 return;
2691}
2692
Colin Ian King1b693172016-03-02 13:50:25 +00002693void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04002694{
2695 if (!genuine_intel)
2696 return;
2697
2698 if (family != 6)
2699 return;
2700
2701 switch (model) {
2702 case 0x3C: /* HSW */
2703 case 0x45: /* HSW */
2704 case 0x46: /* HSW */
2705 do_gfx_perf_limit_reasons = 1;
2706 case 0x3F: /* HSX */
2707 do_core_perf_limit_reasons = 1;
2708 do_ring_perf_limit_reasons = 1;
2709 default:
2710 return;
2711 }
2712}
2713
Len Brown889facb2012-11-08 00:48:57 -05002714int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2715{
2716 unsigned long long msr;
2717 unsigned int dts;
2718 int cpu;
2719
2720 if (!(do_dts || do_ptm))
2721 return 0;
2722
2723 cpu = t->cpu_id;
2724
2725 /* DTS is per-core, no need to print for each thread */
2726 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
2727 return 0;
2728
2729 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002730 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002731 return -1;
2732 }
2733
2734 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
2735 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
2736 return 0;
2737
2738 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002739 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002740 cpu, msr, tcc_activation_temp - dts);
2741
2742#ifdef THERM_DEBUG
2743 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
2744 return 0;
2745
2746 dts = (msr >> 16) & 0x7F;
2747 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002748 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002749 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2750#endif
2751 }
2752
2753
2754 if (do_dts) {
2755 unsigned int resolution;
2756
2757 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
2758 return 0;
2759
2760 dts = (msr >> 16) & 0x7F;
2761 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05002762 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05002763 cpu, msr, tcc_activation_temp - dts, resolution);
2764
2765#ifdef THERM_DEBUG
2766 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
2767 return 0;
2768
2769 dts = (msr >> 16) & 0x7F;
2770 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002771 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002772 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2773#endif
2774 }
2775
2776 return 0;
2777}
Len Brown36229892016-02-26 20:51:02 -05002778
Len Brown889facb2012-11-08 00:48:57 -05002779void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
2780{
Len Brownb7d8c142016-02-13 23:36:17 -05002781 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002782 cpu, label,
2783 ((msr >> 15) & 1) ? "EN" : "DIS",
2784 ((msr >> 0) & 0x7FFF) * rapl_power_units,
2785 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
2786 (((msr >> 16) & 1) ? "EN" : "DIS"));
2787
2788 return;
2789}
2790
2791int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2792{
2793 unsigned long long msr;
2794 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05002795
2796 if (!do_rapl)
2797 return 0;
2798
2799 /* RAPL counters are per package, so print only for 1st thread/package */
2800 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2801 return 0;
2802
2803 cpu = t->cpu_id;
2804 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002805 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002806 return -1;
2807 }
2808
2809 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
2810 return -1;
2811
Len Brownd8af6f52015-02-10 01:56:38 -05002812 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05002813 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx "
Len Brown889facb2012-11-08 00:48:57 -05002814 "(%f Watts, %f Joules, %f sec.)\n", cpu, msr,
Len Brown144b44b2013-11-09 00:30:16 -05002815 rapl_power_units, rapl_energy_units, rapl_time_units);
Len Brown889facb2012-11-08 00:48:57 -05002816 }
Len Brown144b44b2013-11-09 00:30:16 -05002817 if (do_rapl & RAPL_PKG_POWER_INFO) {
2818
Len Brown889facb2012-11-08 00:48:57 -05002819 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
2820 return -5;
2821
2822
Len Brownb7d8c142016-02-13 23:36:17 -05002823 fprintf(outf, "cpu%d: MSR_PKG_POWER_INFO: 0x%08llx (%.0f W TDP, RAPL %.0f - %.0f W, %f sec.)\n",
Len Brown889facb2012-11-08 00:48:57 -05002824 cpu, msr,
2825 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2826 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2827 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2828 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
2829
Len Brown144b44b2013-11-09 00:30:16 -05002830 }
2831 if (do_rapl & RAPL_PKG) {
2832
Len Brown889facb2012-11-08 00:48:57 -05002833 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
2834 return -9;
2835
Len Brownb7d8c142016-02-13 23:36:17 -05002836 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002837 cpu, msr, (msr >> 63) & 1 ? "": "UN");
2838
2839 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05002840 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002841 cpu,
2842 ((msr >> 47) & 1) ? "EN" : "DIS",
2843 ((msr >> 32) & 0x7FFF) * rapl_power_units,
2844 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
2845 ((msr >> 48) & 1) ? "EN" : "DIS");
2846 }
2847
Len Brown0b2bb692015-03-26 00:50:30 -04002848 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05002849 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
2850 return -6;
2851
Len Brownb7d8c142016-02-13 23:36:17 -05002852 fprintf(outf, "cpu%d: MSR_DRAM_POWER_INFO,: 0x%08llx (%.0f W TDP, RAPL %.0f - %.0f W, %f sec.)\n",
Len Brown889facb2012-11-08 00:48:57 -05002853 cpu, msr,
2854 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2855 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2856 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2857 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04002858 }
2859 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05002860 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
2861 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002862 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002863 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2864
2865 print_power_limit_msr(cpu, msr, "DRAM Limit");
2866 }
Len Brown144b44b2013-11-09 00:30:16 -05002867 if (do_rapl & RAPL_CORE_POLICY) {
Len Brownd8af6f52015-02-10 01:56:38 -05002868 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002869 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
2870 return -7;
2871
Len Brownb7d8c142016-02-13 23:36:17 -05002872 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05002873 }
2874 }
2875 if (do_rapl & RAPL_CORES) {
Len Brownd8af6f52015-02-10 01:56:38 -05002876 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002877
2878 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
2879 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002880 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002881 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2882 print_power_limit_msr(cpu, msr, "Cores Limit");
2883 }
2884 }
2885 if (do_rapl & RAPL_GFX) {
Len Brownd8af6f52015-02-10 01:56:38 -05002886 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002887 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
2888 return -8;
2889
Len Brownb7d8c142016-02-13 23:36:17 -05002890 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05002891
2892 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
2893 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002894 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002895 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2896 print_power_limit_msr(cpu, msr, "GFX Limit");
2897 }
2898 }
2899 return 0;
2900}
2901
Len Brownd7899442015-01-23 00:12:33 -05002902/*
2903 * SNB adds support for additional MSRs:
2904 *
2905 * MSR_PKG_C7_RESIDENCY 0x000003fa
2906 * MSR_CORE_C7_RESIDENCY 0x000003fe
2907 * MSR_PKG_C2_RESIDENCY 0x0000060d
2908 */
Len Brown103a8fe2010-10-22 23:53:03 -04002909
Len Brownd7899442015-01-23 00:12:33 -05002910int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002911{
2912 if (!genuine_intel)
2913 return 0;
2914
2915 switch (model) {
2916 case 0x2A:
2917 case 0x2D:
Len Brown650a37f2012-06-03 23:34:44 -04002918 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002919 case 0x3E: /* IVB Xeon */
Len Brown70b43402013-01-08 01:26:07 -05002920 case 0x3C: /* HSW */
2921 case 0x3F: /* HSW */
2922 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002923 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002924 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002925 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002926 case 0x4F: /* BDX */
2927 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002928 case 0x4E: /* SKL */
2929 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002930 case 0x8E: /* KBL */
2931 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002932 case 0x55: /* SKX */
Len Browne4085d52016-04-06 17:15:56 -04002933 case 0x5C: /* BXT */
Len Brown103a8fe2010-10-22 23:53:03 -04002934 return 1;
2935 }
2936 return 0;
2937}
2938
Len Brownd7899442015-01-23 00:12:33 -05002939/*
2940 * HSW adds support for additional MSRs:
2941 *
Len Brown5a634262016-04-06 17:15:55 -04002942 * MSR_PKG_C8_RESIDENCY 0x00000630
2943 * MSR_PKG_C9_RESIDENCY 0x00000631
2944 * MSR_PKG_C10_RESIDENCY 0x00000632
2945 *
2946 * MSR_PKGC8_IRTL 0x00000633
2947 * MSR_PKGC9_IRTL 0x00000634
2948 * MSR_PKGC10_IRTL 0x00000635
2949 *
Len Brownd7899442015-01-23 00:12:33 -05002950 */
2951int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002952{
2953 if (!genuine_intel)
2954 return 0;
2955
2956 switch (model) {
Len Brown4e8e863f2014-02-27 23:28:53 -05002957 case 0x45: /* HSW */
2958 case 0x3D: /* BDW */
Len Brown0b2bb692015-03-26 00:50:30 -04002959 case 0x4E: /* SKL */
2960 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002961 case 0x8E: /* KBL */
2962 case 0x9E: /* KBL */
Len Browne4085d52016-04-06 17:15:56 -04002963 case 0x5C: /* BXT */
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002964 return 1;
2965 }
2966 return 0;
2967}
2968
Len Brown0b2bb692015-03-26 00:50:30 -04002969/*
2970 * SKL adds support for additional MSRS:
2971 *
2972 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
2973 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
2974 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
2975 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
2976 */
2977int has_skl_msrs(unsigned int family, unsigned int model)
2978{
2979 if (!genuine_intel)
2980 return 0;
2981
2982 switch (model) {
2983 case 0x4E: /* SKL */
2984 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002985 case 0x8E: /* KBL */
2986 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04002987 return 1;
2988 }
2989 return 0;
2990}
2991
2992
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002993
Len Brown144b44b2013-11-09 00:30:16 -05002994int is_slm(unsigned int family, unsigned int model)
2995{
2996 if (!genuine_intel)
2997 return 0;
2998 switch (model) {
2999 case 0x37: /* BYT */
3000 case 0x4D: /* AVN */
3001 return 1;
3002 }
3003 return 0;
3004}
3005
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003006int is_knl(unsigned int family, unsigned int model)
3007{
3008 if (!genuine_intel)
3009 return 0;
3010 switch (model) {
3011 case 0x57: /* KNL */
3012 return 1;
3013 }
3014 return 0;
3015}
3016
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003017unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3018{
3019 if (is_knl(family, model))
3020 return 1024;
3021 return 1;
3022}
3023
Len Brown144b44b2013-11-09 00:30:16 -05003024#define SLM_BCLK_FREQS 5
3025double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3026
3027double slm_bclk(void)
3028{
3029 unsigned long long msr = 3;
3030 unsigned int i;
3031 double freq;
3032
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003033 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003034 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05003035
3036 i = msr & 0xf;
3037 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05003038 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Len Brown144b44b2013-11-09 00:30:16 -05003039 msr = 3;
3040 }
3041 freq = slm_freq_table[i];
3042
Len Brownb7d8c142016-02-13 23:36:17 -05003043 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05003044
3045 return freq;
3046}
3047
Len Brown103a8fe2010-10-22 23:53:03 -04003048double discover_bclk(unsigned int family, unsigned int model)
3049{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01003050 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04003051 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05003052 else if (is_slm(family, model))
3053 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04003054 else
3055 return 133.33;
3056}
3057
Len Brown889facb2012-11-08 00:48:57 -05003058/*
3059 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3060 * the Thermal Control Circuit (TCC) activates.
3061 * This is usually equal to tjMax.
3062 *
3063 * Older processors do not have this MSR, so there we guess,
3064 * but also allow cmdline over-ride with -T.
3065 *
3066 * Several MSR temperature values are in units of degrees-C
3067 * below this value, including the Digital Thermal Sensor (DTS),
3068 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3069 */
3070int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3071{
3072 unsigned long long msr;
3073 unsigned int target_c_local;
3074 int cpu;
3075
3076 /* tcc_activation_temp is used only for dts or ptm */
3077 if (!(do_dts || do_ptm))
3078 return 0;
3079
3080 /* this is a per-package concept */
3081 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3082 return 0;
3083
3084 cpu = t->cpu_id;
3085 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003086 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003087 return -1;
3088 }
3089
3090 if (tcc_activation_temp_override != 0) {
3091 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05003092 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003093 cpu, tcc_activation_temp);
3094 return 0;
3095 }
3096
3097 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05003098 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05003099 goto guess;
3100
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003101 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003102 goto guess;
3103
Jean Delvare34821242014-05-01 11:40:19 +02003104 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05003105
Len Brownd8af6f52015-02-10 01:56:38 -05003106 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003107 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003108 cpu, msr, target_c_local);
3109
Jean Delvare34821242014-05-01 11:40:19 +02003110 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05003111 goto guess;
3112
3113 tcc_activation_temp = target_c_local;
3114
3115 return 0;
3116
3117guess:
3118 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05003119 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05003120 cpu, tcc_activation_temp);
3121
3122 return 0;
3123}
Len Brown69807a62015-11-21 12:22:47 -05003124
Len Brownaa8d8cc2016-03-11 13:26:03 -05003125void decode_feature_control_msr(void)
3126{
3127 unsigned long long msr;
3128
3129 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3130 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3131 base_cpu, msr,
3132 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3133 msr & (1 << 18) ? "SGX" : "");
3134}
3135
Len Brown69807a62015-11-21 12:22:47 -05003136void decode_misc_enable_msr(void)
3137{
3138 unsigned long long msr;
3139
3140 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003141 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%s %s %s)\n",
Len Brown69807a62015-11-21 12:22:47 -05003142 base_cpu, msr,
3143 msr & (1 << 3) ? "TCC" : "",
3144 msr & (1 << 16) ? "EIST" : "",
3145 msr & (1 << 18) ? "MONITOR" : "");
3146}
3147
Len Brownf0057312015-12-03 01:35:36 -05003148/*
3149 * Decode MSR_MISC_PWR_MGMT
3150 *
3151 * Decode the bits according to the Nehalem documentation
3152 * bit[0] seems to continue to have same meaning going forward
3153 * bit[1] less so...
3154 */
3155void decode_misc_pwr_mgmt_msr(void)
3156{
3157 unsigned long long msr;
3158
3159 if (!do_nhm_platform_info)
3160 return;
3161
3162 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003163 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB)\n",
Len Brownf0057312015-12-03 01:35:36 -05003164 base_cpu, msr,
3165 msr & (1 << 0) ? "DIS" : "EN",
3166 msr & (1 << 1) ? "EN" : "DIS");
3167}
Len Brown7f5c2582015-12-01 01:36:39 -05003168
Len Brownfcd17212015-03-23 20:29:09 -04003169void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04003170{
Len Brown61a87ba2015-11-23 02:30:51 -05003171 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04003172 unsigned int fms, family, model, stepping;
3173
3174 eax = ebx = ecx = edx = 0;
3175
Len Brown5aea2f72016-03-13 03:14:35 -04003176 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003177
3178 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
3179 genuine_intel = 1;
3180
Len Brownd8af6f52015-02-10 01:56:38 -05003181 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003182 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04003183 (char *)&ebx, (char *)&edx, (char *)&ecx);
3184
Len Brown5aea2f72016-03-13 03:14:35 -04003185 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003186 family = (fms >> 8) & 0xf;
3187 model = (fms >> 4) & 0xf;
3188 stepping = fms & 0xf;
3189 if (family == 6 || family == 0xf)
3190 model += ((fms >> 16) & 0xf) << 4;
3191
Len Brown69807a62015-11-21 12:22:47 -05003192 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05003193 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04003194 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05003195 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05003196 ecx & (1 << 0) ? "SSE3" : "-",
3197 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05003198 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05003199 ecx & (1 << 7) ? "EIST" : "-",
3200 ecx & (1 << 8) ? "TM2" : "-",
3201 edx & (1 << 4) ? "TSC" : "-",
3202 edx & (1 << 5) ? "MSR" : "-",
3203 edx & (1 << 22) ? "ACPI-TM" : "-",
3204 edx & (1 << 29) ? "TM" : "-");
3205 }
Len Brown103a8fe2010-10-22 23:53:03 -04003206
Josh Triplettb2c95d92013-08-20 17:20:18 -07003207 if (!(edx & (1 << 5)))
3208 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04003209
3210 /*
3211 * check max extended function levels of CPUID.
3212 * This is needed to check for invariant TSC.
3213 * This check is valid for both Intel and AMD.
3214 */
3215 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003216 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003217
Len Brown61a87ba2015-11-23 02:30:51 -05003218 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04003219
Len Brownd7899442015-01-23 00:12:33 -05003220 /*
3221 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
3222 * this check is valid for both Intel and AMD
3223 */
Len Brown5aea2f72016-03-13 03:14:35 -04003224 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05003225 has_invariant_tsc = edx & (1 << 8);
3226 }
Len Brown103a8fe2010-10-22 23:53:03 -04003227
3228 /*
3229 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
3230 * this check is valid for both Intel and AMD
3231 */
3232
Len Brown5aea2f72016-03-13 03:14:35 -04003233 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01003234 has_aperf = ecx & (1 << 0);
Len Brown889facb2012-11-08 00:48:57 -05003235 do_dts = eax & (1 << 0);
3236 do_ptm = eax & (1 << 6);
Len Brown7f5c2582015-12-01 01:36:39 -05003237 has_hwp = eax & (1 << 7);
3238 has_hwp_notify = eax & (1 << 8);
3239 has_hwp_activity_window = eax & (1 << 9);
3240 has_hwp_epp = eax & (1 << 10);
3241 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05003242 has_epb = ecx & (1 << 3);
3243
Len Brownd8af6f52015-02-10 01:56:38 -05003244 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003245 fprintf(outf, "CPUID(6): %sAPERF, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05003246 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
3247 has_aperf ? "" : "No-",
3248 do_dts ? "" : "No-",
3249 do_ptm ? "" : "No-",
3250 has_hwp ? "" : "No-",
3251 has_hwp_notify ? "" : "No-",
3252 has_hwp_activity_window ? "" : "No-",
3253 has_hwp_epp ? "" : "No-",
3254 has_hwp_pkg ? "" : "No-",
3255 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04003256
Len Brown69807a62015-11-21 12:22:47 -05003257 if (debug)
3258 decode_misc_enable_msr();
3259
Len Brown8ae72252016-04-06 17:15:54 -04003260 if (max_level >= 0x7 && debug) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05003261 int has_sgx;
3262
3263 ecx = 0;
3264
3265 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
3266
3267 has_sgx = ebx & (1 << 2);
3268 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
3269
3270 if (has_sgx)
3271 decode_feature_control_msr();
3272 }
3273
Len Brown61a87ba2015-11-23 02:30:51 -05003274 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04003275 unsigned int eax_crystal;
3276 unsigned int ebx_tsc;
3277
3278 /*
3279 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
3280 */
3281 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003282 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04003283
3284 if (ebx_tsc != 0) {
3285
3286 if (debug && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05003287 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003288 eax_crystal, ebx_tsc, crystal_hz);
3289
3290 if (crystal_hz == 0)
3291 switch(model) {
3292 case 0x4E: /* SKL */
3293 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04003294 case 0x8E: /* KBL */
3295 case 0x9E: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04003296 crystal_hz = 24000000; /* 24.0 MHz */
3297 break;
Len Brownec53e592016-04-06 17:15:58 -04003298 case 0x55: /* SKX */
3299 crystal_hz = 25000000; /* 25.0 MHz */
3300 break;
Len Browne8efbc82016-04-06 17:15:57 -04003301 case 0x5C: /* BXT */
3302 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04003303 break;
3304 default:
3305 crystal_hz = 0;
3306 }
3307
3308 if (crystal_hz) {
3309 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
3310 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003311 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003312 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
3313 }
3314 }
3315 }
Len Brown61a87ba2015-11-23 02:30:51 -05003316 if (max_level >= 0x16) {
3317 unsigned int base_mhz, max_mhz, bus_mhz, edx;
3318
3319 /*
3320 * CPUID 16H Base MHz, Max MHz, Bus MHz
3321 */
3322 base_mhz = max_mhz = bus_mhz = edx = 0;
3323
Len Brown5aea2f72016-03-13 03:14:35 -04003324 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown61a87ba2015-11-23 02:30:51 -05003325 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003326 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05003327 base_mhz, max_mhz, bus_mhz);
3328 }
Len Brown8a5bdf42015-04-01 21:02:57 -04003329
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003330 if (has_aperf)
3331 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
3332
Len Brownee7e38e2015-02-09 23:39:45 -05003333 do_nhm_platform_info = do_nhm_cstates = do_smi = probe_nhm_msrs(family, model);
Len Brownd7899442015-01-23 00:12:33 -05003334 do_snb_cstates = has_snb_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003335 do_irtl_snb = has_snb_msrs(family, model);
Len Brownee7e38e2015-02-09 23:39:45 -05003336 do_pc2 = do_snb_cstates && (pkg_cstate_limit >= PCL__2);
3337 do_pc3 = (pkg_cstate_limit >= PCL__3);
3338 do_pc6 = (pkg_cstate_limit >= PCL__6);
3339 do_pc7 = do_snb_cstates && (pkg_cstate_limit >= PCL__7);
Len Brownd7899442015-01-23 00:12:33 -05003340 do_c8_c9_c10 = has_hsw_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003341 do_irtl_hsw = has_hsw_msrs(family, model);
Len Brown0b2bb692015-03-26 00:50:30 -04003342 do_skl_residency = has_skl_msrs(family, model);
Len Brown144b44b2013-11-09 00:30:16 -05003343 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003344 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04003345
Len Brownf0057312015-12-03 01:35:36 -05003346 if (debug)
3347 decode_misc_pwr_mgmt_msr();
3348
Len Brown889facb2012-11-08 00:48:57 -05003349 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04003350 perf_limit_reasons_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05003351
Len Brownfcd17212015-03-23 20:29:09 -04003352 if (debug)
Colin Ian King1b693172016-03-02 13:50:25 +00003353 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04003354
Len Browna2b7b742015-09-26 00:12:38 -04003355 if (has_skl_msrs(family, model))
3356 calculate_tsc_tweak();
3357
Len Brownfdf676e2016-02-27 01:28:12 -05003358 do_gfx_rc6_ms = !access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK);
3359
Len Brown27d47352016-02-27 00:37:54 -05003360 do_gfx_mhz = !access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK);
3361
Len Brown889facb2012-11-08 00:48:57 -05003362 return;
Len Brown103a8fe2010-10-22 23:53:03 -04003363}
3364
Len Brownd8af6f52015-02-10 01:56:38 -05003365void help()
Len Brown103a8fe2010-10-22 23:53:03 -04003366{
Len Brownb7d8c142016-02-13 23:36:17 -05003367 fprintf(outf,
Len Brownd8af6f52015-02-10 01:56:38 -05003368 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
3369 "\n"
3370 "Turbostat forks the specified COMMAND and prints statistics\n"
3371 "when COMMAND completes.\n"
3372 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
3373 "to print statistics, until interrupted.\n"
3374 "--debug run in \"debug\" mode\n"
3375 "--interval sec Override default 5-second measurement interval\n"
3376 "--help print this help message\n"
3377 "--counter msr print 32-bit counter at address \"msr\"\n"
3378 "--Counter msr print 64-bit Counter at address \"msr\"\n"
Len Brownb7d8c142016-02-13 23:36:17 -05003379 "--out file create or truncate \"file\" for all output\n"
Len Brownd8af6f52015-02-10 01:56:38 -05003380 "--msr msr print 32-bit value at address \"msr\"\n"
3381 "--MSR msr print 64-bit Value at address \"msr\"\n"
3382 "--version print version information\n"
3383 "\n"
3384 "For more help, run \"man turbostat\"\n");
Len Brown103a8fe2010-10-22 23:53:03 -04003385}
3386
3387
3388/*
3389 * in /dev/cpu/ return success for names that are numbers
3390 * ie. filter out ".", "..", "microcode".
3391 */
3392int dir_filter(const struct dirent *dirp)
3393{
3394 if (isdigit(dirp->d_name[0]))
3395 return 1;
3396 else
3397 return 0;
3398}
3399
3400int open_dev_cpu_msr(int dummy1)
3401{
3402 return 0;
3403}
3404
Len Brownc98d5d92012-06-04 00:56:40 -04003405void topology_probe()
3406{
3407 int i;
3408 int max_core_id = 0;
3409 int max_package_id = 0;
3410 int max_siblings = 0;
3411 struct cpu_topology {
3412 int core_id;
3413 int physical_package_id;
3414 } *cpus;
3415
3416 /* Initialize num_cpus, max_cpu_num */
3417 topo.num_cpus = 0;
3418 topo.max_cpu_num = 0;
3419 for_all_proc_cpus(count_cpus);
3420 if (!summary_only && topo.num_cpus > 1)
3421 show_cpu = 1;
3422
Len Brownd8af6f52015-02-10 01:56:38 -05003423 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003424 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04003425
3426 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003427 if (cpus == NULL)
3428 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04003429
3430 /*
3431 * Allocate and initialize cpu_present_set
3432 */
3433 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003434 if (cpu_present_set == NULL)
3435 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003436 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3437 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
3438 for_all_proc_cpus(mark_cpu_present);
3439
3440 /*
3441 * Allocate and initialize cpu_affinity_set
3442 */
3443 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003444 if (cpu_affinity_set == NULL)
3445 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003446 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3447 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
3448
3449
3450 /*
3451 * For online cpus
3452 * find max_core_id, max_package_id
3453 */
3454 for (i = 0; i <= topo.max_cpu_num; ++i) {
3455 int siblings;
3456
3457 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05003458 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003459 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04003460 continue;
3461 }
3462 cpus[i].core_id = get_core_id(i);
3463 if (cpus[i].core_id > max_core_id)
3464 max_core_id = cpus[i].core_id;
3465
3466 cpus[i].physical_package_id = get_physical_package_id(i);
3467 if (cpus[i].physical_package_id > max_package_id)
3468 max_package_id = cpus[i].physical_package_id;
3469
3470 siblings = get_num_ht_siblings(i);
3471 if (siblings > max_siblings)
3472 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003473 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003474 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003475 i, cpus[i].physical_package_id, cpus[i].core_id);
3476 }
3477 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003478 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003479 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003480 max_core_id, topo.num_cores_per_pkg);
Len Brown1cc21f72015-02-23 00:34:57 -05003481 if (debug && !summary_only && topo.num_cores_per_pkg > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003482 show_core = 1;
3483
3484 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003485 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003486 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003487 max_package_id, topo.num_packages);
Len Brown1cc21f72015-02-23 00:34:57 -05003488 if (debug && !summary_only && topo.num_packages > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003489 show_pkg = 1;
3490
3491 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003492 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003493 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04003494
3495 free(cpus);
3496}
3497
3498void
3499allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
3500{
3501 int i;
3502
3503 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
3504 topo.num_packages, sizeof(struct thread_data));
3505 if (*t == NULL)
3506 goto error;
3507
3508 for (i = 0; i < topo.num_threads_per_core *
3509 topo.num_cores_per_pkg * topo.num_packages; i++)
3510 (*t)[i].cpu_id = -1;
3511
3512 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
3513 sizeof(struct core_data));
3514 if (*c == NULL)
3515 goto error;
3516
3517 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
3518 (*c)[i].core_id = -1;
3519
3520 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
3521 if (*p == NULL)
3522 goto error;
3523
3524 for (i = 0; i < topo.num_packages; i++)
3525 (*p)[i].package_id = i;
3526
3527 return;
3528error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07003529 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04003530}
3531/*
3532 * init_counter()
3533 *
3534 * set cpu_id, core_num, pkg_num
3535 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
3536 *
3537 * increment topo.num_cores when 1st core in pkg seen
3538 */
3539void init_counter(struct thread_data *thread_base, struct core_data *core_base,
3540 struct pkg_data *pkg_base, int thread_num, int core_num,
3541 int pkg_num, int cpu_id)
3542{
3543 struct thread_data *t;
3544 struct core_data *c;
3545 struct pkg_data *p;
3546
3547 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
3548 c = GET_CORE(core_base, core_num, pkg_num);
3549 p = GET_PKG(pkg_base, pkg_num);
3550
3551 t->cpu_id = cpu_id;
3552 if (thread_num == 0) {
3553 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
3554 if (cpu_is_first_core_in_package(cpu_id))
3555 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
3556 }
3557
3558 c->core_id = core_num;
3559 p->package_id = pkg_num;
3560}
3561
3562
3563int initialize_counters(int cpu_id)
3564{
3565 int my_thread_id, my_core_id, my_package_id;
3566
3567 my_package_id = get_physical_package_id(cpu_id);
3568 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07003569 my_thread_id = get_cpu_position_in_core(cpu_id);
3570 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04003571 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04003572
3573 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3574 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3575 return 0;
3576}
3577
3578void allocate_output_buffer()
3579{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003580 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04003581 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07003582 if (outp == NULL)
3583 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04003584}
Len Brown36229892016-02-26 20:51:02 -05003585void allocate_fd_percpu(void)
3586{
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003587 fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown36229892016-02-26 20:51:02 -05003588 if (fd_percpu == NULL)
3589 err(-1, "calloc fd_percpu");
3590}
Len Brown562a2d32016-02-26 23:48:05 -05003591void allocate_irq_buffers(void)
3592{
3593 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
3594 if (irq_column_2_cpu == NULL)
3595 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04003596
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003597 irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown562a2d32016-02-26 23:48:05 -05003598 if (irqs_per_cpu == NULL)
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003599 err(-1, "calloc %d", topo.max_cpu_num + 1);
Len Brown562a2d32016-02-26 23:48:05 -05003600}
Len Brownc98d5d92012-06-04 00:56:40 -04003601void setup_all_buffers(void)
3602{
3603 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05003604 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05003605 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04003606 allocate_counters(&thread_even, &core_even, &package_even);
3607 allocate_counters(&thread_odd, &core_odd, &package_odd);
3608 allocate_output_buffer();
3609 for_all_proc_cpus(initialize_counters);
3610}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003611
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003612void set_base_cpu(void)
3613{
3614 base_cpu = sched_getcpu();
3615 if (base_cpu < 0)
3616 err(-ENODEV, "No valid cpus found");
3617
3618 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003619 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003620}
3621
Len Brown103a8fe2010-10-22 23:53:03 -04003622void turbostat_init()
3623{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003624 setup_all_buffers();
3625 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04003626 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04003627 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04003628 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04003629
Len Brown103a8fe2010-10-22 23:53:03 -04003630
Len Brownd8af6f52015-02-10 01:56:38 -05003631 if (debug)
Len Brown7f5c2582015-12-01 01:36:39 -05003632 for_all_cpus(print_hwp, ODD_COUNTERS);
3633
3634 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003635 for_all_cpus(print_epb, ODD_COUNTERS);
3636
Len Brownd8af6f52015-02-10 01:56:38 -05003637 if (debug)
Len Brown3a9a9412014-08-15 02:39:52 -04003638 for_all_cpus(print_perf_limit, ODD_COUNTERS);
3639
Len Brownd8af6f52015-02-10 01:56:38 -05003640 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003641 for_all_cpus(print_rapl, ODD_COUNTERS);
3642
3643 for_all_cpus(set_temperature_target, ODD_COUNTERS);
3644
Len Brownd8af6f52015-02-10 01:56:38 -05003645 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003646 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04003647
3648 if (debug && do_irtl_snb)
3649 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04003650}
3651
3652int fork_it(char **argv)
3653{
Len Brown103a8fe2010-10-22 23:53:03 -04003654 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04003655 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04003656
Len Brownd91bb172012-11-01 00:08:19 -04003657 status = for_all_cpus(get_counters, EVEN_COUNTERS);
3658 if (status)
3659 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04003660 /* clear affinity side-effect of get_counters() */
3661 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04003662 gettimeofday(&tv_even, (struct timezone *)NULL);
3663
3664 child_pid = fork();
3665 if (!child_pid) {
3666 /* child */
3667 execvp(argv[0], argv);
3668 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04003669
3670 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07003671 if (child_pid == -1)
3672 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04003673
3674 signal(SIGINT, SIG_IGN);
3675 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07003676 if (waitpid(child_pid, &status, 0) == -1)
3677 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04003678 }
Len Brownc98d5d92012-06-04 00:56:40 -04003679 /*
3680 * n.b. fork_it() does not check for errors from for_all_cpus()
3681 * because re-starting is problematic when forking
3682 */
3683 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04003684 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04003685 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04003686 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
3687 fprintf(outf, "%s: Counter reset detected\n", progname);
3688 else {
3689 compute_average(EVEN_COUNTERS);
3690 format_all_counters(EVEN_COUNTERS);
3691 }
Len Brown103a8fe2010-10-22 23:53:03 -04003692
Len Brownb7d8c142016-02-13 23:36:17 -05003693 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
3694
3695 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04003696
Len Brownd91bb172012-11-01 00:08:19 -04003697 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04003698}
3699
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003700int get_and_dump_counters(void)
3701{
3702 int status;
3703
3704 status = for_all_cpus(get_counters, ODD_COUNTERS);
3705 if (status)
3706 return status;
3707
3708 status = for_all_cpus(dump_counters, ODD_COUNTERS);
3709 if (status)
3710 return status;
3711
Len Brownb7d8c142016-02-13 23:36:17 -05003712 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003713
3714 return status;
3715}
3716
Len Brownd8af6f52015-02-10 01:56:38 -05003717void print_version() {
Len Brown3d109de2016-04-22 23:24:27 -04003718 fprintf(outf, "turbostat version 4.14 22 Apr 2016"
Len Brownd8af6f52015-02-10 01:56:38 -05003719 " - Len Brown <lenb@kernel.org>\n");
3720}
3721
Len Brown103a8fe2010-10-22 23:53:03 -04003722void cmdline(int argc, char **argv)
3723{
3724 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05003725 int option_index = 0;
3726 static struct option long_options[] = {
3727 {"Counter", required_argument, 0, 'C'},
3728 {"counter", required_argument, 0, 'c'},
3729 {"Dump", no_argument, 0, 'D'},
3730 {"debug", no_argument, 0, 'd'},
3731 {"interval", required_argument, 0, 'i'},
3732 {"help", no_argument, 0, 'h'},
3733 {"Joules", no_argument, 0, 'J'},
3734 {"MSR", required_argument, 0, 'M'},
3735 {"msr", required_argument, 0, 'm'},
Len Brownb7d8c142016-02-13 23:36:17 -05003736 {"out", required_argument, 0, 'o'},
Len Brownd8af6f52015-02-10 01:56:38 -05003737 {"Package", no_argument, 0, 'p'},
3738 {"processor", no_argument, 0, 'p'},
3739 {"Summary", no_argument, 0, 'S'},
3740 {"TCC", required_argument, 0, 'T'},
3741 {"version", no_argument, 0, 'v' },
3742 {0, 0, 0, 0 }
3743 };
Len Brown103a8fe2010-10-22 23:53:03 -04003744
3745 progname = argv[0];
3746
Len Brownb7d8c142016-02-13 23:36:17 -05003747 while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:PpST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05003748 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04003749 switch (opt) {
Len Brownd8af6f52015-02-10 01:56:38 -05003750 case 'C':
3751 sscanf(optarg, "%x", &extra_delta_offset64);
Len Brown103a8fe2010-10-22 23:53:03 -04003752 break;
Len Brownf9240812012-10-06 15:26:31 -04003753 case 'c':
Len Brown8e180f32012-09-22 01:25:08 -04003754 sscanf(optarg, "%x", &extra_delta_offset32);
3755 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003756 case 'D':
3757 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04003758 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003759 case 'd':
3760 debug++;
Len Brown2f32edf2012-09-21 23:45:46 -04003761 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003762 case 'h':
3763 default:
3764 help();
3765 exit(1);
3766 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05003767 {
3768 double interval = strtod(optarg, NULL);
3769
3770 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05003771 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05003772 interval);
3773 exit(2);
3774 }
3775
3776 interval_ts.tv_sec = interval;
3777 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
3778 }
Len Brown889facb2012-11-08 00:48:57 -05003779 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08003780 case 'J':
3781 rapl_joules++;
3782 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003783 case 'M':
3784 sscanf(optarg, "%x", &extra_msr_offset64);
3785 break;
3786 case 'm':
3787 sscanf(optarg, "%x", &extra_msr_offset32);
3788 break;
Len Brownb7d8c142016-02-13 23:36:17 -05003789 case 'o':
3790 outf = fopen_or_die(optarg, "w");
3791 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003792 case 'P':
3793 show_pkg_only++;
3794 break;
3795 case 'p':
3796 show_core_only++;
3797 break;
3798 case 'S':
3799 summary_only++;
3800 break;
3801 case 'T':
3802 tcc_activation_temp_override = atoi(optarg);
3803 break;
3804 case 'v':
3805 print_version();
3806 exit(0);
3807 break;
Len Brown103a8fe2010-10-22 23:53:03 -04003808 }
3809 }
3810}
3811
3812int main(int argc, char **argv)
3813{
Len Brownb7d8c142016-02-13 23:36:17 -05003814 outf = stderr;
3815
Len Brown103a8fe2010-10-22 23:53:03 -04003816 cmdline(argc, argv);
3817
Len Brownd8af6f52015-02-10 01:56:38 -05003818 if (debug)
3819 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04003820
3821 turbostat_init();
3822
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003823 /* dump counters and exit */
3824 if (dump_only)
3825 return get_and_dump_counters();
3826
Len Brown103a8fe2010-10-22 23:53:03 -04003827 /*
3828 * if any params left, it must be a command to fork
3829 */
3830 if (argc - optind)
3831 return fork_it(argv + optind);
3832 else
3833 turbostat_loop();
3834
3835 return 0;
3836}