blob: 3a80f949e5ba2658349db0aaf10f22bc9e275857 [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
Jacob Pan91484942016-06-16 09:48:20 -0700132#define RAPL_CORES_POWER_LIMIT (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500133 /* 0x638 MSR_PP0_POWER_LIMIT */
Len Brown0b2bb692015-03-26 00:50:30 -0400134#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500135 /* 0x63a MSR_PP0_POLICY */
136
Len Brown0b2bb692015-03-26 00:50:30 -0400137#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500138 /* 0x640 MSR_PP1_POWER_LIMIT */
139 /* 0x641 MSR_PP1_ENERGY_STATUS */
140 /* 0x642 MSR_PP1_POLICY */
Jacob Pan91484942016-06-16 09:48:20 -0700141
142#define RAPL_CORES_ENERGY_STATUS (1 << 9)
143 /* 0x639 MSR_PP0_ENERGY_STATUS */
144#define RAPL_CORES (RAPL_CORES_ENERGY_STATUS | RAPL_CORES_POWER_LIMIT)
Len Brown889facb2012-11-08 00:48:57 -0500145#define TJMAX_DEFAULT 100
146
147#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400148
Len Brown103a8fe2010-10-22 23:53:03 -0400149int backwards_count;
150char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -0400151
Len Brownc98d5d92012-06-04 00:56:40 -0400152cpu_set_t *cpu_present_set, *cpu_affinity_set;
153size_t cpu_present_setsize, cpu_affinity_setsize;
Len Brown103a8fe2010-10-22 23:53:03 -0400154
Len Brownc98d5d92012-06-04 00:56:40 -0400155struct thread_data {
156 unsigned long long tsc;
157 unsigned long long aperf;
158 unsigned long long mperf;
Len Brown144b44b2013-11-09 00:30:16 -0500159 unsigned long long c1;
Len Brown2f32edf2012-09-21 23:45:46 -0400160 unsigned long long extra_msr64;
Len Brown8e180f32012-09-22 01:25:08 -0400161 unsigned long long extra_delta64;
162 unsigned long long extra_msr32;
163 unsigned long long extra_delta32;
Len Brown562a2d32016-02-26 23:48:05 -0500164 unsigned int irq_count;
Len Brown1ed51012013-02-10 17:19:24 -0500165 unsigned int smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400166 unsigned int cpu_id;
167 unsigned int flags;
168#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
169#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
170} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400171
Len Brownc98d5d92012-06-04 00:56:40 -0400172struct core_data {
173 unsigned long long c3;
174 unsigned long long c6;
175 unsigned long long c7;
Len Brown889facb2012-11-08 00:48:57 -0500176 unsigned int core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400177 unsigned int core_id;
178} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400179
Len Brownc98d5d92012-06-04 00:56:40 -0400180struct pkg_data {
181 unsigned long long pc2;
182 unsigned long long pc3;
183 unsigned long long pc6;
184 unsigned long long pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800185 unsigned long long pc8;
186 unsigned long long pc9;
187 unsigned long long pc10;
Len Brown0b2bb692015-03-26 00:50:30 -0400188 unsigned long long pkg_wtd_core_c0;
189 unsigned long long pkg_any_core_c0;
190 unsigned long long pkg_any_gfxe_c0;
191 unsigned long long pkg_both_core_gfxe_c0;
Len Brown9185e982016-04-06 17:16:00 -0400192 long long gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500193 unsigned int gfx_mhz;
Len Brownc98d5d92012-06-04 00:56:40 -0400194 unsigned int package_id;
Len Brown889facb2012-11-08 00:48:57 -0500195 unsigned int energy_pkg; /* MSR_PKG_ENERGY_STATUS */
196 unsigned int energy_dram; /* MSR_DRAM_ENERGY_STATUS */
197 unsigned int energy_cores; /* MSR_PP0_ENERGY_STATUS */
198 unsigned int energy_gfx; /* MSR_PP1_ENERGY_STATUS */
199 unsigned int rapl_pkg_perf_status; /* MSR_PKG_PERF_STATUS */
200 unsigned int rapl_dram_perf_status; /* MSR_DRAM_PERF_STATUS */
201 unsigned int pkg_temp_c;
202
Len Brownc98d5d92012-06-04 00:56:40 -0400203} *package_even, *package_odd;
204
205#define ODD_COUNTERS thread_odd, core_odd, package_odd
206#define EVEN_COUNTERS thread_even, core_even, package_even
207
208#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
209 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
210 topo.num_threads_per_core + \
211 (core_no) * topo.num_threads_per_core + (thread_no))
212#define GET_CORE(core_base, core_no, pkg_no) \
213 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
214#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
215
216struct system_summary {
217 struct thread_data threads;
218 struct core_data cores;
219 struct pkg_data packages;
220} sum, average;
221
222
223struct topo_params {
224 int num_packages;
225 int num_cpus;
226 int num_cores;
227 int max_cpu_num;
228 int num_cores_per_pkg;
229 int num_threads_per_core;
230} topo;
231
232struct timeval tv_even, tv_odd, tv_delta;
233
Len Brown562a2d32016-02-26 23:48:05 -0500234int *irq_column_2_cpu; /* /proc/interrupts column numbers */
235int *irqs_per_cpu; /* indexed by cpu_num */
236
Len Brownc98d5d92012-06-04 00:56:40 -0400237void setup_all_buffers(void);
238
239int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400240{
Len Brownc98d5d92012-06-04 00:56:40 -0400241 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400242}
Len Brown88c32812012-03-29 21:44:40 -0400243/*
Len Brownc98d5d92012-06-04 00:56:40 -0400244 * run func(thread, core, package) in topology order
245 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400246 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400247
Len Brownc98d5d92012-06-04 00:56:40 -0400248int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
249 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400250{
Len Brownc98d5d92012-06-04 00:56:40 -0400251 int retval, pkg_no, core_no, thread_no;
252
253 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
254 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
255 for (thread_no = 0; thread_no <
256 topo.num_threads_per_core; ++thread_no) {
257 struct thread_data *t;
258 struct core_data *c;
259 struct pkg_data *p;
260
261 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
262
263 if (cpu_is_not_present(t->cpu_id))
264 continue;
265
266 c = GET_CORE(core_base, core_no, pkg_no);
267 p = GET_PKG(pkg_base, pkg_no);
268
269 retval = func(t, c, p);
270 if (retval)
271 return retval;
272 }
273 }
274 }
275 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400276}
277
278int cpu_migrate(int cpu)
279{
Len Brownc98d5d92012-06-04 00:56:40 -0400280 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
281 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
282 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400283 return -1;
284 else
285 return 0;
286}
Len Brown36229892016-02-26 20:51:02 -0500287int get_msr_fd(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400288{
Len Brown103a8fe2010-10-22 23:53:03 -0400289 char pathname[32];
290 int fd;
291
Len Brown36229892016-02-26 20:51:02 -0500292 fd = fd_percpu[cpu];
293
294 if (fd)
295 return fd;
296
Len Brown103a8fe2010-10-22 23:53:03 -0400297 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
298 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400299 if (fd < 0)
Len Brown98481e72014-08-15 00:36:50 -0400300 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 -0400301
Len Brown36229892016-02-26 20:51:02 -0500302 fd_percpu[cpu] = fd;
303
304 return fd;
305}
306
307int get_msr(int cpu, off_t offset, unsigned long long *msr)
308{
309 ssize_t retval;
310
311 retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
Len Brown15aaa342012-03-29 22:19:58 -0400312
Len Brown98481e72014-08-15 00:36:50 -0400313 if (retval != sizeof *msr)
Len Brown36229892016-02-26 20:51:02 -0500314 err(-1, "msr %d offset 0x%llx read failed", cpu, (unsigned long long)offset);
Len Brown15aaa342012-03-29 22:19:58 -0400315
316 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400317}
318
Len Brownfc04cc62014-02-06 00:55:19 -0500319/*
320 * Example Format w/ field column widths:
321 *
Len Brown27d47352016-02-27 00:37:54 -0500322 * 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 -0500323 * 12345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678123456781234567812345678
Len Brownfc04cc62014-02-06 00:55:19 -0500324 */
325
Len Browna829eb42011-02-10 23:36:34 -0500326void print_header(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400327{
328 if (show_pkg)
Len Brown3d109de2016-04-22 23:24:27 -0400329 outp += sprintf(outp, "\tPackage");
Len Brown103a8fe2010-10-22 23:53:03 -0400330 if (show_core)
Len Brown3d109de2016-04-22 23:24:27 -0400331 outp += sprintf(outp, "\tCore");
Len Brown103a8fe2010-10-22 23:53:03 -0400332 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400333 outp += sprintf(outp, "\tCPU");
Len Brown103a8fe2010-10-22 23:53:03 -0400334 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400335 outp += sprintf(outp, "\tAvg_MHz");
Len Brownd7899442015-01-23 00:12:33 -0500336 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400337 outp += sprintf(outp, "\tBusy%%");
Len Brownfc04cc62014-02-06 00:55:19 -0500338 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400339 outp += sprintf(outp, "\tBzy_MHz");
340 outp += sprintf(outp, "\tTSC_MHz");
Len Brown1cc21f72015-02-23 00:34:57 -0500341
Len Brown8e180f32012-09-22 01:25:08 -0400342 if (extra_delta_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400343 outp += sprintf(outp, "\tcount 0x%03X", extra_delta_offset32);
Len Brown8e180f32012-09-22 01:25:08 -0400344 if (extra_delta_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400345 outp += sprintf(outp, "\tCOUNT 0x%03X", extra_delta_offset64);
Len Brown2f32edf2012-09-21 23:45:46 -0400346 if (extra_msr_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400347 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset32);
Len Brown2f32edf2012-09-21 23:45:46 -0400348 if (extra_msr_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400349 outp += sprintf(outp, "\tMSR 0x%03X", extra_msr_offset64);
Len Brown1cc21f72015-02-23 00:34:57 -0500350
351 if (!debug)
352 goto done;
353
Len Brown562a2d32016-02-26 23:48:05 -0500354 if (do_irq)
Len Brown3d109de2016-04-22 23:24:27 -0400355 outp += sprintf(outp, "\tIRQ");
Len Brown1cc21f72015-02-23 00:34:57 -0500356 if (do_smi)
Len Brown3d109de2016-04-22 23:24:27 -0400357 outp += sprintf(outp, "\tSMI");
Len Brown1cc21f72015-02-23 00:34:57 -0500358
Len Brown103a8fe2010-10-22 23:53:03 -0400359 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400360 outp += sprintf(outp, "\tCPU%%c1");
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700361 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400362 outp += sprintf(outp, "\tCPU%%c3");
Len Brown103a8fe2010-10-22 23:53:03 -0400363 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400364 outp += sprintf(outp, "\tCPU%%c6");
Len Brown103a8fe2010-10-22 23:53:03 -0400365 if (do_snb_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400366 outp += sprintf(outp, "\tCPU%%c7");
Len Brown889facb2012-11-08 00:48:57 -0500367
368 if (do_dts)
Len Brown3d109de2016-04-22 23:24:27 -0400369 outp += sprintf(outp, "\tCoreTmp");
Len Brown889facb2012-11-08 00:48:57 -0500370 if (do_ptm)
Len Brown3d109de2016-04-22 23:24:27 -0400371 outp += sprintf(outp, "\tPkgTmp");
Len Brown889facb2012-11-08 00:48:57 -0500372
Len Brownfdf676e2016-02-27 01:28:12 -0500373 if (do_gfx_rc6_ms)
Len Brown3d109de2016-04-22 23:24:27 -0400374 outp += sprintf(outp, "\tGFX%%rc6");
Len Brownfdf676e2016-02-27 01:28:12 -0500375
Len Brown27d47352016-02-27 00:37:54 -0500376 if (do_gfx_mhz)
Len Brown3d109de2016-04-22 23:24:27 -0400377 outp += sprintf(outp, "\tGFXMHz");
Len Brown27d47352016-02-27 00:37:54 -0500378
Len Brown0b2bb692015-03-26 00:50:30 -0400379 if (do_skl_residency) {
Len Brown3d109de2016-04-22 23:24:27 -0400380 outp += sprintf(outp, "\tTotl%%C0");
381 outp += sprintf(outp, "\tAny%%C0");
382 outp += sprintf(outp, "\tGFX%%C0");
383 outp += sprintf(outp, "\tCPUGFX%%");
Len Brown0b2bb692015-03-26 00:50:30 -0400384 }
385
Len Brownee7e38e2015-02-09 23:39:45 -0500386 if (do_pc2)
Len Brown3d109de2016-04-22 23:24:27 -0400387 outp += sprintf(outp, "\tPkg%%pc2");
Len Brownee7e38e2015-02-09 23:39:45 -0500388 if (do_pc3)
Len Brown3d109de2016-04-22 23:24:27 -0400389 outp += sprintf(outp, "\tPkg%%pc3");
Len Brownee7e38e2015-02-09 23:39:45 -0500390 if (do_pc6)
Len Brown3d109de2016-04-22 23:24:27 -0400391 outp += sprintf(outp, "\tPkg%%pc6");
Len Brownee7e38e2015-02-09 23:39:45 -0500392 if (do_pc7)
Len Brown3d109de2016-04-22 23:24:27 -0400393 outp += sprintf(outp, "\tPkg%%pc7");
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800394 if (do_c8_c9_c10) {
Len Brown3d109de2016-04-22 23:24:27 -0400395 outp += sprintf(outp, "\tPkg%%pc8");
396 outp += sprintf(outp, "\tPkg%%pc9");
397 outp += sprintf(outp, "\tPk%%pc10");
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800398 }
Len Brown103a8fe2010-10-22 23:53:03 -0400399
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800400 if (do_rapl && !rapl_joules) {
401 if (do_rapl & RAPL_PKG)
Len Brown3d109de2016-04-22 23:24:27 -0400402 outp += sprintf(outp, "\tPkgWatt");
Jacob Pan91484942016-06-16 09:48:20 -0700403 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400404 outp += sprintf(outp, "\tCorWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800405 if (do_rapl & RAPL_GFX)
Len Brown3d109de2016-04-22 23:24:27 -0400406 outp += sprintf(outp, "\tGFXWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800407 if (do_rapl & RAPL_DRAM)
Len Brown3d109de2016-04-22 23:24:27 -0400408 outp += sprintf(outp, "\tRAMWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800409 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400410 outp += sprintf(outp, "\tPKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800411 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400412 outp += sprintf(outp, "\tRAM_%%");
Len Brownd7899442015-01-23 00:12:33 -0500413 } else if (do_rapl && rapl_joules) {
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800414 if (do_rapl & RAPL_PKG)
Len Brown3d109de2016-04-22 23:24:27 -0400415 outp += sprintf(outp, "\tPkg_J");
Jacob Pan91484942016-06-16 09:48:20 -0700416 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400417 outp += sprintf(outp, "\tCor_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800418 if (do_rapl & RAPL_GFX)
Len Brown3d109de2016-04-22 23:24:27 -0400419 outp += sprintf(outp, "\tGFX_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800420 if (do_rapl & RAPL_DRAM)
Len Brown3d109de2016-04-22 23:24:27 -0400421 outp += sprintf(outp, "\tRAM_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800422 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400423 outp += sprintf(outp, "\tPKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800424 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brown3d109de2016-04-22 23:24:27 -0400425 outp += sprintf(outp, "\tRAM_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800426 }
Len Brown1cc21f72015-02-23 00:34:57 -0500427 done:
Len Brownc98d5d92012-06-04 00:56:40 -0400428 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400429}
430
Len Brownc98d5d92012-06-04 00:56:40 -0400431int dump_counters(struct thread_data *t, struct core_data *c,
432 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400433{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200434 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400435
Len Brownc98d5d92012-06-04 00:56:40 -0400436 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200437 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
438 t->cpu_id, t->flags);
439 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
440 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
441 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
442 outp += sprintf(outp, "c1: %016llX\n", t->c1);
443 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400444 extra_delta_offset32, t->extra_delta32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200445 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400446 extra_delta_offset64, t->extra_delta64);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200447 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400448 extra_msr_offset32, t->extra_msr32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200449 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400450 extra_msr_offset64, t->extra_msr64);
Len Brown562a2d32016-02-26 23:48:05 -0500451 if (do_irq)
452 outp += sprintf(outp, "IRQ: %08X\n", t->irq_count);
Len Brown1ed51012013-02-10 17:19:24 -0500453 if (do_smi)
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200454 outp += sprintf(outp, "SMI: %08X\n", t->smi_count);
Len Brownc98d5d92012-06-04 00:56:40 -0400455 }
Len Brown103a8fe2010-10-22 23:53:03 -0400456
Len Brownc98d5d92012-06-04 00:56:40 -0400457 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200458 outp += sprintf(outp, "core: %d\n", c->core_id);
459 outp += sprintf(outp, "c3: %016llX\n", c->c3);
460 outp += sprintf(outp, "c6: %016llX\n", c->c6);
461 outp += sprintf(outp, "c7: %016llX\n", c->c7);
462 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400463 }
464
465 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200466 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400467
468 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
469 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
470 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
471 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
472
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200473 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brownee7e38e2015-02-09 23:39:45 -0500474 if (do_pc3)
475 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
476 if (do_pc6)
477 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
478 if (do_pc7)
479 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200480 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
481 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
482 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
483 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
484 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
485 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
486 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
487 outp += sprintf(outp, "Throttle PKG: %0X\n",
488 p->rapl_pkg_perf_status);
489 outp += sprintf(outp, "Throttle RAM: %0X\n",
490 p->rapl_dram_perf_status);
491 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400492 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200493
494 outp += sprintf(outp, "\n");
495
Len Brownc98d5d92012-06-04 00:56:40 -0400496 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400497}
498
Len Browne23da032012-02-06 18:37:16 -0500499/*
500 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500501 */
Len Brownc98d5d92012-06-04 00:56:40 -0400502int format_counters(struct thread_data *t, struct core_data *c,
503 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400504{
505 double interval_float;
Len Brownfc04cc62014-02-06 00:55:19 -0500506 char *fmt8;
Len Brown103a8fe2010-10-22 23:53:03 -0400507
Len Brownc98d5d92012-06-04 00:56:40 -0400508 /* if showing only 1st thread in core and this isn't one, bail out */
509 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
510 return 0;
511
512 /* if showing only 1st thread in pkg and this isn't one, bail out */
513 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
514 return 0;
515
Len Brown103a8fe2010-10-22 23:53:03 -0400516 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
517
Len Brownc98d5d92012-06-04 00:56:40 -0400518 /* topo columns, print blanks on 1st (average) line */
519 if (t == &average.threads) {
Len Brown103a8fe2010-10-22 23:53:03 -0400520 if (show_pkg)
Len Brown3d109de2016-04-22 23:24:27 -0400521 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400522 if (show_core)
Len Brown3d109de2016-04-22 23:24:27 -0400523 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400524 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400525 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400526 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400527 if (show_pkg) {
528 if (p)
Len Brown3d109de2016-04-22 23:24:27 -0400529 outp += sprintf(outp, "\t%d", p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400530 else
Len Brown3d109de2016-04-22 23:24:27 -0400531 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400532 }
Len Brownc98d5d92012-06-04 00:56:40 -0400533 if (show_core) {
534 if (c)
Len Brown3d109de2016-04-22 23:24:27 -0400535 outp += sprintf(outp, "\t%d", c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400536 else
Len Brown3d109de2016-04-22 23:24:27 -0400537 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400538 }
Len Brown103a8fe2010-10-22 23:53:03 -0400539 if (show_cpu)
Len Brown3d109de2016-04-22 23:24:27 -0400540 outp += sprintf(outp, "\t%d", t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400541 }
Len Brownfc04cc62014-02-06 00:55:19 -0500542
Len Brownd7899442015-01-23 00:12:33 -0500543 /* Avg_MHz */
Len Brownfc04cc62014-02-06 00:55:19 -0500544 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400545 outp += sprintf(outp, "\t%.0f",
Len Brownfc04cc62014-02-06 00:55:19 -0500546 1.0 / units * t->aperf / interval_float);
547
Len Brown75d2e442016-02-13 23:41:53 -0500548 /* Busy% */
Len Brownba3dec92016-04-22 20:31:46 -0400549 if (has_aperf)
Len Brown3d109de2016-04-22 23:24:27 -0400550 outp += sprintf(outp, "\t%.2f", 100.0 * t->mperf/t->tsc/tsc_tweak);
Len Brown103a8fe2010-10-22 23:53:03 -0400551
Len Brownd7899442015-01-23 00:12:33 -0500552 /* Bzy_MHz */
Len Brown21ed5572015-10-19 22:37:40 -0400553 if (has_aperf) {
554 if (has_base_hz)
Len Brown3d109de2016-04-22 23:24:27 -0400555 outp += sprintf(outp, "\t%.0f", base_hz / units * t->aperf / t->mperf);
Len Brown21ed5572015-10-19 22:37:40 -0400556 else
Len Brown3d109de2016-04-22 23:24:27 -0400557 outp += sprintf(outp, "\t%.0f",
Len Brown21ed5572015-10-19 22:37:40 -0400558 1.0 * t->tsc / units * t->aperf / t->mperf / interval_float);
559 }
Len Brown103a8fe2010-10-22 23:53:03 -0400560
Len Brownd7899442015-01-23 00:12:33 -0500561 /* TSC_MHz */
Len Brown3d109de2016-04-22 23:24:27 -0400562 outp += sprintf(outp, "\t%.0f", 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400563
Len Brown8e180f32012-09-22 01:25:08 -0400564 /* delta */
565 if (extra_delta_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400566 outp += sprintf(outp, "\t%11llu", t->extra_delta32);
Len Brown8e180f32012-09-22 01:25:08 -0400567
568 /* DELTA */
569 if (extra_delta_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400570 outp += sprintf(outp, "\t%11llu", t->extra_delta64);
Len Brown2f32edf2012-09-21 23:45:46 -0400571 /* msr */
572 if (extra_msr_offset32)
Len Brown3d109de2016-04-22 23:24:27 -0400573 outp += sprintf(outp, "\t0x%08llx", t->extra_msr32);
Len Brown2f32edf2012-09-21 23:45:46 -0400574
Len Brown130ff302012-09-21 22:56:06 -0400575 /* MSR */
Len Brown2f32edf2012-09-21 23:45:46 -0400576 if (extra_msr_offset64)
Len Brown3d109de2016-04-22 23:24:27 -0400577 outp += sprintf(outp, "\t0x%016llx", t->extra_msr64);
Len Brown130ff302012-09-21 22:56:06 -0400578
Len Brown1cc21f72015-02-23 00:34:57 -0500579 if (!debug)
580 goto done;
581
Len Brown562a2d32016-02-26 23:48:05 -0500582 /* IRQ */
583 if (do_irq)
Len Brown3d109de2016-04-22 23:24:27 -0400584 outp += sprintf(outp, "\t%d", t->irq_count);
Len Brown562a2d32016-02-26 23:48:05 -0500585
Len Brown1cc21f72015-02-23 00:34:57 -0500586 /* SMI */
587 if (do_smi)
Len Brown3d109de2016-04-22 23:24:27 -0400588 outp += sprintf(outp, "\t%d", t->smi_count);
Len Brown1cc21f72015-02-23 00:34:57 -0500589
Len Brownba3dec92016-04-22 20:31:46 -0400590 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400591 outp += sprintf(outp, "\t%.2f", 100.0 * t->c1/t->tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400592
593 /* print per-core data only for 1st thread in core */
594 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
595 goto done;
596
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700597 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400598 outp += sprintf(outp, "\t%.2f", 100.0 * c->c3/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400599 if (do_nhm_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400600 outp += sprintf(outp, "\t%.2f", 100.0 * c->c6/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400601 if (do_snb_cstates)
Len Brown3d109de2016-04-22 23:24:27 -0400602 outp += sprintf(outp, "\t%.2f", 100.0 * c->c7/t->tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400603
Len Brown889facb2012-11-08 00:48:57 -0500604 if (do_dts)
Len Brown3d109de2016-04-22 23:24:27 -0400605 outp += sprintf(outp, "\t%d", c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500606
Len Brownc98d5d92012-06-04 00:56:40 -0400607 /* print per-package data only for 1st core in package */
608 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
609 goto done;
610
Len Brown0b2bb692015-03-26 00:50:30 -0400611 /* PkgTmp */
Len Brown889facb2012-11-08 00:48:57 -0500612 if (do_ptm)
Len Brown3d109de2016-04-22 23:24:27 -0400613 outp += sprintf(outp, "\t%d", p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500614
Len Brownfdf676e2016-02-27 01:28:12 -0500615 /* GFXrc6 */
Len Brown9185e982016-04-06 17:16:00 -0400616 if (do_gfx_rc6_ms) {
Len Brownba3dec92016-04-22 20:31:46 -0400617 if (p->gfx_rc6_ms == -1) { /* detect GFX counter reset */
Len Brown3d109de2016-04-22 23:24:27 -0400618 outp += sprintf(outp, "\t**.**");
Len Brown9185e982016-04-06 17:16:00 -0400619 } else {
Len Brown3d109de2016-04-22 23:24:27 -0400620 outp += sprintf(outp, "\t%.2f",
Len Brown9185e982016-04-06 17:16:00 -0400621 p->gfx_rc6_ms / 10.0 / interval_float);
622 }
623 }
Len Brownfdf676e2016-02-27 01:28:12 -0500624
Len Brown27d47352016-02-27 00:37:54 -0500625 /* GFXMHz */
626 if (do_gfx_mhz)
Len Brown3d109de2016-04-22 23:24:27 -0400627 outp += sprintf(outp, "\t%d", p->gfx_mhz);
Len Brown27d47352016-02-27 00:37:54 -0500628
Len Brown0b2bb692015-03-26 00:50:30 -0400629 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
630 if (do_skl_residency) {
Len Brown3d109de2016-04-22 23:24:27 -0400631 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_wtd_core_c0/t->tsc);
632 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_core_c0/t->tsc);
633 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_gfxe_c0/t->tsc);
634 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_both_core_gfxe_c0/t->tsc);
Len Brown0b2bb692015-03-26 00:50:30 -0400635 }
636
Len Brownee7e38e2015-02-09 23:39:45 -0500637 if (do_pc2)
Len Brown3d109de2016-04-22 23:24:27 -0400638 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc2/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500639 if (do_pc3)
Len Brown3d109de2016-04-22 23:24:27 -0400640 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc3/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500641 if (do_pc6)
Len Brown3d109de2016-04-22 23:24:27 -0400642 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc6/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500643 if (do_pc7)
Len Brown3d109de2016-04-22 23:24:27 -0400644 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc7/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800645 if (do_c8_c9_c10) {
Len Brown3d109de2016-04-22 23:24:27 -0400646 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc8/t->tsc);
647 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc9/t->tsc);
648 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc10/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800649 }
Len Brown889facb2012-11-08 00:48:57 -0500650
651 /*
652 * If measurement interval exceeds minimum RAPL Joule Counter range,
653 * indicate that results are suspect by printing "**" in fraction place.
654 */
Len Brownfc04cc62014-02-06 00:55:19 -0500655 if (interval_float < rapl_joule_counter_range)
Len Brown3d109de2016-04-22 23:24:27 -0400656 fmt8 = "\t%.2f";
Len Brownfc04cc62014-02-06 00:55:19 -0500657 else
Len Browne975db52016-04-06 23:56:02 -0400658 fmt8 = "%6.0f**";
Len Brown889facb2012-11-08 00:48:57 -0500659
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800660 if (do_rapl && !rapl_joules) {
661 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500662 outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units / interval_float);
Jacob Pan91484942016-06-16 09:48:20 -0700663 if (do_rapl & RAPL_CORES_ENERGY_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500664 outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800665 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500666 outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800667 if (do_rapl & RAPL_DRAM)
Andrey Semin40ee8e32014-12-05 00:07:00 -0500668 outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800669 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500670 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800671 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500672 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Len Brownd7899442015-01-23 00:12:33 -0500673 } else if (do_rapl && rapl_joules) {
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800674 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500675 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800676 p->energy_pkg * rapl_energy_units);
677 if (do_rapl & RAPL_CORES)
Len Brownfc04cc62014-02-06 00:55:19 -0500678 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800679 p->energy_cores * rapl_energy_units);
680 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500681 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800682 p->energy_gfx * rapl_energy_units);
683 if (do_rapl & RAPL_DRAM)
Len Brownfc04cc62014-02-06 00:55:19 -0500684 outp += sprintf(outp, fmt8,
Andrey Semin40ee8e32014-12-05 00:07:00 -0500685 p->energy_dram * rapl_dram_energy_units);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800686 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500687 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800688 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500689 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800690 }
Len Brownc98d5d92012-06-04 00:56:40 -0400691done:
Len Brownc98d5d92012-06-04 00:56:40 -0400692 outp += sprintf(outp, "\n");
693
694 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400695}
696
Len Brownb7d8c142016-02-13 23:36:17 -0500697void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400698{
Len Brownb7d8c142016-02-13 23:36:17 -0500699 FILE *filep;
700
701 if (outf == stderr)
702 filep = stdout;
703 else
704 filep = outf;
705
706 fputs(output_buffer, filep);
707 fflush(filep);
708
Len Brownc98d5d92012-06-04 00:56:40 -0400709 outp = output_buffer;
710}
Len Brownb7d8c142016-02-13 23:36:17 -0500711void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -0400712{
Len Brownb7d8c142016-02-13 23:36:17 -0500713 fputs(output_buffer, outf);
714 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -0400715 outp = output_buffer;
716}
717void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
718{
Len Browne23da032012-02-06 18:37:16 -0500719 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -0400720
Len Browne23da032012-02-06 18:37:16 -0500721 if (!printed || !summary_only)
722 print_header();
Len Brown103a8fe2010-10-22 23:53:03 -0400723
Len Brownc98d5d92012-06-04 00:56:40 -0400724 if (topo.num_cpus > 1)
725 format_counters(&average.threads, &average.cores,
726 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -0400727
Len Browne23da032012-02-06 18:37:16 -0500728 printed = 1;
729
730 if (summary_only)
731 return;
732
Len Brownc98d5d92012-06-04 00:56:40 -0400733 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400734}
735
Len Brown889facb2012-11-08 00:48:57 -0500736#define DELTA_WRAP32(new, old) \
737 if (new > old) { \
738 old = new - old; \
739 } else { \
740 old = 0x100000000 + new - old; \
741 }
742
Len Brownba3dec92016-04-22 20:31:46 -0400743int
Len Brownc98d5d92012-06-04 00:56:40 -0400744delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -0400745{
Len Brown0b2bb692015-03-26 00:50:30 -0400746
747 if (do_skl_residency) {
748 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
749 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
750 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
751 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
752 }
Len Brownc98d5d92012-06-04 00:56:40 -0400753 old->pc2 = new->pc2 - old->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500754 if (do_pc3)
755 old->pc3 = new->pc3 - old->pc3;
756 if (do_pc6)
757 old->pc6 = new->pc6 - old->pc6;
758 if (do_pc7)
759 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800760 old->pc8 = new->pc8 - old->pc8;
761 old->pc9 = new->pc9 - old->pc9;
762 old->pc10 = new->pc10 - old->pc10;
Len Brown889facb2012-11-08 00:48:57 -0500763 old->pkg_temp_c = new->pkg_temp_c;
764
Len Brown9185e982016-04-06 17:16:00 -0400765 /* flag an error when rc6 counter resets/wraps */
766 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
767 old->gfx_rc6_ms = -1;
768 else
769 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
770
Len Brown27d47352016-02-27 00:37:54 -0500771 old->gfx_mhz = new->gfx_mhz;
772
Len Brown889facb2012-11-08 00:48:57 -0500773 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
774 DELTA_WRAP32(new->energy_cores, old->energy_cores);
775 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
776 DELTA_WRAP32(new->energy_dram, old->energy_dram);
777 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
778 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownba3dec92016-04-22 20:31:46 -0400779
780 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400781}
Len Brown103a8fe2010-10-22 23:53:03 -0400782
Len Brownc98d5d92012-06-04 00:56:40 -0400783void
784delta_core(struct core_data *new, struct core_data *old)
785{
786 old->c3 = new->c3 - old->c3;
787 old->c6 = new->c6 - old->c6;
788 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -0500789 old->core_temp_c = new->core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400790}
Len Brown103a8fe2010-10-22 23:53:03 -0400791
Len Brownc3ae3312012-06-13 21:31:46 -0400792/*
793 * old = new - old
794 */
Len Brownba3dec92016-04-22 20:31:46 -0400795int
Len Brownc98d5d92012-06-04 00:56:40 -0400796delta_thread(struct thread_data *new, struct thread_data *old,
797 struct core_data *core_delta)
798{
799 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -0400800
Len Brownc98d5d92012-06-04 00:56:40 -0400801 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -0700802 if (old->tsc < (1000 * 1000))
803 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
804 "You can disable all c-states by booting with \"idle=poll\"\n"
805 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -0400806
Len Brownc98d5d92012-06-04 00:56:40 -0400807 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -0400808
Len Browna7296172015-01-23 01:33:58 -0500809 if (has_aperf) {
810 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
811 old->aperf = new->aperf - old->aperf;
812 old->mperf = new->mperf - old->mperf;
813 } else {
Len Brownba3dec92016-04-22 20:31:46 -0400814 return -1;
Len Brownc98d5d92012-06-04 00:56:40 -0400815 }
Len Brownc98d5d92012-06-04 00:56:40 -0400816 }
Len Brown103a8fe2010-10-22 23:53:03 -0400817
Len Brown103a8fe2010-10-22 23:53:03 -0400818
Len Brown144b44b2013-11-09 00:30:16 -0500819 if (use_c1_residency_msr) {
820 /*
821 * Some models have a dedicated C1 residency MSR,
822 * which should be more accurate than the derivation below.
823 */
824 } else {
825 /*
826 * As counter collection is not atomic,
827 * it is possible for mperf's non-halted cycles + idle states
828 * to exceed TSC's all cycles: show c1 = 0% in that case.
829 */
830 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > old->tsc)
831 old->c1 = 0;
832 else {
833 /* normal case, derive c1 */
834 old->c1 = old->tsc - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -0400835 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -0500836 }
Len Brownc98d5d92012-06-04 00:56:40 -0400837 }
Len Brownc3ae3312012-06-13 21:31:46 -0400838
Len Brownc98d5d92012-06-04 00:56:40 -0400839 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -0500840 if (debug > 1)
841 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400842 old->mperf = 1; /* divide by 0 protection */
843 }
844
Len Brown8e180f32012-09-22 01:25:08 -0400845 old->extra_delta32 = new->extra_delta32 - old->extra_delta32;
846 old->extra_delta32 &= 0xFFFFFFFF;
847
848 old->extra_delta64 = new->extra_delta64 - old->extra_delta64;
849
Len Brownc98d5d92012-06-04 00:56:40 -0400850 /*
Len Brown8e180f32012-09-22 01:25:08 -0400851 * Extra MSR is just a snapshot, simply copy latest w/o subtracting
Len Brownc98d5d92012-06-04 00:56:40 -0400852 */
Len Brown2f32edf2012-09-21 23:45:46 -0400853 old->extra_msr32 = new->extra_msr32;
854 old->extra_msr64 = new->extra_msr64;
Len Brown1ed51012013-02-10 17:19:24 -0500855
Len Brown562a2d32016-02-26 23:48:05 -0500856 if (do_irq)
857 old->irq_count = new->irq_count - old->irq_count;
858
Len Brown1ed51012013-02-10 17:19:24 -0500859 if (do_smi)
860 old->smi_count = new->smi_count - old->smi_count;
Len Brownba3dec92016-04-22 20:31:46 -0400861
862 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400863}
864
865int delta_cpu(struct thread_data *t, struct core_data *c,
866 struct pkg_data *p, struct thread_data *t2,
867 struct core_data *c2, struct pkg_data *p2)
868{
Len Brownba3dec92016-04-22 20:31:46 -0400869 int retval = 0;
870
Len Brownc98d5d92012-06-04 00:56:40 -0400871 /* calculate core delta only for 1st thread in core */
872 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
873 delta_core(c, c2);
874
875 /* always calculate thread delta */
Len Brownba3dec92016-04-22 20:31:46 -0400876 retval = delta_thread(t, t2, c2); /* c2 is core delta */
877 if (retval)
878 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -0400879
880 /* calculate package delta only for 1st core in package */
881 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
Len Brownba3dec92016-04-22 20:31:46 -0400882 retval = delta_package(p, p2);
Len Brownc98d5d92012-06-04 00:56:40 -0400883
Len Brownba3dec92016-04-22 20:31:46 -0400884 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -0400885}
886
887void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
888{
889 t->tsc = 0;
890 t->aperf = 0;
891 t->mperf = 0;
892 t->c1 = 0;
893
Len Brown8e180f32012-09-22 01:25:08 -0400894 t->extra_delta32 = 0;
895 t->extra_delta64 = 0;
896
Len Brown562a2d32016-02-26 23:48:05 -0500897 t->irq_count = 0;
898 t->smi_count = 0;
899
Len Brownc98d5d92012-06-04 00:56:40 -0400900 /* tells format_counters to dump all fields from this set */
901 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
902
903 c->c3 = 0;
904 c->c6 = 0;
905 c->c7 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500906 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400907
Len Brown0b2bb692015-03-26 00:50:30 -0400908 p->pkg_wtd_core_c0 = 0;
909 p->pkg_any_core_c0 = 0;
910 p->pkg_any_gfxe_c0 = 0;
911 p->pkg_both_core_gfxe_c0 = 0;
912
Len Brownc98d5d92012-06-04 00:56:40 -0400913 p->pc2 = 0;
Len Brownee7e38e2015-02-09 23:39:45 -0500914 if (do_pc3)
915 p->pc3 = 0;
916 if (do_pc6)
917 p->pc6 = 0;
918 if (do_pc7)
919 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800920 p->pc8 = 0;
921 p->pc9 = 0;
922 p->pc10 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500923
924 p->energy_pkg = 0;
925 p->energy_dram = 0;
926 p->energy_cores = 0;
927 p->energy_gfx = 0;
928 p->rapl_pkg_perf_status = 0;
929 p->rapl_dram_perf_status = 0;
930 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -0500931
Len Brownfdf676e2016-02-27 01:28:12 -0500932 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -0500933 p->gfx_mhz = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400934}
935int sum_counters(struct thread_data *t, struct core_data *c,
936 struct pkg_data *p)
937{
938 average.threads.tsc += t->tsc;
939 average.threads.aperf += t->aperf;
940 average.threads.mperf += t->mperf;
941 average.threads.c1 += t->c1;
942
Len Brown8e180f32012-09-22 01:25:08 -0400943 average.threads.extra_delta32 += t->extra_delta32;
944 average.threads.extra_delta64 += t->extra_delta64;
945
Len Brown562a2d32016-02-26 23:48:05 -0500946 average.threads.irq_count += t->irq_count;
947 average.threads.smi_count += t->smi_count;
948
Len Brownc98d5d92012-06-04 00:56:40 -0400949 /* sum per-core values only for 1st thread in core */
950 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
951 return 0;
952
953 average.cores.c3 += c->c3;
954 average.cores.c6 += c->c6;
955 average.cores.c7 += c->c7;
956
Len Brown889facb2012-11-08 00:48:57 -0500957 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
958
Len Brownc98d5d92012-06-04 00:56:40 -0400959 /* sum per-pkg values only for 1st core in pkg */
960 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
961 return 0;
962
Len Brown0b2bb692015-03-26 00:50:30 -0400963 if (do_skl_residency) {
964 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
965 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
966 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
967 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
968 }
969
Len Brownc98d5d92012-06-04 00:56:40 -0400970 average.packages.pc2 += p->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500971 if (do_pc3)
972 average.packages.pc3 += p->pc3;
973 if (do_pc6)
974 average.packages.pc6 += p->pc6;
975 if (do_pc7)
976 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800977 average.packages.pc8 += p->pc8;
978 average.packages.pc9 += p->pc9;
979 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -0400980
Len Brown889facb2012-11-08 00:48:57 -0500981 average.packages.energy_pkg += p->energy_pkg;
982 average.packages.energy_dram += p->energy_dram;
983 average.packages.energy_cores += p->energy_cores;
984 average.packages.energy_gfx += p->energy_gfx;
985
Len Brownfdf676e2016-02-27 01:28:12 -0500986 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500987 average.packages.gfx_mhz = p->gfx_mhz;
988
Len Brown889facb2012-11-08 00:48:57 -0500989 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
990
991 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
992 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brownc98d5d92012-06-04 00:56:40 -0400993 return 0;
994}
995/*
996 * sum the counters for all cpus in the system
997 * compute the weighted average
998 */
999void compute_average(struct thread_data *t, struct core_data *c,
1000 struct pkg_data *p)
1001{
1002 clear_counters(&average.threads, &average.cores, &average.packages);
1003
1004 for_all_cpus(sum_counters, t, c, p);
1005
1006 average.threads.tsc /= topo.num_cpus;
1007 average.threads.aperf /= topo.num_cpus;
1008 average.threads.mperf /= topo.num_cpus;
1009 average.threads.c1 /= topo.num_cpus;
1010
Len Brown8e180f32012-09-22 01:25:08 -04001011 average.threads.extra_delta32 /= topo.num_cpus;
1012 average.threads.extra_delta32 &= 0xFFFFFFFF;
1013
1014 average.threads.extra_delta64 /= topo.num_cpus;
1015
Len Brownc98d5d92012-06-04 00:56:40 -04001016 average.cores.c3 /= topo.num_cores;
1017 average.cores.c6 /= topo.num_cores;
1018 average.cores.c7 /= topo.num_cores;
1019
Len Brown0b2bb692015-03-26 00:50:30 -04001020 if (do_skl_residency) {
1021 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
1022 average.packages.pkg_any_core_c0 /= topo.num_packages;
1023 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
1024 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
1025 }
1026
Len Brownc98d5d92012-06-04 00:56:40 -04001027 average.packages.pc2 /= topo.num_packages;
Len Brownee7e38e2015-02-09 23:39:45 -05001028 if (do_pc3)
1029 average.packages.pc3 /= topo.num_packages;
1030 if (do_pc6)
1031 average.packages.pc6 /= topo.num_packages;
1032 if (do_pc7)
1033 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001034
1035 average.packages.pc8 /= topo.num_packages;
1036 average.packages.pc9 /= topo.num_packages;
1037 average.packages.pc10 /= topo.num_packages;
Len Brownc98d5d92012-06-04 00:56:40 -04001038}
1039
1040static unsigned long long rdtsc(void)
1041{
1042 unsigned int low, high;
1043
1044 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1045
1046 return low | ((unsigned long long)high) << 32;
1047}
1048
Len Brownc98d5d92012-06-04 00:56:40 -04001049/*
1050 * get_counters(...)
1051 * migrate to cpu
1052 * acquire and record local counters for that cpu
1053 */
1054int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1055{
1056 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001057 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001058 int aperf_mperf_retry_count = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001059
Len Browne52966c2012-11-08 22:38:05 -05001060 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001061 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001062 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001063 }
Len Brownc98d5d92012-06-04 00:56:40 -04001064
Len Brown0102b062016-02-27 03:11:29 -05001065retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001066 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1067
1068 if (has_aperf) {
Len Brown0102b062016-02-27 03:11:29 -05001069 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1070
1071 /*
1072 * The TSC, APERF and MPERF must be read together for
1073 * APERF/MPERF and MPERF/TSC to give accurate results.
1074 *
1075 * Unfortunately, APERF and MPERF are read by
1076 * individual system call, so delays may occur
1077 * between them. If the time to read them
1078 * varies by a large amount, we re-read them.
1079 */
1080
1081 /*
1082 * This initial dummy APERF read has been seen to
1083 * reduce jitter in the subsequent reads.
1084 */
1085
Len Brown9c63a652012-10-31 01:29:52 -04001086 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001087 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001088
1089 t->tsc = rdtsc(); /* re-read close to APERF */
1090
1091 tsc_before = t->tsc;
1092
1093 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1094 return -3;
1095
1096 tsc_between = rdtsc();
1097
Len Brown9c63a652012-10-31 01:29:52 -04001098 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001099 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001100
1101 tsc_after = rdtsc();
1102
1103 aperf_time = tsc_between - tsc_before;
1104 mperf_time = tsc_after - tsc_between;
1105
1106 /*
1107 * If the system call latency to read APERF and MPERF
1108 * differ by more than 2x, then try again.
1109 */
1110 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1111 aperf_mperf_retry_count++;
1112 if (aperf_mperf_retry_count < 5)
1113 goto retry;
1114 else
1115 warnx("cpu%d jitter %lld %lld",
1116 cpu, aperf_time, mperf_time);
1117 }
1118 aperf_mperf_retry_count = 0;
1119
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001120 t->aperf = t->aperf * aperf_mperf_multiplier;
1121 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001122 }
1123
Len Brown562a2d32016-02-26 23:48:05 -05001124 if (do_irq)
1125 t->irq_count = irqs_per_cpu[cpu];
Len Brown1ed51012013-02-10 17:19:24 -05001126 if (do_smi) {
1127 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1128 return -5;
1129 t->smi_count = msr & 0xFFFFFFFF;
1130 }
Len Brown8e180f32012-09-22 01:25:08 -04001131 if (extra_delta_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001132 if (get_msr(cpu, extra_delta_offset32, &msr))
Len Brown2f32edf2012-09-21 23:45:46 -04001133 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001134 t->extra_delta32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001135 }
1136
1137 if (extra_delta_offset64)
1138 if (get_msr(cpu, extra_delta_offset64, &t->extra_delta64))
1139 return -5;
1140
1141 if (extra_msr_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001142 if (get_msr(cpu, extra_msr_offset32, &msr))
Len Brown8e180f32012-09-22 01:25:08 -04001143 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001144 t->extra_msr32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001145 }
Len Brown2f32edf2012-09-21 23:45:46 -04001146
1147 if (extra_msr_offset64)
1148 if (get_msr(cpu, extra_msr_offset64, &t->extra_msr64))
Len Brownc98d5d92012-06-04 00:56:40 -04001149 return -5;
1150
Len Brown144b44b2013-11-09 00:30:16 -05001151 if (use_c1_residency_msr) {
1152 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1153 return -6;
1154 }
1155
Len Brownc98d5d92012-06-04 00:56:40 -04001156 /* collect core counters only for 1st thread in core */
1157 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1158 return 0;
1159
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001160 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001161 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1162 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001163 }
1164
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001165 if (do_nhm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001166 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1167 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001168 } else if (do_knl_cstates) {
1169 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1170 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001171 }
1172
1173 if (do_snb_cstates)
1174 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1175 return -8;
1176
Len Brown889facb2012-11-08 00:48:57 -05001177 if (do_dts) {
1178 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1179 return -9;
1180 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1181 }
1182
1183
Len Brownc98d5d92012-06-04 00:56:40 -04001184 /* collect package counters only for 1st core in package */
1185 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1186 return 0;
1187
Len Brown0b2bb692015-03-26 00:50:30 -04001188 if (do_skl_residency) {
1189 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1190 return -10;
1191 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1192 return -11;
1193 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1194 return -12;
1195 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1196 return -13;
1197 }
Len Brownee7e38e2015-02-09 23:39:45 -05001198 if (do_pc3)
Len Brownc98d5d92012-06-04 00:56:40 -04001199 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1200 return -9;
Len Brownee7e38e2015-02-09 23:39:45 -05001201 if (do_pc6)
Len Brownc98d5d92012-06-04 00:56:40 -04001202 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1203 return -10;
Len Brownee7e38e2015-02-09 23:39:45 -05001204 if (do_pc2)
Len Brownc98d5d92012-06-04 00:56:40 -04001205 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1206 return -11;
Len Brownee7e38e2015-02-09 23:39:45 -05001207 if (do_pc7)
Len Brownc98d5d92012-06-04 00:56:40 -04001208 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1209 return -12;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001210 if (do_c8_c9_c10) {
1211 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1212 return -13;
1213 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1214 return -13;
1215 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1216 return -13;
1217 }
Len Brown889facb2012-11-08 00:48:57 -05001218 if (do_rapl & RAPL_PKG) {
1219 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1220 return -13;
1221 p->energy_pkg = msr & 0xFFFFFFFF;
1222 }
Jacob Pan91484942016-06-16 09:48:20 -07001223 if (do_rapl & RAPL_CORES_ENERGY_STATUS) {
Len Brown889facb2012-11-08 00:48:57 -05001224 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1225 return -14;
1226 p->energy_cores = msr & 0xFFFFFFFF;
1227 }
1228 if (do_rapl & RAPL_DRAM) {
1229 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1230 return -15;
1231 p->energy_dram = msr & 0xFFFFFFFF;
1232 }
1233 if (do_rapl & RAPL_GFX) {
1234 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1235 return -16;
1236 p->energy_gfx = msr & 0xFFFFFFFF;
1237 }
1238 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1239 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1240 return -16;
1241 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1242 }
1243 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1244 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1245 return -16;
1246 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1247 }
1248 if (do_ptm) {
1249 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1250 return -17;
1251 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1252 }
Len Brownfdf676e2016-02-27 01:28:12 -05001253
1254 if (do_gfx_rc6_ms)
1255 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1256
Len Brown27d47352016-02-27 00:37:54 -05001257 if (do_gfx_mhz)
1258 p->gfx_mhz = gfx_cur_mhz;
1259
Len Brown103a8fe2010-10-22 23:53:03 -04001260 return 0;
1261}
1262
Len Brownee7e38e2015-02-09 23:39:45 -05001263/*
1264 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1265 * If you change the values, note they are used both in comparisons
1266 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1267 */
1268
1269#define PCLUKN 0 /* Unknown */
1270#define PCLRSV 1 /* Reserved */
1271#define PCL__0 2 /* PC0 */
1272#define PCL__1 3 /* PC1 */
1273#define PCL__2 4 /* PC2 */
1274#define PCL__3 5 /* PC3 */
1275#define PCL__4 6 /* PC4 */
1276#define PCL__6 7 /* PC6 */
1277#define PCL_6N 8 /* PC6 No Retention */
1278#define PCL_6R 9 /* PC6 Retention */
1279#define PCL__7 10 /* PC7 */
1280#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001281#define PCL__8 12 /* PC8 */
1282#define PCL__9 13 /* PC9 */
1283#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001284
1285int pkg_cstate_limit = PCLUKN;
1286char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001287 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001288
Len Browne9257f52015-04-01 21:02:57 -04001289int 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};
1290int 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};
1291int 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};
1292int 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};
1293int 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};
1294int 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 -04001295int 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 -05001296
Len Browna2b7b742015-09-26 00:12:38 -04001297
1298static void
1299calculate_tsc_tweak()
1300{
Len Browna2b7b742015-09-26 00:12:38 -04001301 tsc_tweak = base_hz / tsc_hz;
1302}
1303
Len Brownfcd17212015-03-23 20:29:09 -04001304static void
1305dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001306{
1307 unsigned long long msr;
1308 unsigned int ratio;
1309
Len Brownec0adc52015-11-12 02:42:31 -05001310 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001311
Len Brownb7d8c142016-02-13 23:36:17 -05001312 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001313
Len Brown103a8fe2010-10-22 23:53:03 -04001314 ratio = (msr >> 40) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001315 fprintf(outf, "%d * %.0f = %.0f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001316 ratio, bclk, ratio * bclk);
1317
1318 ratio = (msr >> 8) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001319 fprintf(outf, "%d * %.0f = %.0f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001320 ratio, bclk, ratio * bclk);
1321
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001322 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001323 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001324 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001325
Len Brownfcd17212015-03-23 20:29:09 -04001326 return;
1327}
1328
1329static void
1330dump_hsw_turbo_ratio_limits(void)
1331{
1332 unsigned long long msr;
1333 unsigned int ratio;
1334
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001335 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001336
Len Brownb7d8c142016-02-13 23:36:17 -05001337 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001338
1339 ratio = (msr >> 8) & 0xFF;
1340 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001341 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001342 ratio, bclk, ratio * bclk);
1343
1344 ratio = (msr >> 0) & 0xFF;
1345 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001346 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001347 ratio, bclk, ratio * bclk);
1348 return;
1349}
1350
1351static void
1352dump_ivt_turbo_ratio_limits(void)
1353{
1354 unsigned long long msr;
1355 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001356
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001357 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001358
Len Brownb7d8c142016-02-13 23:36:17 -05001359 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001360
1361 ratio = (msr >> 56) & 0xFF;
1362 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001363 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001364 ratio, bclk, ratio * bclk);
1365
1366 ratio = (msr >> 48) & 0xFF;
1367 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001368 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001369 ratio, bclk, ratio * bclk);
1370
1371 ratio = (msr >> 40) & 0xFF;
1372 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001373 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001374 ratio, bclk, ratio * bclk);
1375
1376 ratio = (msr >> 32) & 0xFF;
1377 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001378 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001379 ratio, bclk, ratio * bclk);
1380
1381 ratio = (msr >> 24) & 0xFF;
1382 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001383 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001384 ratio, bclk, ratio * bclk);
1385
1386 ratio = (msr >> 16) & 0xFF;
1387 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001388 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001389 ratio, bclk, ratio * bclk);
1390
1391 ratio = (msr >> 8) & 0xFF;
1392 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001393 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001394 ratio, bclk, ratio * bclk);
1395
1396 ratio = (msr >> 0) & 0xFF;
1397 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001398 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001399 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001400 return;
1401}
Len Brown6574a5d2012-09-21 00:01:31 -04001402
Len Brownfcd17212015-03-23 20:29:09 -04001403static void
1404dump_nhm_turbo_ratio_limits(void)
1405{
1406 unsigned long long msr;
1407 unsigned int ratio;
Len Brown103a8fe2010-10-22 23:53:03 -04001408
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001409 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001410
Len Brownb7d8c142016-02-13 23:36:17 -05001411 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001412
1413 ratio = (msr >> 56) & 0xFF;
1414 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001415 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 8 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001416 ratio, bclk, ratio * bclk);
1417
1418 ratio = (msr >> 48) & 0xFF;
1419 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001420 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 7 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001421 ratio, bclk, ratio * bclk);
1422
1423 ratio = (msr >> 40) & 0xFF;
1424 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001425 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 6 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001426 ratio, bclk, ratio * bclk);
1427
1428 ratio = (msr >> 32) & 0xFF;
1429 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001430 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 5 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001431 ratio, bclk, ratio * bclk);
1432
Len Brown103a8fe2010-10-22 23:53:03 -04001433 ratio = (msr >> 24) & 0xFF;
1434 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001435 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001436 ratio, bclk, ratio * bclk);
1437
1438 ratio = (msr >> 16) & 0xFF;
1439 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001440 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001441 ratio, bclk, ratio * bclk);
1442
1443 ratio = (msr >> 8) & 0xFF;
1444 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001445 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001446 ratio, bclk, ratio * bclk);
1447
1448 ratio = (msr >> 0) & 0xFF;
1449 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001450 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001451 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001452 return;
1453}
Len Brown3a9a9412014-08-15 02:39:52 -04001454
Len Brownfcd17212015-03-23 20:29:09 -04001455static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001456dump_knl_turbo_ratio_limits(void)
1457{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001458 const unsigned int buckets_no = 7;
1459
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001460 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001461 int delta_cores, delta_ratio;
1462 int i, b_nr;
1463 unsigned int cores[buckets_no];
1464 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001465
Srinivas Pandruvadaebf59262016-07-06 16:07:56 -07001466 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001467
Len Brownb7d8c142016-02-13 23:36:17 -05001468 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04001469 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001470
1471 /**
1472 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001473 * [0] -- Reserved
1474 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001475 * [15:8] -- Base value of freq ratio of bucket 1.
1476 * [20:16] -- +ve delta of number of active cores of bucket 2.
1477 * i.e. active cores of bucket 2 =
1478 * active cores of bucket 1 + delta
1479 * [23:21] -- Negative delta of freq ratio of bucket 2.
1480 * i.e. freq ratio of bucket 2 =
1481 * freq ratio of bucket 1 - delta
1482 * [28:24]-- +ve delta of number of active cores of bucket 3.
1483 * [31:29]-- -ve delta of freq ratio of bucket 3.
1484 * [36:32]-- +ve delta of number of active cores of bucket 4.
1485 * [39:37]-- -ve delta of freq ratio of bucket 4.
1486 * [44:40]-- +ve delta of number of active cores of bucket 5.
1487 * [47:45]-- -ve delta of freq ratio of bucket 5.
1488 * [52:48]-- +ve delta of number of active cores of bucket 6.
1489 * [55:53]-- -ve delta of freq ratio of bucket 6.
1490 * [60:56]-- +ve delta of number of active cores of bucket 7.
1491 * [63:61]-- -ve delta of freq ratio of bucket 7.
1492 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001493
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001494 b_nr = 0;
1495 cores[b_nr] = (msr & 0xFF) >> 1;
1496 ratio[b_nr] = (msr >> 8) & 0xFF;
1497
1498 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001499 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001500 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001501
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001502 cores[b_nr + 1] = cores[b_nr] + delta_cores;
1503 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
1504 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001505 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001506
1507 for (i = buckets_no - 1; i >= 0; i--)
1508 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05001509 fprintf(outf,
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001510 "%d * %.0f = %.0f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001511 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001512}
1513
1514static void
Len Brownfcd17212015-03-23 20:29:09 -04001515dump_nhm_cst_cfg(void)
1516{
1517 unsigned long long msr;
1518
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001519 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001520
1521#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
1522#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
1523
Len Brownb7d8c142016-02-13 23:36:17 -05001524 fprintf(outf, "cpu%d: MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001525
Len Brownb7d8c142016-02-13 23:36:17 -05001526 fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
Len Brownfcd17212015-03-23 20:29:09 -04001527 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
1528 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
1529 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
1530 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
1531 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04001532 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04001533 pkg_cstate_limit_strings[pkg_cstate_limit]);
1534 return;
Len Brown103a8fe2010-10-22 23:53:03 -04001535}
1536
Len Brown6fb31432015-06-17 16:23:45 -04001537static void
1538dump_config_tdp(void)
1539{
1540 unsigned long long msr;
1541
1542 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001543 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001544 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04001545
1546 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001547 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001548 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001549 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1550 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1551 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1552 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001553 }
Len Brownb7d8c142016-02-13 23:36:17 -05001554 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001555
1556 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001557 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001558 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001559 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1560 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1561 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1562 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001563 }
Len Brownb7d8c142016-02-13 23:36:17 -05001564 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001565
1566 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001567 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001568 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05001569 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
1570 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1571 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05001572
Len Brown6fb31432015-06-17 16:23:45 -04001573 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001574 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001575 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05001576 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1577 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001578}
Len Brown5a634262016-04-06 17:15:55 -04001579
1580unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
1581
1582void print_irtl(void)
1583{
1584 unsigned long long msr;
1585
1586 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
1587 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
1588 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1589 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1590
1591 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
1592 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
1593 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1594 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1595
1596 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
1597 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
1598 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1599 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1600
1601 if (!do_irtl_hsw)
1602 return;
1603
1604 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
1605 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
1606 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1607 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1608
1609 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
1610 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
1611 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1612 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1613
1614 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
1615 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
1616 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1617 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1618
1619}
Len Brown36229892016-02-26 20:51:02 -05001620void free_fd_percpu(void)
1621{
1622 int i;
1623
Mika Westerberg01a67ad2016-04-22 11:13:23 +03001624 for (i = 0; i < topo.max_cpu_num + 1; ++i) {
Len Brown36229892016-02-26 20:51:02 -05001625 if (fd_percpu[i] != 0)
1626 close(fd_percpu[i]);
1627 }
1628
1629 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04001630}
1631
Len Brownc98d5d92012-06-04 00:56:40 -04001632void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001633{
Len Brownc98d5d92012-06-04 00:56:40 -04001634 CPU_FREE(cpu_present_set);
1635 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05001636 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001637
Len Brownc98d5d92012-06-04 00:56:40 -04001638 CPU_FREE(cpu_affinity_set);
1639 cpu_affinity_set = NULL;
1640 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001641
Len Brownc98d5d92012-06-04 00:56:40 -04001642 free(thread_even);
1643 free(core_even);
1644 free(package_even);
1645
1646 thread_even = NULL;
1647 core_even = NULL;
1648 package_even = NULL;
1649
1650 free(thread_odd);
1651 free(core_odd);
1652 free(package_odd);
1653
1654 thread_odd = NULL;
1655 core_odd = NULL;
1656 package_odd = NULL;
1657
1658 free(output_buffer);
1659 output_buffer = NULL;
1660 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05001661
1662 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05001663
1664 free(irq_column_2_cpu);
1665 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001666}
1667
Len Brownc98d5d92012-06-04 00:56:40 -04001668/*
Josh Triplett57a42a32013-08-20 17:20:17 -07001669 * Open a file, and exit on failure
1670 */
1671FILE *fopen_or_die(const char *path, const char *mode)
1672{
Len Brownb7d8c142016-02-13 23:36:17 -05001673 FILE *filep = fopen(path, mode);
Josh Triplettb2c95d92013-08-20 17:20:18 -07001674 if (!filep)
1675 err(1, "%s: open failed", path);
Josh Triplett57a42a32013-08-20 17:20:17 -07001676 return filep;
1677}
1678
1679/*
Josh Triplett95aebc42013-08-20 17:20:16 -07001680 * Parse a file containing a single int.
1681 */
1682int parse_int_file(const char *fmt, ...)
1683{
1684 va_list args;
1685 char path[PATH_MAX];
1686 FILE *filep;
1687 int value;
1688
1689 va_start(args, fmt);
1690 vsnprintf(path, sizeof(path), fmt, args);
1691 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07001692 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001693 if (fscanf(filep, "%d", &value) != 1)
1694 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07001695 fclose(filep);
1696 return value;
1697}
1698
1699/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001700 * get_cpu_position_in_core(cpu)
1701 * return the position of the CPU among its HT siblings in the core
1702 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04001703 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001704int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001705{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001706 char path[64];
1707 FILE *filep;
1708 int this_cpu;
1709 char character;
1710 int i;
1711
1712 sprintf(path,
1713 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
1714 cpu);
1715 filep = fopen(path, "r");
1716 if (filep == NULL) {
1717 perror(path);
1718 exit(1);
1719 }
1720
1721 for (i = 0; i < topo.num_threads_per_core; i++) {
1722 fscanf(filep, "%d", &this_cpu);
1723 if (this_cpu == cpu) {
1724 fclose(filep);
1725 return i;
1726 }
1727
1728 /* Account for no separator after last thread*/
1729 if (i != (topo.num_threads_per_core - 1))
1730 fscanf(filep, "%c", &character);
1731 }
1732
1733 fclose(filep);
1734 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04001735}
1736
Len Brownc98d5d92012-06-04 00:56:40 -04001737/*
1738 * cpu_is_first_core_in_package(cpu)
1739 * return 1 if given CPU is 1st core in package
1740 */
1741int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001742{
Josh Triplett95aebc42013-08-20 17:20:16 -07001743 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001744}
1745
1746int get_physical_package_id(int cpu)
1747{
Josh Triplett95aebc42013-08-20 17:20:16 -07001748 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001749}
1750
1751int get_core_id(int cpu)
1752{
Josh Triplett95aebc42013-08-20 17:20:16 -07001753 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001754}
1755
Len Brownc98d5d92012-06-04 00:56:40 -04001756int get_num_ht_siblings(int cpu)
1757{
1758 char path[80];
1759 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001760 int sib1;
1761 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001762 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001763 char str[100];
1764 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04001765
1766 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07001767 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001768
Len Brownc98d5d92012-06-04 00:56:40 -04001769 /*
1770 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001771 * A ',' separated or '-' separated set of numbers
1772 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04001773 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001774 fscanf(filep, "%d%c\n", &sib1, &character);
1775 fseek(filep, 0, SEEK_SET);
1776 fgets(str, 100, filep);
1777 ch = strchr(str, character);
1778 while (ch != NULL) {
1779 matches++;
1780 ch = strchr(ch+1, character);
1781 }
Len Brownc98d5d92012-06-04 00:56:40 -04001782
1783 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001784 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04001785}
1786
Len Brown103a8fe2010-10-22 23:53:03 -04001787/*
Len Brownc98d5d92012-06-04 00:56:40 -04001788 * run func(thread, core, package) in topology order
1789 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04001790 */
1791
Len Brownc98d5d92012-06-04 00:56:40 -04001792int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
1793 struct pkg_data *, struct thread_data *, struct core_data *,
1794 struct pkg_data *), struct thread_data *thread_base,
1795 struct core_data *core_base, struct pkg_data *pkg_base,
1796 struct thread_data *thread_base2, struct core_data *core_base2,
1797 struct pkg_data *pkg_base2)
1798{
1799 int retval, pkg_no, core_no, thread_no;
1800
1801 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
1802 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
1803 for (thread_no = 0; thread_no <
1804 topo.num_threads_per_core; ++thread_no) {
1805 struct thread_data *t, *t2;
1806 struct core_data *c, *c2;
1807 struct pkg_data *p, *p2;
1808
1809 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
1810
1811 if (cpu_is_not_present(t->cpu_id))
1812 continue;
1813
1814 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
1815
1816 c = GET_CORE(core_base, core_no, pkg_no);
1817 c2 = GET_CORE(core_base2, core_no, pkg_no);
1818
1819 p = GET_PKG(pkg_base, pkg_no);
1820 p2 = GET_PKG(pkg_base2, pkg_no);
1821
1822 retval = func(t, c, p, t2, c2, p2);
1823 if (retval)
1824 return retval;
1825 }
1826 }
1827 }
1828 return 0;
1829}
1830
1831/*
1832 * run func(cpu) on every cpu in /proc/stat
1833 * return max_cpu number
1834 */
1835int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04001836{
1837 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04001838 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04001839 int retval;
1840
Josh Triplett57a42a32013-08-20 17:20:17 -07001841 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04001842
1843 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001844 if (retval != 0)
1845 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04001846
Len Brownc98d5d92012-06-04 00:56:40 -04001847 while (1) {
1848 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 -04001849 if (retval != 1)
1850 break;
1851
Len Brownc98d5d92012-06-04 00:56:40 -04001852 retval = func(cpu_num);
1853 if (retval) {
1854 fclose(fp);
1855 return(retval);
1856 }
Len Brown103a8fe2010-10-22 23:53:03 -04001857 }
1858 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04001859 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001860}
1861
1862void re_initialize(void)
1863{
Len Brownc98d5d92012-06-04 00:56:40 -04001864 free_all_buffers();
1865 setup_all_buffers();
1866 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04001867}
1868
Len Brownc98d5d92012-06-04 00:56:40 -04001869
Len Brown103a8fe2010-10-22 23:53:03 -04001870/*
Len Brownc98d5d92012-06-04 00:56:40 -04001871 * count_cpus()
1872 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04001873 */
Len Brownc98d5d92012-06-04 00:56:40 -04001874int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001875{
Len Brownc98d5d92012-06-04 00:56:40 -04001876 if (topo.max_cpu_num < cpu)
1877 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04001878
Len Brownc98d5d92012-06-04 00:56:40 -04001879 topo.num_cpus += 1;
1880 return 0;
1881}
1882int mark_cpu_present(int cpu)
1883{
1884 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04001885 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001886}
1887
Len Brown562a2d32016-02-26 23:48:05 -05001888/*
1889 * snapshot_proc_interrupts()
1890 *
1891 * read and record summary of /proc/interrupts
1892 *
1893 * return 1 if config change requires a restart, else return 0
1894 */
1895int snapshot_proc_interrupts(void)
1896{
1897 static FILE *fp;
1898 int column, retval;
1899
1900 if (fp == NULL)
1901 fp = fopen_or_die("/proc/interrupts", "r");
1902 else
1903 rewind(fp);
1904
1905 /* read 1st line of /proc/interrupts to get cpu* name for each column */
1906 for (column = 0; column < topo.num_cpus; ++column) {
1907 int cpu_number;
1908
1909 retval = fscanf(fp, " CPU%d", &cpu_number);
1910 if (retval != 1)
1911 break;
1912
1913 if (cpu_number > topo.max_cpu_num) {
1914 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
1915 return 1;
1916 }
1917
1918 irq_column_2_cpu[column] = cpu_number;
1919 irqs_per_cpu[cpu_number] = 0;
1920 }
1921
1922 /* read /proc/interrupt count lines and sum up irqs per cpu */
1923 while (1) {
1924 int column;
1925 char buf[64];
1926
1927 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
1928 if (retval != 1)
1929 break;
1930
1931 /* read the count per cpu */
1932 for (column = 0; column < topo.num_cpus; ++column) {
1933
1934 int cpu_number, irq_count;
1935
1936 retval = fscanf(fp, " %d", &irq_count);
1937 if (retval != 1)
1938 break;
1939
1940 cpu_number = irq_column_2_cpu[column];
1941 irqs_per_cpu[cpu_number] += irq_count;
1942
1943 }
1944
1945 while (getc(fp) != '\n')
1946 ; /* flush interrupt description */
1947
1948 }
1949 return 0;
1950}
Len Brown27d47352016-02-27 00:37:54 -05001951/*
Len Brownfdf676e2016-02-27 01:28:12 -05001952 * snapshot_gfx_rc6_ms()
1953 *
1954 * record snapshot of
1955 * /sys/class/drm/card0/power/rc6_residency_ms
1956 *
1957 * return 1 if config change requires a restart, else return 0
1958 */
1959int snapshot_gfx_rc6_ms(void)
1960{
1961 FILE *fp;
1962 int retval;
1963
1964 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
1965
1966 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
1967 if (retval != 1)
1968 err(1, "GFX rc6");
1969
1970 fclose(fp);
1971
1972 return 0;
1973}
1974/*
Len Brown27d47352016-02-27 00:37:54 -05001975 * snapshot_gfx_mhz()
1976 *
1977 * record snapshot of
1978 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
1979 *
1980 * return 1 if config change requires a restart, else return 0
1981 */
1982int snapshot_gfx_mhz(void)
1983{
1984 static FILE *fp;
1985 int retval;
1986
1987 if (fp == NULL)
1988 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
1989 else
1990 rewind(fp);
1991
1992 retval = fscanf(fp, "%d", &gfx_cur_mhz);
1993 if (retval != 1)
1994 err(1, "GFX MHz");
1995
1996 return 0;
1997}
Len Brown562a2d32016-02-26 23:48:05 -05001998
1999/*
2000 * snapshot /proc and /sys files
2001 *
2002 * return 1 if configuration restart needed, else return 0
2003 */
2004int snapshot_proc_sysfs_files(void)
2005{
2006 if (snapshot_proc_interrupts())
2007 return 1;
2008
Len Brownfdf676e2016-02-27 01:28:12 -05002009 if (do_gfx_rc6_ms)
2010 snapshot_gfx_rc6_ms();
2011
Len Brown27d47352016-02-27 00:37:54 -05002012 if (do_gfx_mhz)
2013 snapshot_gfx_mhz();
2014
Len Brown562a2d32016-02-26 23:48:05 -05002015 return 0;
2016}
2017
Len Brown103a8fe2010-10-22 23:53:03 -04002018void turbostat_loop()
2019{
Len Brownc98d5d92012-06-04 00:56:40 -04002020 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002021 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002022
Len Brown103a8fe2010-10-22 23:53:03 -04002023restart:
Len Browne52966c2012-11-08 22:38:05 -05002024 restarted++;
2025
Len Brown562a2d32016-02-26 23:48:05 -05002026 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002027 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002028 if (retval < -1) {
2029 exit(retval);
2030 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002031 if (restarted > 1) {
2032 exit(retval);
2033 }
Len Brownc98d5d92012-06-04 00:56:40 -04002034 re_initialize();
2035 goto restart;
2036 }
Len Browne52966c2012-11-08 22:38:05 -05002037 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002038 gettimeofday(&tv_even, (struct timezone *)NULL);
2039
2040 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002041 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002042 re_initialize();
2043 goto restart;
2044 }
Len Brown2a0609c2016-02-12 22:44:48 -05002045 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002046 if (snapshot_proc_sysfs_files())
2047 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002048 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002049 if (retval < -1) {
2050 exit(retval);
2051 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002052 re_initialize();
2053 goto restart;
2054 }
Len Brown103a8fe2010-10-22 23:53:03 -04002055 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002056 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002057 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2058 re_initialize();
2059 goto restart;
2060 }
Len Brownc98d5d92012-06-04 00:56:40 -04002061 compute_average(EVEN_COUNTERS);
2062 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002063 flush_output_stdout();
Len Brown2a0609c2016-02-12 22:44:48 -05002064 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002065 if (snapshot_proc_sysfs_files())
2066 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002067 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002068 if (retval < -1) {
2069 exit(retval);
2070 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002071 re_initialize();
2072 goto restart;
2073 }
Len Brown103a8fe2010-10-22 23:53:03 -04002074 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002075 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002076 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2077 re_initialize();
2078 goto restart;
2079 }
Len Brownc98d5d92012-06-04 00:56:40 -04002080 compute_average(ODD_COUNTERS);
2081 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002082 flush_output_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -04002083 }
2084}
2085
2086void check_dev_msr()
2087{
2088 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002089 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002090
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002091 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2092 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002093 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2094 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002095}
2096
Len Brown98481e72014-08-15 00:36:50 -04002097void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002098{
Len Brown98481e72014-08-15 00:36:50 -04002099 struct __user_cap_header_struct cap_header_data;
2100 cap_user_header_t cap_header = &cap_header_data;
2101 struct __user_cap_data_struct cap_data_data;
2102 cap_user_data_t cap_data = &cap_data_data;
2103 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2104 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002105 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002106
2107 /* check for CAP_SYS_RAWIO */
2108 cap_header->pid = getpid();
2109 cap_header->version = _LINUX_CAPABILITY_VERSION;
2110 if (capget(cap_header, cap_data) < 0)
2111 err(-6, "capget(2) failed");
2112
2113 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2114 do_exit++;
2115 warnx("capget(CAP_SYS_RAWIO) failed,"
2116 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2117 }
2118
2119 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002120 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2121 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002122 do_exit++;
2123 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2124 }
2125
2126 /* if all else fails, thell them to be root */
2127 if (do_exit)
2128 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002129 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002130
2131 if (do_exit)
2132 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002133}
2134
Len Brownd7899442015-01-23 00:12:33 -05002135/*
2136 * NHM adds support for additional MSRs:
2137 *
2138 * MSR_SMI_COUNT 0x00000034
2139 *
Len Brownec0adc52015-11-12 02:42:31 -05002140 * MSR_PLATFORM_INFO 0x000000ce
Len Brownd7899442015-01-23 00:12:33 -05002141 * MSR_NHM_SNB_PKG_CST_CFG_CTL 0x000000e2
2142 *
2143 * MSR_PKG_C3_RESIDENCY 0x000003f8
2144 * MSR_PKG_C6_RESIDENCY 0x000003f9
2145 * MSR_CORE_C3_RESIDENCY 0x000003fc
2146 * MSR_CORE_C6_RESIDENCY 0x000003fd
2147 *
Len Brownee7e38e2015-02-09 23:39:45 -05002148 * Side effect:
2149 * sets global pkg_cstate_limit to decode MSR_NHM_SNB_PKG_CST_CFG_CTL
Len Brownd7899442015-01-23 00:12:33 -05002150 */
Len Brownee7e38e2015-02-09 23:39:45 -05002151int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002152{
Len Brownee7e38e2015-02-09 23:39:45 -05002153 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002154 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002155 int *pkg_cstate_limits;
2156
Len Brown103a8fe2010-10-22 23:53:03 -04002157 if (!genuine_intel)
2158 return 0;
2159
2160 if (family != 6)
2161 return 0;
2162
Len Brown21ed5572015-10-19 22:37:40 -04002163 bclk = discover_bclk(family, model);
2164
Len Brown103a8fe2010-10-22 23:53:03 -04002165 switch (model) {
2166 case 0x1A: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2167 case 0x1E: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
2168 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
2169 case 0x25: /* Westmere Client - Clarkdale, Arrandale */
2170 case 0x2C: /* Westmere EP - Gulftown */
Len Brownee7e38e2015-02-09 23:39:45 -05002171 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2172 case 0x2F: /* Westmere-EX Xeon - Eagleton */
2173 pkg_cstate_limits = nhm_pkg_cstate_limits;
2174 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002175 case 0x2A: /* SNB */
2176 case 0x2D: /* SNB Xeon */
Len Brown553575f2011-11-18 03:32:01 -05002177 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002178 case 0x3E: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002179 pkg_cstate_limits = snb_pkg_cstate_limits;
2180 break;
Len Brown70b43402013-01-08 01:26:07 -05002181 case 0x3C: /* HSW */
Len Browne6f9bb32013-12-03 02:19:19 -05002182 case 0x3F: /* HSX */
Len Brown70b43402013-01-08 01:26:07 -05002183 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002184 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002185 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002186 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002187 case 0x4F: /* BDX */
2188 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002189 case 0x4E: /* SKL */
2190 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002191 case 0x8E: /* KBL */
2192 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002193 case 0x55: /* SKX */
Len Brownee7e38e2015-02-09 23:39:45 -05002194 pkg_cstate_limits = hsw_pkg_cstate_limits;
2195 break;
2196 case 0x37: /* BYT */
2197 case 0x4D: /* AVN */
2198 pkg_cstate_limits = slv_pkg_cstate_limits;
2199 break;
2200 case 0x4C: /* AMT */
2201 pkg_cstate_limits = amt_pkg_cstate_limits;
2202 break;
2203 case 0x57: /* PHI */
2204 pkg_cstate_limits = phi_pkg_cstate_limits;
2205 break;
Len Browne4085d52016-04-06 17:15:56 -04002206 case 0x5C: /* BXT */
2207 pkg_cstate_limits = bxt_pkg_cstate_limits;
2208 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002209 default:
2210 return 0;
2211 }
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002212 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002213 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002214
Len Brownec0adc52015-11-12 02:42:31 -05002215 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002216 base_ratio = (msr >> 8) & 0xFF;
2217
2218 base_hz = base_ratio * bclk * 1000000;
2219 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002220 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002221}
Len Brownd7899442015-01-23 00:12:33 -05002222int has_nhm_turbo_ratio_limit(unsigned int family, unsigned int model)
2223{
Len Brownd7899442015-01-23 00:12:33 -05002224 switch (model) {
2225 /* Nehalem compatible, but do not include turbo-ratio limit support */
2226 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2227 case 0x2F: /* Westmere-EX Xeon - Eagleton */
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002228 case 0x57: /* PHI - Knights Landing (different MSR definition) */
Len Brownd7899442015-01-23 00:12:33 -05002229 return 0;
2230 default:
2231 return 1;
2232 }
2233}
Len Brown6574a5d2012-09-21 00:01:31 -04002234int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2235{
2236 if (!genuine_intel)
2237 return 0;
2238
2239 if (family != 6)
2240 return 0;
2241
2242 switch (model) {
2243 case 0x3E: /* IVB Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04002244 case 0x3F: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04002245 return 1;
2246 default:
2247 return 0;
2248 }
2249}
Len Brownfcd17212015-03-23 20:29:09 -04002250int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2251{
2252 if (!genuine_intel)
2253 return 0;
2254
2255 if (family != 6)
2256 return 0;
2257
2258 switch (model) {
2259 case 0x3F: /* HSW Xeon */
2260 return 1;
2261 default:
2262 return 0;
2263 }
2264}
2265
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002266int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2267{
2268 if (!genuine_intel)
2269 return 0;
2270
2271 if (family != 6)
2272 return 0;
2273
2274 switch (model) {
2275 case 0x57: /* Knights Landing */
2276 return 1;
2277 default:
2278 return 0;
2279 }
2280}
Len Brown6fb31432015-06-17 16:23:45 -04002281int has_config_tdp(unsigned int family, unsigned int model)
2282{
2283 if (!genuine_intel)
2284 return 0;
2285
2286 if (family != 6)
2287 return 0;
2288
2289 switch (model) {
2290 case 0x3A: /* IVB */
Len Brown6fb31432015-06-17 16:23:45 -04002291 case 0x3C: /* HSW */
2292 case 0x3F: /* HSX */
2293 case 0x45: /* HSW */
2294 case 0x46: /* HSW */
2295 case 0x3D: /* BDW */
2296 case 0x47: /* BDW */
2297 case 0x4F: /* BDX */
2298 case 0x56: /* BDX-DE */
2299 case 0x4E: /* SKL */
2300 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002301 case 0x8E: /* KBL */
2302 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002303 case 0x55: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04002304
2305 case 0x57: /* Knights Landing */
2306 return 1;
2307 default:
2308 return 0;
2309 }
2310}
2311
Len Brownfcd17212015-03-23 20:29:09 -04002312static void
Colin Ian King1b693172016-03-02 13:50:25 +00002313dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04002314{
2315 if (!do_nhm_platform_info)
2316 return;
2317
2318 dump_nhm_platform_info();
2319
2320 if (has_hsw_turbo_ratio_limit(family, model))
2321 dump_hsw_turbo_ratio_limits();
2322
2323 if (has_ivt_turbo_ratio_limit(family, model))
2324 dump_ivt_turbo_ratio_limits();
2325
2326 if (has_nhm_turbo_ratio_limit(family, model))
2327 dump_nhm_turbo_ratio_limits();
2328
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002329 if (has_knl_turbo_ratio_limit(family, model))
2330 dump_knl_turbo_ratio_limits();
2331
Len Brown6fb31432015-06-17 16:23:45 -04002332 if (has_config_tdp(family, model))
2333 dump_config_tdp();
2334
Len Brownfcd17212015-03-23 20:29:09 -04002335 dump_nhm_cst_cfg();
2336}
2337
Len Brown6574a5d2012-09-21 00:01:31 -04002338
Len Brown889facb2012-11-08 00:48:57 -05002339/*
2340 * print_epb()
2341 * Decode the ENERGY_PERF_BIAS MSR
2342 */
2343int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2344{
2345 unsigned long long msr;
2346 char *epb_string;
2347 int cpu;
2348
2349 if (!has_epb)
2350 return 0;
2351
2352 cpu = t->cpu_id;
2353
2354 /* EPB is per-package */
2355 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2356 return 0;
2357
2358 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002359 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002360 return -1;
2361 }
2362
2363 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
2364 return 0;
2365
Len Browne9be7dd2015-05-26 12:19:37 -04002366 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05002367 case ENERGY_PERF_BIAS_PERFORMANCE:
2368 epb_string = "performance";
2369 break;
2370 case ENERGY_PERF_BIAS_NORMAL:
2371 epb_string = "balanced";
2372 break;
2373 case ENERGY_PERF_BIAS_POWERSAVE:
2374 epb_string = "powersave";
2375 break;
2376 default:
2377 epb_string = "custom";
2378 break;
2379 }
Len Brownb7d8c142016-02-13 23:36:17 -05002380 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05002381
2382 return 0;
2383}
Len Brown7f5c2582015-12-01 01:36:39 -05002384/*
2385 * print_hwp()
2386 * Decode the MSR_HWP_CAPABILITIES
2387 */
2388int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2389{
2390 unsigned long long msr;
2391 int cpu;
2392
2393 if (!has_hwp)
2394 return 0;
2395
2396 cpu = t->cpu_id;
2397
2398 /* MSR_HWP_CAPABILITIES is per-package */
2399 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2400 return 0;
2401
2402 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002403 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05002404 return -1;
2405 }
2406
2407 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
2408 return 0;
2409
Len Brownb7d8c142016-02-13 23:36:17 -05002410 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05002411 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
2412
2413 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
2414 if ((msr & (1 << 0)) == 0)
2415 return 0;
2416
2417 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
2418 return 0;
2419
Len Brownb7d8c142016-02-13 23:36:17 -05002420 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002421 "(high 0x%x guar 0x%x eff 0x%x low 0x%x)\n",
2422 cpu, msr,
2423 (unsigned int)HWP_HIGHEST_PERF(msr),
2424 (unsigned int)HWP_GUARANTEED_PERF(msr),
2425 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
2426 (unsigned int)HWP_LOWEST_PERF(msr));
2427
2428 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
2429 return 0;
2430
Len Brownb7d8c142016-02-13 23:36:17 -05002431 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002432 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x pkg 0x%x)\n",
2433 cpu, msr,
2434 (unsigned int)(((msr) >> 0) & 0xff),
2435 (unsigned int)(((msr) >> 8) & 0xff),
2436 (unsigned int)(((msr) >> 16) & 0xff),
2437 (unsigned int)(((msr) >> 24) & 0xff),
2438 (unsigned int)(((msr) >> 32) & 0xff3),
2439 (unsigned int)(((msr) >> 42) & 0x1));
2440
2441 if (has_hwp_pkg) {
2442 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
2443 return 0;
2444
Len Brownb7d8c142016-02-13 23:36:17 -05002445 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002446 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x)\n",
2447 cpu, msr,
2448 (unsigned int)(((msr) >> 0) & 0xff),
2449 (unsigned int)(((msr) >> 8) & 0xff),
2450 (unsigned int)(((msr) >> 16) & 0xff),
2451 (unsigned int)(((msr) >> 24) & 0xff),
2452 (unsigned int)(((msr) >> 32) & 0xff3));
2453 }
2454 if (has_hwp_notify) {
2455 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
2456 return 0;
2457
Len Brownb7d8c142016-02-13 23:36:17 -05002458 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002459 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
2460 cpu, msr,
2461 ((msr) & 0x1) ? "EN" : "Dis",
2462 ((msr) & 0x2) ? "EN" : "Dis");
2463 }
2464 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
2465 return 0;
2466
Len Brownb7d8c142016-02-13 23:36:17 -05002467 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002468 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
2469 cpu, msr,
2470 ((msr) & 0x1) ? "" : "No-",
2471 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05002472
2473 return 0;
2474}
2475
Len Brown3a9a9412014-08-15 02:39:52 -04002476/*
2477 * print_perf_limit()
2478 */
2479int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2480{
2481 unsigned long long msr;
2482 int cpu;
2483
2484 cpu = t->cpu_id;
2485
2486 /* per-package */
2487 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2488 return 0;
2489
2490 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002491 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04002492 return -1;
2493 }
2494
2495 if (do_core_perf_limit_reasons) {
2496 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002497 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2498 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04002499 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002500 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002501 (msr & 1 << 13) ? "Transitions, " : "",
2502 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
2503 (msr & 1 << 11) ? "PkgPwrL2, " : "",
2504 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2505 (msr & 1 << 9) ? "CorePwr, " : "",
2506 (msr & 1 << 8) ? "Amps, " : "",
2507 (msr & 1 << 6) ? "VR-Therm, " : "",
2508 (msr & 1 << 5) ? "Auto-HWP, " : "",
2509 (msr & 1 << 4) ? "Graphics, " : "",
2510 (msr & 1 << 2) ? "bit2, " : "",
2511 (msr & 1 << 1) ? "ThermStatus, " : "",
2512 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002513 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 -04002514 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002515 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002516 (msr & 1 << 29) ? "Transitions, " : "",
2517 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
2518 (msr & 1 << 27) ? "PkgPwrL2, " : "",
2519 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2520 (msr & 1 << 25) ? "CorePwr, " : "",
2521 (msr & 1 << 24) ? "Amps, " : "",
2522 (msr & 1 << 22) ? "VR-Therm, " : "",
2523 (msr & 1 << 21) ? "Auto-HWP, " : "",
2524 (msr & 1 << 20) ? "Graphics, " : "",
2525 (msr & 1 << 18) ? "bit18, " : "",
2526 (msr & 1 << 17) ? "ThermStatus, " : "",
2527 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04002528
2529 }
2530 if (do_gfx_perf_limit_reasons) {
2531 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002532 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2533 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002534 (msr & 1 << 0) ? "PROCHOT, " : "",
2535 (msr & 1 << 1) ? "ThermStatus, " : "",
2536 (msr & 1 << 4) ? "Graphics, " : "",
2537 (msr & 1 << 6) ? "VR-Therm, " : "",
2538 (msr & 1 << 8) ? "Amps, " : "",
2539 (msr & 1 << 9) ? "GFXPwr, " : "",
2540 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2541 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002542 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002543 (msr & 1 << 16) ? "PROCHOT, " : "",
2544 (msr & 1 << 17) ? "ThermStatus, " : "",
2545 (msr & 1 << 20) ? "Graphics, " : "",
2546 (msr & 1 << 22) ? "VR-Therm, " : "",
2547 (msr & 1 << 24) ? "Amps, " : "",
2548 (msr & 1 << 25) ? "GFXPwr, " : "",
2549 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2550 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2551 }
2552 if (do_ring_perf_limit_reasons) {
2553 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002554 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2555 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002556 (msr & 1 << 0) ? "PROCHOT, " : "",
2557 (msr & 1 << 1) ? "ThermStatus, " : "",
2558 (msr & 1 << 6) ? "VR-Therm, " : "",
2559 (msr & 1 << 8) ? "Amps, " : "",
2560 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2561 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002562 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002563 (msr & 1 << 16) ? "PROCHOT, " : "",
2564 (msr & 1 << 17) ? "ThermStatus, " : "",
2565 (msr & 1 << 22) ? "VR-Therm, " : "",
2566 (msr & 1 << 24) ? "Amps, " : "",
2567 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2568 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2569 }
2570 return 0;
2571}
2572
Len Brown889facb2012-11-08 00:48:57 -05002573#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
2574#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
2575
Colin Ian King1b693172016-03-02 13:50:25 +00002576double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05002577{
2578 unsigned long long msr;
2579
2580 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002581 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05002582 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
2583
2584 switch (model) {
2585 case 0x37:
2586 case 0x4D:
2587 return 30.0;
2588 default:
2589 return 135.0;
2590 }
2591}
2592
Andrey Semin40ee8e32014-12-05 00:07:00 -05002593/*
2594 * rapl_dram_energy_units_probe()
2595 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
2596 */
2597static double
2598rapl_dram_energy_units_probe(int model, double rapl_energy_units)
2599{
2600 /* only called for genuine_intel, family 6 */
2601
2602 switch (model) {
2603 case 0x3F: /* HSX */
2604 case 0x4F: /* BDX */
2605 case 0x56: /* BDX-DE */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002606 case 0x57: /* KNL */
Andrey Semin40ee8e32014-12-05 00:07:00 -05002607 return (rapl_dram_energy_units = 15.3 / 1000000);
2608 default:
2609 return (rapl_energy_units);
2610 }
2611}
2612
Len Brown144b44b2013-11-09 00:30:16 -05002613
Len Brown889facb2012-11-08 00:48:57 -05002614/*
2615 * rapl_probe()
2616 *
Len Brown144b44b2013-11-09 00:30:16 -05002617 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05002618 */
2619void rapl_probe(unsigned int family, unsigned int model)
2620{
2621 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05002622 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05002623 double tdp;
2624
2625 if (!genuine_intel)
2626 return;
2627
2628 if (family != 6)
2629 return;
2630
2631 switch (model) {
2632 case 0x2A:
2633 case 0x3A:
Len Brown70b43402013-01-08 01:26:07 -05002634 case 0x3C: /* HSW */
Len Brown70b43402013-01-08 01:26:07 -05002635 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002636 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002637 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002638 case 0x47: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05002639 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown889facb2012-11-08 00:48:57 -05002640 break;
Len Browne4085d52016-04-06 17:15:56 -04002641 case 0x5C: /* BXT */
2642 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
2643 break;
Len Brown0b2bb692015-03-26 00:50:30 -04002644 case 0x4E: /* SKL */
2645 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002646 case 0x8E: /* KBL */
2647 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04002648 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
2649 break;
Len Browne6f9bb32013-12-03 02:19:19 -05002650 case 0x3F: /* HSX */
Len Brown4e8e863f2014-02-27 23:28:53 -05002651 case 0x4F: /* BDX */
2652 case 0x56: /* BDX-DE */
Len Brownec53e592016-04-06 17:15:58 -04002653 case 0x55: /* SKX */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002654 case 0x57: /* KNL */
Len Brown0b2bb692015-03-26 00:50:30 -04002655 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 -05002656 break;
Len Brown889facb2012-11-08 00:48:57 -05002657 case 0x2D:
2658 case 0x3E:
Len Brown0b2bb692015-03-26 00:50:30 -04002659 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 -05002660 break;
2661 case 0x37: /* BYT */
2662 case 0x4D: /* AVN */
Jacob Pan91484942016-06-16 09:48:20 -07002663 do_rapl = RAPL_PKG | RAPL_CORES;
Len Brown889facb2012-11-08 00:48:57 -05002664 break;
2665 default:
2666 return;
2667 }
2668
2669 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002670 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05002671 return;
2672
2673 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown144b44b2013-11-09 00:30:16 -05002674 if (model == 0x37)
2675 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
2676 else
2677 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05002678
Andrey Semin40ee8e32014-12-05 00:07:00 -05002679 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
2680
Len Brown144b44b2013-11-09 00:30:16 -05002681 time_unit = msr >> 16 & 0xF;
2682 if (time_unit == 0)
2683 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05002684
Len Brown144b44b2013-11-09 00:30:16 -05002685 rapl_time_units = 1.0 / (1 << (time_unit));
2686
2687 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05002688
2689 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brownd8af6f52015-02-10 01:56:38 -05002690 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05002691 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05002692
2693 return;
2694}
2695
Colin Ian King1b693172016-03-02 13:50:25 +00002696void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04002697{
2698 if (!genuine_intel)
2699 return;
2700
2701 if (family != 6)
2702 return;
2703
2704 switch (model) {
2705 case 0x3C: /* HSW */
2706 case 0x45: /* HSW */
2707 case 0x46: /* HSW */
2708 do_gfx_perf_limit_reasons = 1;
2709 case 0x3F: /* HSX */
2710 do_core_perf_limit_reasons = 1;
2711 do_ring_perf_limit_reasons = 1;
2712 default:
2713 return;
2714 }
2715}
2716
Len Brown889facb2012-11-08 00:48:57 -05002717int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2718{
2719 unsigned long long msr;
2720 unsigned int dts;
2721 int cpu;
2722
2723 if (!(do_dts || do_ptm))
2724 return 0;
2725
2726 cpu = t->cpu_id;
2727
2728 /* DTS is per-core, no need to print for each thread */
2729 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
2730 return 0;
2731
2732 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002733 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002734 return -1;
2735 }
2736
2737 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
2738 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
2739 return 0;
2740
2741 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002742 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002743 cpu, msr, tcc_activation_temp - dts);
2744
2745#ifdef THERM_DEBUG
2746 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
2747 return 0;
2748
2749 dts = (msr >> 16) & 0x7F;
2750 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002751 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002752 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2753#endif
2754 }
2755
2756
2757 if (do_dts) {
2758 unsigned int resolution;
2759
2760 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
2761 return 0;
2762
2763 dts = (msr >> 16) & 0x7F;
2764 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05002765 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05002766 cpu, msr, tcc_activation_temp - dts, resolution);
2767
2768#ifdef THERM_DEBUG
2769 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
2770 return 0;
2771
2772 dts = (msr >> 16) & 0x7F;
2773 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002774 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002775 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2776#endif
2777 }
2778
2779 return 0;
2780}
Len Brown36229892016-02-26 20:51:02 -05002781
Len Brown889facb2012-11-08 00:48:57 -05002782void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
2783{
Len Brownb7d8c142016-02-13 23:36:17 -05002784 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002785 cpu, label,
2786 ((msr >> 15) & 1) ? "EN" : "DIS",
2787 ((msr >> 0) & 0x7FFF) * rapl_power_units,
2788 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
2789 (((msr >> 16) & 1) ? "EN" : "DIS"));
2790
2791 return;
2792}
2793
2794int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2795{
2796 unsigned long long msr;
2797 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05002798
2799 if (!do_rapl)
2800 return 0;
2801
2802 /* RAPL counters are per package, so print only for 1st thread/package */
2803 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2804 return 0;
2805
2806 cpu = t->cpu_id;
2807 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002808 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002809 return -1;
2810 }
2811
2812 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
2813 return -1;
2814
Len Brownd8af6f52015-02-10 01:56:38 -05002815 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05002816 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx "
Len Brown889facb2012-11-08 00:48:57 -05002817 "(%f Watts, %f Joules, %f sec.)\n", cpu, msr,
Len Brown144b44b2013-11-09 00:30:16 -05002818 rapl_power_units, rapl_energy_units, rapl_time_units);
Len Brown889facb2012-11-08 00:48:57 -05002819 }
Len Brown144b44b2013-11-09 00:30:16 -05002820 if (do_rapl & RAPL_PKG_POWER_INFO) {
2821
Len Brown889facb2012-11-08 00:48:57 -05002822 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
2823 return -5;
2824
2825
Len Brownb7d8c142016-02-13 23:36:17 -05002826 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 -05002827 cpu, msr,
2828 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2829 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2830 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2831 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
2832
Len Brown144b44b2013-11-09 00:30:16 -05002833 }
2834 if (do_rapl & RAPL_PKG) {
2835
Len Brown889facb2012-11-08 00:48:57 -05002836 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
2837 return -9;
2838
Len Brownb7d8c142016-02-13 23:36:17 -05002839 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002840 cpu, msr, (msr >> 63) & 1 ? "": "UN");
2841
2842 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05002843 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002844 cpu,
2845 ((msr >> 47) & 1) ? "EN" : "DIS",
2846 ((msr >> 32) & 0x7FFF) * rapl_power_units,
2847 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
2848 ((msr >> 48) & 1) ? "EN" : "DIS");
2849 }
2850
Len Brown0b2bb692015-03-26 00:50:30 -04002851 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05002852 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
2853 return -6;
2854
Len Brownb7d8c142016-02-13 23:36:17 -05002855 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 -05002856 cpu, msr,
2857 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2858 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2859 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2860 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04002861 }
2862 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05002863 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
2864 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002865 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002866 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2867
2868 print_power_limit_msr(cpu, msr, "DRAM Limit");
2869 }
Len Brown144b44b2013-11-09 00:30:16 -05002870 if (do_rapl & RAPL_CORE_POLICY) {
Len Brownd8af6f52015-02-10 01:56:38 -05002871 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002872 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
2873 return -7;
2874
Len Brownb7d8c142016-02-13 23:36:17 -05002875 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05002876 }
2877 }
Jacob Pan91484942016-06-16 09:48:20 -07002878 if (do_rapl & RAPL_CORES_POWER_LIMIT) {
Len Brownd8af6f52015-02-10 01:56:38 -05002879 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002880 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
2881 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002882 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002883 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2884 print_power_limit_msr(cpu, msr, "Cores Limit");
2885 }
2886 }
2887 if (do_rapl & RAPL_GFX) {
Len Brownd8af6f52015-02-10 01:56:38 -05002888 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002889 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
2890 return -8;
2891
Len Brownb7d8c142016-02-13 23:36:17 -05002892 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05002893
2894 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
2895 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002896 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002897 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2898 print_power_limit_msr(cpu, msr, "GFX Limit");
2899 }
2900 }
2901 return 0;
2902}
2903
Len Brownd7899442015-01-23 00:12:33 -05002904/*
2905 * SNB adds support for additional MSRs:
2906 *
2907 * MSR_PKG_C7_RESIDENCY 0x000003fa
2908 * MSR_CORE_C7_RESIDENCY 0x000003fe
2909 * MSR_PKG_C2_RESIDENCY 0x0000060d
2910 */
Len Brown103a8fe2010-10-22 23:53:03 -04002911
Len Brownd7899442015-01-23 00:12:33 -05002912int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002913{
2914 if (!genuine_intel)
2915 return 0;
2916
2917 switch (model) {
2918 case 0x2A:
2919 case 0x2D:
Len Brown650a37f2012-06-03 23:34:44 -04002920 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002921 case 0x3E: /* IVB Xeon */
Len Brown70b43402013-01-08 01:26:07 -05002922 case 0x3C: /* HSW */
2923 case 0x3F: /* HSW */
2924 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002925 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002926 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002927 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002928 case 0x4F: /* BDX */
2929 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002930 case 0x4E: /* SKL */
2931 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002932 case 0x8E: /* KBL */
2933 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002934 case 0x55: /* SKX */
Len Browne4085d52016-04-06 17:15:56 -04002935 case 0x5C: /* BXT */
Len Brown103a8fe2010-10-22 23:53:03 -04002936 return 1;
2937 }
2938 return 0;
2939}
2940
Len Brownd7899442015-01-23 00:12:33 -05002941/*
2942 * HSW adds support for additional MSRs:
2943 *
Len Brown5a634262016-04-06 17:15:55 -04002944 * MSR_PKG_C8_RESIDENCY 0x00000630
2945 * MSR_PKG_C9_RESIDENCY 0x00000631
2946 * MSR_PKG_C10_RESIDENCY 0x00000632
2947 *
2948 * MSR_PKGC8_IRTL 0x00000633
2949 * MSR_PKGC9_IRTL 0x00000634
2950 * MSR_PKGC10_IRTL 0x00000635
2951 *
Len Brownd7899442015-01-23 00:12:33 -05002952 */
2953int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002954{
2955 if (!genuine_intel)
2956 return 0;
2957
2958 switch (model) {
Len Brown4e8e863f2014-02-27 23:28:53 -05002959 case 0x45: /* HSW */
2960 case 0x3D: /* BDW */
Len Brown0b2bb692015-03-26 00:50:30 -04002961 case 0x4E: /* SKL */
2962 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002963 case 0x8E: /* KBL */
2964 case 0x9E: /* KBL */
Len Browne4085d52016-04-06 17:15:56 -04002965 case 0x5C: /* BXT */
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002966 return 1;
2967 }
2968 return 0;
2969}
2970
Len Brown0b2bb692015-03-26 00:50:30 -04002971/*
2972 * SKL adds support for additional MSRS:
2973 *
2974 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
2975 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
2976 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
2977 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
2978 */
2979int has_skl_msrs(unsigned int family, unsigned int model)
2980{
2981 if (!genuine_intel)
2982 return 0;
2983
2984 switch (model) {
2985 case 0x4E: /* SKL */
2986 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002987 case 0x8E: /* KBL */
2988 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04002989 return 1;
2990 }
2991 return 0;
2992}
2993
2994
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002995
Len Brown144b44b2013-11-09 00:30:16 -05002996int is_slm(unsigned int family, unsigned int model)
2997{
2998 if (!genuine_intel)
2999 return 0;
3000 switch (model) {
3001 case 0x37: /* BYT */
3002 case 0x4D: /* AVN */
3003 return 1;
3004 }
3005 return 0;
3006}
3007
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003008int is_knl(unsigned int family, unsigned int model)
3009{
3010 if (!genuine_intel)
3011 return 0;
3012 switch (model) {
3013 case 0x57: /* KNL */
3014 return 1;
3015 }
3016 return 0;
3017}
3018
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003019unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3020{
3021 if (is_knl(family, model))
3022 return 1024;
3023 return 1;
3024}
3025
Len Brown144b44b2013-11-09 00:30:16 -05003026#define SLM_BCLK_FREQS 5
3027double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3028
3029double slm_bclk(void)
3030{
3031 unsigned long long msr = 3;
3032 unsigned int i;
3033 double freq;
3034
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003035 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003036 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05003037
3038 i = msr & 0xf;
3039 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05003040 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Colin Ian King0a91e552016-04-25 13:03:15 +01003041 i = 3;
Len Brown144b44b2013-11-09 00:30:16 -05003042 }
3043 freq = slm_freq_table[i];
3044
Len Brownb7d8c142016-02-13 23:36:17 -05003045 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05003046
3047 return freq;
3048}
3049
Len Brown103a8fe2010-10-22 23:53:03 -04003050double discover_bclk(unsigned int family, unsigned int model)
3051{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01003052 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04003053 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05003054 else if (is_slm(family, model))
3055 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04003056 else
3057 return 133.33;
3058}
3059
Len Brown889facb2012-11-08 00:48:57 -05003060/*
3061 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3062 * the Thermal Control Circuit (TCC) activates.
3063 * This is usually equal to tjMax.
3064 *
3065 * Older processors do not have this MSR, so there we guess,
3066 * but also allow cmdline over-ride with -T.
3067 *
3068 * Several MSR temperature values are in units of degrees-C
3069 * below this value, including the Digital Thermal Sensor (DTS),
3070 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3071 */
3072int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3073{
3074 unsigned long long msr;
3075 unsigned int target_c_local;
3076 int cpu;
3077
3078 /* tcc_activation_temp is used only for dts or ptm */
3079 if (!(do_dts || do_ptm))
3080 return 0;
3081
3082 /* this is a per-package concept */
3083 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3084 return 0;
3085
3086 cpu = t->cpu_id;
3087 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003088 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003089 return -1;
3090 }
3091
3092 if (tcc_activation_temp_override != 0) {
3093 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05003094 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003095 cpu, tcc_activation_temp);
3096 return 0;
3097 }
3098
3099 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05003100 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05003101 goto guess;
3102
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003103 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003104 goto guess;
3105
Jean Delvare34821242014-05-01 11:40:19 +02003106 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05003107
Len Brownd8af6f52015-02-10 01:56:38 -05003108 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003109 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003110 cpu, msr, target_c_local);
3111
Jean Delvare34821242014-05-01 11:40:19 +02003112 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05003113 goto guess;
3114
3115 tcc_activation_temp = target_c_local;
3116
3117 return 0;
3118
3119guess:
3120 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05003121 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05003122 cpu, tcc_activation_temp);
3123
3124 return 0;
3125}
Len Brown69807a62015-11-21 12:22:47 -05003126
Len Brownaa8d8cc2016-03-11 13:26:03 -05003127void decode_feature_control_msr(void)
3128{
3129 unsigned long long msr;
3130
3131 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3132 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3133 base_cpu, msr,
3134 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3135 msr & (1 << 18) ? "SGX" : "");
3136}
3137
Len Brown69807a62015-11-21 12:22:47 -05003138void decode_misc_enable_msr(void)
3139{
3140 unsigned long long msr;
3141
3142 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003143 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%s %s %s)\n",
Len Brown69807a62015-11-21 12:22:47 -05003144 base_cpu, msr,
3145 msr & (1 << 3) ? "TCC" : "",
3146 msr & (1 << 16) ? "EIST" : "",
3147 msr & (1 << 18) ? "MONITOR" : "");
3148}
3149
Len Brownf0057312015-12-03 01:35:36 -05003150/*
3151 * Decode MSR_MISC_PWR_MGMT
3152 *
3153 * Decode the bits according to the Nehalem documentation
3154 * bit[0] seems to continue to have same meaning going forward
3155 * bit[1] less so...
3156 */
3157void decode_misc_pwr_mgmt_msr(void)
3158{
3159 unsigned long long msr;
3160
3161 if (!do_nhm_platform_info)
3162 return;
3163
3164 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003165 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB)\n",
Len Brownf0057312015-12-03 01:35:36 -05003166 base_cpu, msr,
3167 msr & (1 << 0) ? "DIS" : "EN",
3168 msr & (1 << 1) ? "EN" : "DIS");
3169}
Len Brown7f5c2582015-12-01 01:36:39 -05003170
Len Brownfcd17212015-03-23 20:29:09 -04003171void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04003172{
Len Brown61a87ba2015-11-23 02:30:51 -05003173 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04003174 unsigned int fms, family, model, stepping;
3175
3176 eax = ebx = ecx = edx = 0;
3177
Len Brown5aea2f72016-03-13 03:14:35 -04003178 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003179
3180 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
3181 genuine_intel = 1;
3182
Len Brownd8af6f52015-02-10 01:56:38 -05003183 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003184 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04003185 (char *)&ebx, (char *)&edx, (char *)&ecx);
3186
Len Brown5aea2f72016-03-13 03:14:35 -04003187 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003188 family = (fms >> 8) & 0xf;
3189 model = (fms >> 4) & 0xf;
3190 stepping = fms & 0xf;
3191 if (family == 6 || family == 0xf)
3192 model += ((fms >> 16) & 0xf) << 4;
3193
Len Brown69807a62015-11-21 12:22:47 -05003194 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05003195 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04003196 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05003197 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05003198 ecx & (1 << 0) ? "SSE3" : "-",
3199 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05003200 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05003201 ecx & (1 << 7) ? "EIST" : "-",
3202 ecx & (1 << 8) ? "TM2" : "-",
3203 edx & (1 << 4) ? "TSC" : "-",
3204 edx & (1 << 5) ? "MSR" : "-",
3205 edx & (1 << 22) ? "ACPI-TM" : "-",
3206 edx & (1 << 29) ? "TM" : "-");
3207 }
Len Brown103a8fe2010-10-22 23:53:03 -04003208
Josh Triplettb2c95d92013-08-20 17:20:18 -07003209 if (!(edx & (1 << 5)))
3210 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04003211
3212 /*
3213 * check max extended function levels of CPUID.
3214 * This is needed to check for invariant TSC.
3215 * This check is valid for both Intel and AMD.
3216 */
3217 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003218 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003219
Len Brown61a87ba2015-11-23 02:30:51 -05003220 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04003221
Len Brownd7899442015-01-23 00:12:33 -05003222 /*
3223 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
3224 * this check is valid for both Intel and AMD
3225 */
Len Brown5aea2f72016-03-13 03:14:35 -04003226 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05003227 has_invariant_tsc = edx & (1 << 8);
3228 }
Len Brown103a8fe2010-10-22 23:53:03 -04003229
3230 /*
3231 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
3232 * this check is valid for both Intel and AMD
3233 */
3234
Len Brown5aea2f72016-03-13 03:14:35 -04003235 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01003236 has_aperf = ecx & (1 << 0);
Len Brown889facb2012-11-08 00:48:57 -05003237 do_dts = eax & (1 << 0);
3238 do_ptm = eax & (1 << 6);
Len Brown7f5c2582015-12-01 01:36:39 -05003239 has_hwp = eax & (1 << 7);
3240 has_hwp_notify = eax & (1 << 8);
3241 has_hwp_activity_window = eax & (1 << 9);
3242 has_hwp_epp = eax & (1 << 10);
3243 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05003244 has_epb = ecx & (1 << 3);
3245
Len Brownd8af6f52015-02-10 01:56:38 -05003246 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003247 fprintf(outf, "CPUID(6): %sAPERF, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05003248 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
3249 has_aperf ? "" : "No-",
3250 do_dts ? "" : "No-",
3251 do_ptm ? "" : "No-",
3252 has_hwp ? "" : "No-",
3253 has_hwp_notify ? "" : "No-",
3254 has_hwp_activity_window ? "" : "No-",
3255 has_hwp_epp ? "" : "No-",
3256 has_hwp_pkg ? "" : "No-",
3257 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04003258
Len Brown69807a62015-11-21 12:22:47 -05003259 if (debug)
3260 decode_misc_enable_msr();
3261
Len Brown8ae72252016-04-06 17:15:54 -04003262 if (max_level >= 0x7 && debug) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05003263 int has_sgx;
3264
3265 ecx = 0;
3266
3267 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
3268
3269 has_sgx = ebx & (1 << 2);
3270 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
3271
3272 if (has_sgx)
3273 decode_feature_control_msr();
3274 }
3275
Len Brown61a87ba2015-11-23 02:30:51 -05003276 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04003277 unsigned int eax_crystal;
3278 unsigned int ebx_tsc;
3279
3280 /*
3281 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
3282 */
3283 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003284 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04003285
3286 if (ebx_tsc != 0) {
3287
3288 if (debug && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05003289 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003290 eax_crystal, ebx_tsc, crystal_hz);
3291
3292 if (crystal_hz == 0)
3293 switch(model) {
3294 case 0x4E: /* SKL */
3295 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04003296 case 0x8E: /* KBL */
3297 case 0x9E: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04003298 crystal_hz = 24000000; /* 24.0 MHz */
3299 break;
Len Brownec53e592016-04-06 17:15:58 -04003300 case 0x55: /* SKX */
3301 crystal_hz = 25000000; /* 25.0 MHz */
3302 break;
Len Browne8efbc82016-04-06 17:15:57 -04003303 case 0x5C: /* BXT */
3304 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04003305 break;
3306 default:
3307 crystal_hz = 0;
3308 }
3309
3310 if (crystal_hz) {
3311 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
3312 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003313 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003314 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
3315 }
3316 }
3317 }
Len Brown61a87ba2015-11-23 02:30:51 -05003318 if (max_level >= 0x16) {
3319 unsigned int base_mhz, max_mhz, bus_mhz, edx;
3320
3321 /*
3322 * CPUID 16H Base MHz, Max MHz, Bus MHz
3323 */
3324 base_mhz = max_mhz = bus_mhz = edx = 0;
3325
Len Brown5aea2f72016-03-13 03:14:35 -04003326 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown61a87ba2015-11-23 02:30:51 -05003327 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003328 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05003329 base_mhz, max_mhz, bus_mhz);
3330 }
Len Brown8a5bdf42015-04-01 21:02:57 -04003331
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003332 if (has_aperf)
3333 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
3334
Len Brownee7e38e2015-02-09 23:39:45 -05003335 do_nhm_platform_info = do_nhm_cstates = do_smi = probe_nhm_msrs(family, model);
Len Brownd7899442015-01-23 00:12:33 -05003336 do_snb_cstates = has_snb_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003337 do_irtl_snb = has_snb_msrs(family, model);
Len Brownee7e38e2015-02-09 23:39:45 -05003338 do_pc2 = do_snb_cstates && (pkg_cstate_limit >= PCL__2);
3339 do_pc3 = (pkg_cstate_limit >= PCL__3);
3340 do_pc6 = (pkg_cstate_limit >= PCL__6);
3341 do_pc7 = do_snb_cstates && (pkg_cstate_limit >= PCL__7);
Len Brownd7899442015-01-23 00:12:33 -05003342 do_c8_c9_c10 = has_hsw_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003343 do_irtl_hsw = has_hsw_msrs(family, model);
Len Brown0b2bb692015-03-26 00:50:30 -04003344 do_skl_residency = has_skl_msrs(family, model);
Len Brown144b44b2013-11-09 00:30:16 -05003345 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003346 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04003347
Len Brownf0057312015-12-03 01:35:36 -05003348 if (debug)
3349 decode_misc_pwr_mgmt_msr();
3350
Len Brown889facb2012-11-08 00:48:57 -05003351 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04003352 perf_limit_reasons_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05003353
Len Brownfcd17212015-03-23 20:29:09 -04003354 if (debug)
Colin Ian King1b693172016-03-02 13:50:25 +00003355 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04003356
Len Browna2b7b742015-09-26 00:12:38 -04003357 if (has_skl_msrs(family, model))
3358 calculate_tsc_tweak();
3359
Len Brownfdf676e2016-02-27 01:28:12 -05003360 do_gfx_rc6_ms = !access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK);
3361
Len Brown27d47352016-02-27 00:37:54 -05003362 do_gfx_mhz = !access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK);
3363
Len Brown889facb2012-11-08 00:48:57 -05003364 return;
Len Brown103a8fe2010-10-22 23:53:03 -04003365}
3366
Len Brownd8af6f52015-02-10 01:56:38 -05003367void help()
Len Brown103a8fe2010-10-22 23:53:03 -04003368{
Len Brownb7d8c142016-02-13 23:36:17 -05003369 fprintf(outf,
Len Brownd8af6f52015-02-10 01:56:38 -05003370 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
3371 "\n"
3372 "Turbostat forks the specified COMMAND and prints statistics\n"
3373 "when COMMAND completes.\n"
3374 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
3375 "to print statistics, until interrupted.\n"
3376 "--debug run in \"debug\" mode\n"
3377 "--interval sec Override default 5-second measurement interval\n"
3378 "--help print this help message\n"
3379 "--counter msr print 32-bit counter at address \"msr\"\n"
3380 "--Counter msr print 64-bit Counter at address \"msr\"\n"
Len Brownb7d8c142016-02-13 23:36:17 -05003381 "--out file create or truncate \"file\" for all output\n"
Len Brownd8af6f52015-02-10 01:56:38 -05003382 "--msr msr print 32-bit value at address \"msr\"\n"
3383 "--MSR msr print 64-bit Value at address \"msr\"\n"
3384 "--version print version information\n"
3385 "\n"
3386 "For more help, run \"man turbostat\"\n");
Len Brown103a8fe2010-10-22 23:53:03 -04003387}
3388
3389
3390/*
3391 * in /dev/cpu/ return success for names that are numbers
3392 * ie. filter out ".", "..", "microcode".
3393 */
3394int dir_filter(const struct dirent *dirp)
3395{
3396 if (isdigit(dirp->d_name[0]))
3397 return 1;
3398 else
3399 return 0;
3400}
3401
3402int open_dev_cpu_msr(int dummy1)
3403{
3404 return 0;
3405}
3406
Len Brownc98d5d92012-06-04 00:56:40 -04003407void topology_probe()
3408{
3409 int i;
3410 int max_core_id = 0;
3411 int max_package_id = 0;
3412 int max_siblings = 0;
3413 struct cpu_topology {
3414 int core_id;
3415 int physical_package_id;
3416 } *cpus;
3417
3418 /* Initialize num_cpus, max_cpu_num */
3419 topo.num_cpus = 0;
3420 topo.max_cpu_num = 0;
3421 for_all_proc_cpus(count_cpus);
3422 if (!summary_only && topo.num_cpus > 1)
3423 show_cpu = 1;
3424
Len Brownd8af6f52015-02-10 01:56:38 -05003425 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003426 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04003427
3428 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003429 if (cpus == NULL)
3430 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04003431
3432 /*
3433 * Allocate and initialize cpu_present_set
3434 */
3435 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003436 if (cpu_present_set == NULL)
3437 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003438 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3439 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
3440 for_all_proc_cpus(mark_cpu_present);
3441
3442 /*
3443 * Allocate and initialize cpu_affinity_set
3444 */
3445 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003446 if (cpu_affinity_set == NULL)
3447 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003448 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3449 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
3450
3451
3452 /*
3453 * For online cpus
3454 * find max_core_id, max_package_id
3455 */
3456 for (i = 0; i <= topo.max_cpu_num; ++i) {
3457 int siblings;
3458
3459 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05003460 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003461 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04003462 continue;
3463 }
3464 cpus[i].core_id = get_core_id(i);
3465 if (cpus[i].core_id > max_core_id)
3466 max_core_id = cpus[i].core_id;
3467
3468 cpus[i].physical_package_id = get_physical_package_id(i);
3469 if (cpus[i].physical_package_id > max_package_id)
3470 max_package_id = cpus[i].physical_package_id;
3471
3472 siblings = get_num_ht_siblings(i);
3473 if (siblings > max_siblings)
3474 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003475 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003476 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003477 i, cpus[i].physical_package_id, cpus[i].core_id);
3478 }
3479 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003480 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003481 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003482 max_core_id, topo.num_cores_per_pkg);
Len Brown1cc21f72015-02-23 00:34:57 -05003483 if (debug && !summary_only && topo.num_cores_per_pkg > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003484 show_core = 1;
3485
3486 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003487 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003488 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003489 max_package_id, topo.num_packages);
Len Brown1cc21f72015-02-23 00:34:57 -05003490 if (debug && !summary_only && topo.num_packages > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003491 show_pkg = 1;
3492
3493 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003494 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003495 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04003496
3497 free(cpus);
3498}
3499
3500void
3501allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
3502{
3503 int i;
3504
3505 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
3506 topo.num_packages, sizeof(struct thread_data));
3507 if (*t == NULL)
3508 goto error;
3509
3510 for (i = 0; i < topo.num_threads_per_core *
3511 topo.num_cores_per_pkg * topo.num_packages; i++)
3512 (*t)[i].cpu_id = -1;
3513
3514 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
3515 sizeof(struct core_data));
3516 if (*c == NULL)
3517 goto error;
3518
3519 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
3520 (*c)[i].core_id = -1;
3521
3522 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
3523 if (*p == NULL)
3524 goto error;
3525
3526 for (i = 0; i < topo.num_packages; i++)
3527 (*p)[i].package_id = i;
3528
3529 return;
3530error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07003531 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04003532}
3533/*
3534 * init_counter()
3535 *
3536 * set cpu_id, core_num, pkg_num
3537 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
3538 *
3539 * increment topo.num_cores when 1st core in pkg seen
3540 */
3541void init_counter(struct thread_data *thread_base, struct core_data *core_base,
3542 struct pkg_data *pkg_base, int thread_num, int core_num,
3543 int pkg_num, int cpu_id)
3544{
3545 struct thread_data *t;
3546 struct core_data *c;
3547 struct pkg_data *p;
3548
3549 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
3550 c = GET_CORE(core_base, core_num, pkg_num);
3551 p = GET_PKG(pkg_base, pkg_num);
3552
3553 t->cpu_id = cpu_id;
3554 if (thread_num == 0) {
3555 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
3556 if (cpu_is_first_core_in_package(cpu_id))
3557 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
3558 }
3559
3560 c->core_id = core_num;
3561 p->package_id = pkg_num;
3562}
3563
3564
3565int initialize_counters(int cpu_id)
3566{
3567 int my_thread_id, my_core_id, my_package_id;
3568
3569 my_package_id = get_physical_package_id(cpu_id);
3570 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07003571 my_thread_id = get_cpu_position_in_core(cpu_id);
3572 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04003573 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04003574
3575 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3576 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3577 return 0;
3578}
3579
3580void allocate_output_buffer()
3581{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003582 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04003583 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07003584 if (outp == NULL)
3585 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04003586}
Len Brown36229892016-02-26 20:51:02 -05003587void allocate_fd_percpu(void)
3588{
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003589 fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown36229892016-02-26 20:51:02 -05003590 if (fd_percpu == NULL)
3591 err(-1, "calloc fd_percpu");
3592}
Len Brown562a2d32016-02-26 23:48:05 -05003593void allocate_irq_buffers(void)
3594{
3595 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
3596 if (irq_column_2_cpu == NULL)
3597 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04003598
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003599 irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown562a2d32016-02-26 23:48:05 -05003600 if (irqs_per_cpu == NULL)
Mika Westerberg01a67ad2016-04-22 11:13:23 +03003601 err(-1, "calloc %d", topo.max_cpu_num + 1);
Len Brown562a2d32016-02-26 23:48:05 -05003602}
Len Brownc98d5d92012-06-04 00:56:40 -04003603void setup_all_buffers(void)
3604{
3605 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05003606 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05003607 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04003608 allocate_counters(&thread_even, &core_even, &package_even);
3609 allocate_counters(&thread_odd, &core_odd, &package_odd);
3610 allocate_output_buffer();
3611 for_all_proc_cpus(initialize_counters);
3612}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003613
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003614void set_base_cpu(void)
3615{
3616 base_cpu = sched_getcpu();
3617 if (base_cpu < 0)
3618 err(-ENODEV, "No valid cpus found");
3619
3620 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003621 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003622}
3623
Len Brown103a8fe2010-10-22 23:53:03 -04003624void turbostat_init()
3625{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003626 setup_all_buffers();
3627 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04003628 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04003629 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04003630 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04003631
Len Brown103a8fe2010-10-22 23:53:03 -04003632
Len Brownd8af6f52015-02-10 01:56:38 -05003633 if (debug)
Len Brown7f5c2582015-12-01 01:36:39 -05003634 for_all_cpus(print_hwp, ODD_COUNTERS);
3635
3636 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003637 for_all_cpus(print_epb, ODD_COUNTERS);
3638
Len Brownd8af6f52015-02-10 01:56:38 -05003639 if (debug)
Len Brown3a9a9412014-08-15 02:39:52 -04003640 for_all_cpus(print_perf_limit, ODD_COUNTERS);
3641
Len Brownd8af6f52015-02-10 01:56:38 -05003642 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003643 for_all_cpus(print_rapl, ODD_COUNTERS);
3644
3645 for_all_cpus(set_temperature_target, ODD_COUNTERS);
3646
Len Brownd8af6f52015-02-10 01:56:38 -05003647 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003648 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04003649
3650 if (debug && do_irtl_snb)
3651 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04003652}
3653
3654int fork_it(char **argv)
3655{
Len Brown103a8fe2010-10-22 23:53:03 -04003656 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04003657 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04003658
Len Brownd91bb172012-11-01 00:08:19 -04003659 status = for_all_cpus(get_counters, EVEN_COUNTERS);
3660 if (status)
3661 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04003662 /* clear affinity side-effect of get_counters() */
3663 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04003664 gettimeofday(&tv_even, (struct timezone *)NULL);
3665
3666 child_pid = fork();
3667 if (!child_pid) {
3668 /* child */
3669 execvp(argv[0], argv);
3670 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04003671
3672 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07003673 if (child_pid == -1)
3674 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04003675
3676 signal(SIGINT, SIG_IGN);
3677 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07003678 if (waitpid(child_pid, &status, 0) == -1)
3679 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04003680 }
Len Brownc98d5d92012-06-04 00:56:40 -04003681 /*
3682 * n.b. fork_it() does not check for errors from for_all_cpus()
3683 * because re-starting is problematic when forking
3684 */
3685 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04003686 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04003687 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04003688 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
3689 fprintf(outf, "%s: Counter reset detected\n", progname);
3690 else {
3691 compute_average(EVEN_COUNTERS);
3692 format_all_counters(EVEN_COUNTERS);
3693 }
Len Brown103a8fe2010-10-22 23:53:03 -04003694
Len Brownb7d8c142016-02-13 23:36:17 -05003695 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
3696
3697 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04003698
Len Brownd91bb172012-11-01 00:08:19 -04003699 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04003700}
3701
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003702int get_and_dump_counters(void)
3703{
3704 int status;
3705
3706 status = for_all_cpus(get_counters, ODD_COUNTERS);
3707 if (status)
3708 return status;
3709
3710 status = for_all_cpus(dump_counters, ODD_COUNTERS);
3711 if (status)
3712 return status;
3713
Len Brownb7d8c142016-02-13 23:36:17 -05003714 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003715
3716 return status;
3717}
3718
Len Brownd8af6f52015-02-10 01:56:38 -05003719void print_version() {
Len Brown3d109de2016-04-22 23:24:27 -04003720 fprintf(outf, "turbostat version 4.14 22 Apr 2016"
Len Brownd8af6f52015-02-10 01:56:38 -05003721 " - Len Brown <lenb@kernel.org>\n");
3722}
3723
Len Brown103a8fe2010-10-22 23:53:03 -04003724void cmdline(int argc, char **argv)
3725{
3726 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05003727 int option_index = 0;
3728 static struct option long_options[] = {
3729 {"Counter", required_argument, 0, 'C'},
3730 {"counter", required_argument, 0, 'c'},
3731 {"Dump", no_argument, 0, 'D'},
3732 {"debug", no_argument, 0, 'd'},
3733 {"interval", required_argument, 0, 'i'},
3734 {"help", no_argument, 0, 'h'},
3735 {"Joules", no_argument, 0, 'J'},
3736 {"MSR", required_argument, 0, 'M'},
3737 {"msr", required_argument, 0, 'm'},
Len Brownb7d8c142016-02-13 23:36:17 -05003738 {"out", required_argument, 0, 'o'},
Len Brownd8af6f52015-02-10 01:56:38 -05003739 {"Package", no_argument, 0, 'p'},
3740 {"processor", no_argument, 0, 'p'},
3741 {"Summary", no_argument, 0, 'S'},
3742 {"TCC", required_argument, 0, 'T'},
3743 {"version", no_argument, 0, 'v' },
3744 {0, 0, 0, 0 }
3745 };
Len Brown103a8fe2010-10-22 23:53:03 -04003746
3747 progname = argv[0];
3748
Len Brownb7d8c142016-02-13 23:36:17 -05003749 while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:PpST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05003750 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04003751 switch (opt) {
Len Brownd8af6f52015-02-10 01:56:38 -05003752 case 'C':
3753 sscanf(optarg, "%x", &extra_delta_offset64);
Len Brown103a8fe2010-10-22 23:53:03 -04003754 break;
Len Brownf9240812012-10-06 15:26:31 -04003755 case 'c':
Len Brown8e180f32012-09-22 01:25:08 -04003756 sscanf(optarg, "%x", &extra_delta_offset32);
3757 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003758 case 'D':
3759 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04003760 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003761 case 'd':
3762 debug++;
Len Brown2f32edf2012-09-21 23:45:46 -04003763 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003764 case 'h':
3765 default:
3766 help();
3767 exit(1);
3768 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05003769 {
3770 double interval = strtod(optarg, NULL);
3771
3772 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05003773 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05003774 interval);
3775 exit(2);
3776 }
3777
3778 interval_ts.tv_sec = interval;
3779 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
3780 }
Len Brown889facb2012-11-08 00:48:57 -05003781 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08003782 case 'J':
3783 rapl_joules++;
3784 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003785 case 'M':
3786 sscanf(optarg, "%x", &extra_msr_offset64);
3787 break;
3788 case 'm':
3789 sscanf(optarg, "%x", &extra_msr_offset32);
3790 break;
Len Brownb7d8c142016-02-13 23:36:17 -05003791 case 'o':
3792 outf = fopen_or_die(optarg, "w");
3793 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003794 case 'P':
3795 show_pkg_only++;
3796 break;
3797 case 'p':
3798 show_core_only++;
3799 break;
3800 case 'S':
3801 summary_only++;
3802 break;
3803 case 'T':
3804 tcc_activation_temp_override = atoi(optarg);
3805 break;
3806 case 'v':
3807 print_version();
3808 exit(0);
3809 break;
Len Brown103a8fe2010-10-22 23:53:03 -04003810 }
3811 }
3812}
3813
3814int main(int argc, char **argv)
3815{
Len Brownb7d8c142016-02-13 23:36:17 -05003816 outf = stderr;
3817
Len Brown103a8fe2010-10-22 23:53:03 -04003818 cmdline(argc, argv);
3819
Len Brownd8af6f52015-02-10 01:56:38 -05003820 if (debug)
3821 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04003822
3823 turbostat_init();
3824
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003825 /* dump counters and exit */
3826 if (dump_only)
3827 return get_and_dump_counters();
3828
Len Brown103a8fe2010-10-22 23:53:03 -04003829 /*
3830 * if any params left, it must be a command to fork
3831 */
3832 if (argc - optind)
3833 return fork_it(argv + optind);
3834 else
3835 turbostat_loop();
3836
3837 return 0;
3838}