blob: acbf7ff2ee6eed9b1ea38548d3ac5f96c50b65be [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 skip_c0;
55unsigned int skip_c1;
56unsigned int do_nhm_cstates;
57unsigned int do_snb_cstates;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -070058unsigned int do_knl_cstates;
Len Brownee7e38e2015-02-09 23:39:45 -050059unsigned int do_pc2;
60unsigned int do_pc3;
61unsigned int do_pc6;
62unsigned int do_pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -080063unsigned int do_c8_c9_c10;
Len Brown0b2bb692015-03-26 00:50:30 -040064unsigned int do_skl_residency;
Len Brown144b44b2013-11-09 00:30:16 -050065unsigned int do_slm_cstates;
66unsigned int use_c1_residency_msr;
Len Brown103a8fe2010-10-22 23:53:03 -040067unsigned int has_aperf;
Len Brown889facb2012-11-08 00:48:57 -050068unsigned int has_epb;
Len Brown5a634262016-04-06 17:15:55 -040069unsigned int do_irtl_snb;
70unsigned int do_irtl_hsw;
Len Brownfc04cc62014-02-06 00:55:19 -050071unsigned int units = 1000000; /* MHz etc */
Len Brown103a8fe2010-10-22 23:53:03 -040072unsigned int genuine_intel;
73unsigned int has_invariant_tsc;
Len Brownd7899442015-01-23 00:12:33 -050074unsigned int do_nhm_platform_info;
Len Brown2f32edf2012-09-21 23:45:46 -040075unsigned int extra_msr_offset32;
76unsigned int extra_msr_offset64;
Len Brown8e180f32012-09-22 01:25:08 -040077unsigned int extra_delta_offset32;
78unsigned int extra_delta_offset64;
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +020079unsigned int aperf_mperf_multiplier = 1;
Len Brown562a2d32016-02-26 23:48:05 -050080int do_irq = 1;
Len Brown1ed51012013-02-10 17:19:24 -050081int do_smi;
Len Brown103a8fe2010-10-22 23:53:03 -040082double bclk;
Len Browna2b7b742015-09-26 00:12:38 -040083double base_hz;
Len Brown21ed5572015-10-19 22:37:40 -040084unsigned int has_base_hz;
Len Browna2b7b742015-09-26 00:12:38 -040085double tsc_tweak = 1.0;
Len Brown103a8fe2010-10-22 23:53:03 -040086unsigned int show_pkg;
87unsigned int show_core;
88unsigned int show_cpu;
Len Brownc98d5d92012-06-04 00:56:40 -040089unsigned int show_pkg_only;
90unsigned int show_core_only;
91char *output_buffer, *outp;
Len Brown889facb2012-11-08 00:48:57 -050092unsigned int do_rapl;
93unsigned int do_dts;
94unsigned int do_ptm;
Len Brownfdf676e2016-02-27 01:28:12 -050095unsigned int do_gfx_rc6_ms;
96unsigned long long gfx_cur_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -050097unsigned int do_gfx_mhz;
98unsigned int gfx_cur_mhz;
Len Brown889facb2012-11-08 00:48:57 -050099unsigned int tcc_activation_temp;
100unsigned int tcc_activation_temp_override;
Andrey Semin40ee8e32014-12-05 00:07:00 -0500101double rapl_power_units, rapl_time_units;
102double rapl_dram_energy_units, rapl_energy_units;
Len Brown889facb2012-11-08 00:48:57 -0500103double rapl_joule_counter_range;
Len Brown3a9a9412014-08-15 02:39:52 -0400104unsigned int do_core_perf_limit_reasons;
105unsigned int do_gfx_perf_limit_reasons;
106unsigned int do_ring_perf_limit_reasons;
Len Brown8a5bdf42015-04-01 21:02:57 -0400107unsigned int crystal_hz;
108unsigned long long tsc_hz;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -0400109int base_cpu;
Len Brown21ed5572015-10-19 22:37:40 -0400110double discover_bclk(unsigned int family, unsigned int model);
Len Brown7f5c2582015-12-01 01:36:39 -0500111unsigned int has_hwp; /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
112 /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
113unsigned int has_hwp_notify; /* IA32_HWP_INTERRUPT */
114unsigned int has_hwp_activity_window; /* IA32_HWP_REQUEST[bits 41:32] */
115unsigned int has_hwp_epp; /* IA32_HWP_REQUEST[bits 31:24] */
116unsigned int has_hwp_pkg; /* IA32_HWP_REQUEST_PKG */
Len Brown889facb2012-11-08 00:48:57 -0500117
Len Browne6f9bb32013-12-03 02:19:19 -0500118#define RAPL_PKG (1 << 0)
119 /* 0x610 MSR_PKG_POWER_LIMIT */
120 /* 0x611 MSR_PKG_ENERGY_STATUS */
121#define RAPL_PKG_PERF_STATUS (1 << 1)
122 /* 0x613 MSR_PKG_PERF_STATUS */
123#define RAPL_PKG_POWER_INFO (1 << 2)
124 /* 0x614 MSR_PKG_POWER_INFO */
125
126#define RAPL_DRAM (1 << 3)
127 /* 0x618 MSR_DRAM_POWER_LIMIT */
128 /* 0x619 MSR_DRAM_ENERGY_STATUS */
Len Browne6f9bb32013-12-03 02:19:19 -0500129#define RAPL_DRAM_PERF_STATUS (1 << 4)
130 /* 0x61b MSR_DRAM_PERF_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400131#define RAPL_DRAM_POWER_INFO (1 << 5)
132 /* 0x61c MSR_DRAM_POWER_INFO */
Len Browne6f9bb32013-12-03 02:19:19 -0500133
Len Brown0b2bb692015-03-26 00:50:30 -0400134#define RAPL_CORES (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500135 /* 0x638 MSR_PP0_POWER_LIMIT */
136 /* 0x639 MSR_PP0_ENERGY_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400137#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500138 /* 0x63a MSR_PP0_POLICY */
139
Len Brown0b2bb692015-03-26 00:50:30 -0400140#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500141 /* 0x640 MSR_PP1_POWER_LIMIT */
142 /* 0x641 MSR_PP1_ENERGY_STATUS */
143 /* 0x642 MSR_PP1_POLICY */
Len Brown889facb2012-11-08 00:48:57 -0500144#define TJMAX_DEFAULT 100
145
146#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400147
148int aperf_mperf_unstable;
149int 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 Browne7c95ff2014-08-14 21:22:13 -0400329 outp += sprintf(outp, " Package");
Len Brown103a8fe2010-10-22 23:53:03 -0400330 if (show_core)
Len Browne7c95ff2014-08-14 21:22:13 -0400331 outp += sprintf(outp, " Core");
Len Brown103a8fe2010-10-22 23:53:03 -0400332 if (show_cpu)
Len Browne7c95ff2014-08-14 21:22:13 -0400333 outp += sprintf(outp, " CPU");
Len Brown103a8fe2010-10-22 23:53:03 -0400334 if (has_aperf)
Len Browne7c95ff2014-08-14 21:22:13 -0400335 outp += sprintf(outp, " Avg_MHz");
Len Brownd7899442015-01-23 00:12:33 -0500336 if (has_aperf)
Len Brown75d2e442016-02-13 23:41:53 -0500337 outp += sprintf(outp, " Busy%%");
Len Brownfc04cc62014-02-06 00:55:19 -0500338 if (has_aperf)
Len Browne7c95ff2014-08-14 21:22:13 -0400339 outp += sprintf(outp, " Bzy_MHz");
340 outp += sprintf(outp, " TSC_MHz");
Len Brown1cc21f72015-02-23 00:34:57 -0500341
Len Brown8e180f32012-09-22 01:25:08 -0400342 if (extra_delta_offset32)
Len Browne7c95ff2014-08-14 21:22:13 -0400343 outp += sprintf(outp, " count 0x%03X", extra_delta_offset32);
Len Brown8e180f32012-09-22 01:25:08 -0400344 if (extra_delta_offset64)
Len Browne7c95ff2014-08-14 21:22:13 -0400345 outp += sprintf(outp, " COUNT 0x%03X", extra_delta_offset64);
Len Brown2f32edf2012-09-21 23:45:46 -0400346 if (extra_msr_offset32)
Len Browne7c95ff2014-08-14 21:22:13 -0400347 outp += sprintf(outp, " MSR 0x%03X", extra_msr_offset32);
Len Brown2f32edf2012-09-21 23:45:46 -0400348 if (extra_msr_offset64)
Len Browne7c95ff2014-08-14 21:22:13 -0400349 outp += sprintf(outp, " MSR 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)
355 outp += sprintf(outp, " IRQ");
Len Brown1cc21f72015-02-23 00:34:57 -0500356 if (do_smi)
357 outp += sprintf(outp, " SMI");
358
Len Brown103a8fe2010-10-22 23:53:03 -0400359 if (do_nhm_cstates)
Len Browne7c95ff2014-08-14 21:22:13 -0400360 outp += sprintf(outp, " CPU%%c1");
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700361 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Browne7c95ff2014-08-14 21:22:13 -0400362 outp += sprintf(outp, " CPU%%c3");
Len Brown103a8fe2010-10-22 23:53:03 -0400363 if (do_nhm_cstates)
Len Browne7c95ff2014-08-14 21:22:13 -0400364 outp += sprintf(outp, " CPU%%c6");
Len Brown103a8fe2010-10-22 23:53:03 -0400365 if (do_snb_cstates)
Len Browne7c95ff2014-08-14 21:22:13 -0400366 outp += sprintf(outp, " CPU%%c7");
Len Brown889facb2012-11-08 00:48:57 -0500367
368 if (do_dts)
Len Browne7c95ff2014-08-14 21:22:13 -0400369 outp += sprintf(outp, " CoreTmp");
Len Brown889facb2012-11-08 00:48:57 -0500370 if (do_ptm)
Len Browne7c95ff2014-08-14 21:22:13 -0400371 outp += sprintf(outp, " PkgTmp");
Len Brown889facb2012-11-08 00:48:57 -0500372
Len Brownfdf676e2016-02-27 01:28:12 -0500373 if (do_gfx_rc6_ms)
374 outp += sprintf(outp, " GFX%%rc6");
375
Len Brown27d47352016-02-27 00:37:54 -0500376 if (do_gfx_mhz)
377 outp += sprintf(outp, " GFXMHz");
378
Len Brown0b2bb692015-03-26 00:50:30 -0400379 if (do_skl_residency) {
380 outp += sprintf(outp, " Totl%%C0");
381 outp += sprintf(outp, " Any%%C0");
382 outp += sprintf(outp, " GFX%%C0");
383 outp += sprintf(outp, " CPUGFX%%");
384 }
385
Len Brownee7e38e2015-02-09 23:39:45 -0500386 if (do_pc2)
Len Browne7c95ff2014-08-14 21:22:13 -0400387 outp += sprintf(outp, " Pkg%%pc2");
Len Brownee7e38e2015-02-09 23:39:45 -0500388 if (do_pc3)
Len Browne7c95ff2014-08-14 21:22:13 -0400389 outp += sprintf(outp, " Pkg%%pc3");
Len Brownee7e38e2015-02-09 23:39:45 -0500390 if (do_pc6)
Len Browne7c95ff2014-08-14 21:22:13 -0400391 outp += sprintf(outp, " Pkg%%pc6");
Len Brownee7e38e2015-02-09 23:39:45 -0500392 if (do_pc7)
Len Browne7c95ff2014-08-14 21:22:13 -0400393 outp += sprintf(outp, " Pkg%%pc7");
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800394 if (do_c8_c9_c10) {
Len Browne7c95ff2014-08-14 21:22:13 -0400395 outp += sprintf(outp, " Pkg%%pc8");
396 outp += sprintf(outp, " Pkg%%pc9");
397 outp += sprintf(outp, " Pk%%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 Browne7c95ff2014-08-14 21:22:13 -0400402 outp += sprintf(outp, " PkgWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800403 if (do_rapl & RAPL_CORES)
Len Browne7c95ff2014-08-14 21:22:13 -0400404 outp += sprintf(outp, " CorWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800405 if (do_rapl & RAPL_GFX)
Len Browne7c95ff2014-08-14 21:22:13 -0400406 outp += sprintf(outp, " GFXWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800407 if (do_rapl & RAPL_DRAM)
Len Browne7c95ff2014-08-14 21:22:13 -0400408 outp += sprintf(outp, " RAMWatt");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800409 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Browne7c95ff2014-08-14 21:22:13 -0400410 outp += sprintf(outp, " PKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800411 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Browne7c95ff2014-08-14 21:22:13 -0400412 outp += sprintf(outp, " RAM_%%");
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 Browne7c95ff2014-08-14 21:22:13 -0400415 outp += sprintf(outp, " Pkg_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800416 if (do_rapl & RAPL_CORES)
Len Browne7c95ff2014-08-14 21:22:13 -0400417 outp += sprintf(outp, " Cor_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800418 if (do_rapl & RAPL_GFX)
Len Browne7c95ff2014-08-14 21:22:13 -0400419 outp += sprintf(outp, " GFX_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800420 if (do_rapl & RAPL_DRAM)
Len Brownbd6906e2015-07-24 10:35:23 -0400421 outp += sprintf(outp, " RAM_J");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800422 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Browne7c95ff2014-08-14 21:22:13 -0400423 outp += sprintf(outp, " PKG_%%");
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800424 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Browne7c95ff2014-08-14 21:22:13 -0400425 outp += sprintf(outp, " RAM_%%");
426 outp += sprintf(outp, " time");
Len Brown889facb2012-11-08 00:48:57 -0500427
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800428 }
Len Brown1cc21f72015-02-23 00:34:57 -0500429 done:
Len Brownc98d5d92012-06-04 00:56:40 -0400430 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400431}
432
Len Brownc98d5d92012-06-04 00:56:40 -0400433int dump_counters(struct thread_data *t, struct core_data *c,
434 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400435{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200436 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400437
Len Brownc98d5d92012-06-04 00:56:40 -0400438 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200439 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
440 t->cpu_id, t->flags);
441 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
442 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
443 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
444 outp += sprintf(outp, "c1: %016llX\n", t->c1);
445 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400446 extra_delta_offset32, t->extra_delta32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200447 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown8e180f32012-09-22 01:25:08 -0400448 extra_delta_offset64, t->extra_delta64);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200449 outp += sprintf(outp, "msr0x%x: %08llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400450 extra_msr_offset32, t->extra_msr32);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200451 outp += sprintf(outp, "msr0x%x: %016llX\n",
Len Brown2f32edf2012-09-21 23:45:46 -0400452 extra_msr_offset64, t->extra_msr64);
Len Brown562a2d32016-02-26 23:48:05 -0500453 if (do_irq)
454 outp += sprintf(outp, "IRQ: %08X\n", t->irq_count);
Len Brown1ed51012013-02-10 17:19:24 -0500455 if (do_smi)
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200456 outp += sprintf(outp, "SMI: %08X\n", t->smi_count);
Len Brownc98d5d92012-06-04 00:56:40 -0400457 }
Len Brown103a8fe2010-10-22 23:53:03 -0400458
Len Brownc98d5d92012-06-04 00:56:40 -0400459 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200460 outp += sprintf(outp, "core: %d\n", c->core_id);
461 outp += sprintf(outp, "c3: %016llX\n", c->c3);
462 outp += sprintf(outp, "c6: %016llX\n", c->c6);
463 outp += sprintf(outp, "c7: %016llX\n", c->c7);
464 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400465 }
466
467 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200468 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400469
470 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
471 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
472 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
473 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
474
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200475 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brownee7e38e2015-02-09 23:39:45 -0500476 if (do_pc3)
477 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
478 if (do_pc6)
479 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
480 if (do_pc7)
481 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200482 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
483 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
484 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
485 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
486 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
487 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
488 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
489 outp += sprintf(outp, "Throttle PKG: %0X\n",
490 p->rapl_pkg_perf_status);
491 outp += sprintf(outp, "Throttle RAM: %0X\n",
492 p->rapl_dram_perf_status);
493 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brownc98d5d92012-06-04 00:56:40 -0400494 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200495
496 outp += sprintf(outp, "\n");
497
Len Brownc98d5d92012-06-04 00:56:40 -0400498 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400499}
500
Len Browne23da032012-02-06 18:37:16 -0500501/*
502 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500503 */
Len Brownc98d5d92012-06-04 00:56:40 -0400504int format_counters(struct thread_data *t, struct core_data *c,
505 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400506{
507 double interval_float;
Len Brownfc04cc62014-02-06 00:55:19 -0500508 char *fmt8;
Len Brown103a8fe2010-10-22 23:53:03 -0400509
Len Brownc98d5d92012-06-04 00:56:40 -0400510 /* if showing only 1st thread in core and this isn't one, bail out */
511 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
512 return 0;
513
514 /* if showing only 1st thread in pkg and this isn't one, bail out */
515 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
516 return 0;
517
Len Brown103a8fe2010-10-22 23:53:03 -0400518 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
519
Len Brownc98d5d92012-06-04 00:56:40 -0400520 /* topo columns, print blanks on 1st (average) line */
521 if (t == &average.threads) {
Len Brown103a8fe2010-10-22 23:53:03 -0400522 if (show_pkg)
Len Brownfc04cc62014-02-06 00:55:19 -0500523 outp += sprintf(outp, " -");
Len Brown103a8fe2010-10-22 23:53:03 -0400524 if (show_core)
Len Brownfc04cc62014-02-06 00:55:19 -0500525 outp += sprintf(outp, " -");
Len Brown103a8fe2010-10-22 23:53:03 -0400526 if (show_cpu)
Len Brownfc04cc62014-02-06 00:55:19 -0500527 outp += sprintf(outp, " -");
Len Brown103a8fe2010-10-22 23:53:03 -0400528 } else {
Len Brownc98d5d92012-06-04 00:56:40 -0400529 if (show_pkg) {
530 if (p)
Len Brownfc04cc62014-02-06 00:55:19 -0500531 outp += sprintf(outp, "%8d", p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400532 else
Len Brownfc04cc62014-02-06 00:55:19 -0500533 outp += sprintf(outp, " -");
Len Brownc98d5d92012-06-04 00:56:40 -0400534 }
Len Brownc98d5d92012-06-04 00:56:40 -0400535 if (show_core) {
536 if (c)
Len Brownfc04cc62014-02-06 00:55:19 -0500537 outp += sprintf(outp, "%8d", c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400538 else
Len Brownfc04cc62014-02-06 00:55:19 -0500539 outp += sprintf(outp, " -");
Len Brownc98d5d92012-06-04 00:56:40 -0400540 }
Len Brown103a8fe2010-10-22 23:53:03 -0400541 if (show_cpu)
Len Brownfc04cc62014-02-06 00:55:19 -0500542 outp += sprintf(outp, "%8d", t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400543 }
Len Brownfc04cc62014-02-06 00:55:19 -0500544
Len Brownd7899442015-01-23 00:12:33 -0500545 /* Avg_MHz */
Len Brownfc04cc62014-02-06 00:55:19 -0500546 if (has_aperf)
547 outp += sprintf(outp, "%8.0f",
548 1.0 / units * t->aperf / interval_float);
549
Len Brown75d2e442016-02-13 23:41:53 -0500550 /* Busy% */
Len Brownd7899442015-01-23 00:12:33 -0500551 if (has_aperf) {
Len Brown103a8fe2010-10-22 23:53:03 -0400552 if (!skip_c0)
Len Browna2b7b742015-09-26 00:12:38 -0400553 outp += sprintf(outp, "%8.2f", 100.0 * t->mperf/t->tsc/tsc_tweak);
Len Brown103a8fe2010-10-22 23:53:03 -0400554 else
Len Brownfc04cc62014-02-06 00:55:19 -0500555 outp += sprintf(outp, "********");
Len Brown103a8fe2010-10-22 23:53:03 -0400556 }
557
Len Brownd7899442015-01-23 00:12:33 -0500558 /* Bzy_MHz */
Len Brown21ed5572015-10-19 22:37:40 -0400559 if (has_aperf) {
560 if (has_base_hz)
561 outp += sprintf(outp, "%8.0f", base_hz / units * t->aperf / t->mperf);
562 else
563 outp += sprintf(outp, "%8.0f",
564 1.0 * t->tsc / units * t->aperf / t->mperf / interval_float);
565 }
Len Brown103a8fe2010-10-22 23:53:03 -0400566
Len Brownd7899442015-01-23 00:12:33 -0500567 /* TSC_MHz */
Len Brownfc04cc62014-02-06 00:55:19 -0500568 outp += sprintf(outp, "%8.0f", 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400569
Len Brown8e180f32012-09-22 01:25:08 -0400570 /* delta */
571 if (extra_delta_offset32)
572 outp += sprintf(outp, " %11llu", t->extra_delta32);
573
574 /* DELTA */
575 if (extra_delta_offset64)
576 outp += sprintf(outp, " %11llu", t->extra_delta64);
Len Brown2f32edf2012-09-21 23:45:46 -0400577 /* msr */
578 if (extra_msr_offset32)
Len Brown8e180f32012-09-22 01:25:08 -0400579 outp += sprintf(outp, " 0x%08llx", t->extra_msr32);
Len Brown2f32edf2012-09-21 23:45:46 -0400580
Len Brown130ff302012-09-21 22:56:06 -0400581 /* MSR */
Len Brown2f32edf2012-09-21 23:45:46 -0400582 if (extra_msr_offset64)
583 outp += sprintf(outp, " 0x%016llx", t->extra_msr64);
Len Brown130ff302012-09-21 22:56:06 -0400584
Len Brown1cc21f72015-02-23 00:34:57 -0500585 if (!debug)
586 goto done;
587
Len Brown562a2d32016-02-26 23:48:05 -0500588 /* IRQ */
589 if (do_irq)
590 outp += sprintf(outp, "%8d", t->irq_count);
591
Len Brown1cc21f72015-02-23 00:34:57 -0500592 /* SMI */
593 if (do_smi)
594 outp += sprintf(outp, "%8d", t->smi_count);
595
Len Brown103a8fe2010-10-22 23:53:03 -0400596 if (do_nhm_cstates) {
597 if (!skip_c1)
Len Brownfc04cc62014-02-06 00:55:19 -0500598 outp += sprintf(outp, "%8.2f", 100.0 * t->c1/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400599 else
Len Brownfc04cc62014-02-06 00:55:19 -0500600 outp += sprintf(outp, "********");
Len Brown103a8fe2010-10-22 23:53:03 -0400601 }
Len Brownc98d5d92012-06-04 00:56:40 -0400602
603 /* print per-core data only for 1st thread in core */
604 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
605 goto done;
606
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -0700607 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates)
Len Brownfc04cc62014-02-06 00:55:19 -0500608 outp += sprintf(outp, "%8.2f", 100.0 * c->c3/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400609 if (do_nhm_cstates)
Len Brownfc04cc62014-02-06 00:55:19 -0500610 outp += sprintf(outp, "%8.2f", 100.0 * c->c6/t->tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400611 if (do_snb_cstates)
Len Brownfc04cc62014-02-06 00:55:19 -0500612 outp += sprintf(outp, "%8.2f", 100.0 * c->c7/t->tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400613
Len Brown889facb2012-11-08 00:48:57 -0500614 if (do_dts)
Len Brownfc04cc62014-02-06 00:55:19 -0500615 outp += sprintf(outp, "%8d", c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500616
Len Brownc98d5d92012-06-04 00:56:40 -0400617 /* print per-package data only for 1st core in package */
618 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
619 goto done;
620
Len Brown0b2bb692015-03-26 00:50:30 -0400621 /* PkgTmp */
Len Brown889facb2012-11-08 00:48:57 -0500622 if (do_ptm)
Len Brownfc04cc62014-02-06 00:55:19 -0500623 outp += sprintf(outp, "%8d", p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500624
Len Brownfdf676e2016-02-27 01:28:12 -0500625 /* GFXrc6 */
Len Brown9185e982016-04-06 17:16:00 -0400626 if (do_gfx_rc6_ms) {
627 if (p->gfx_rc6_ms == -1) { /* detect counter reset */
628 outp += sprintf(outp, " ***.**");
629 } else {
630 outp += sprintf(outp, "%8.2f",
631 p->gfx_rc6_ms / 10.0 / interval_float);
632 }
633 }
Len Brownfdf676e2016-02-27 01:28:12 -0500634
Len Brown27d47352016-02-27 00:37:54 -0500635 /* GFXMHz */
636 if (do_gfx_mhz)
637 outp += sprintf(outp, "%8d", p->gfx_mhz);
638
Len Brown0b2bb692015-03-26 00:50:30 -0400639 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
640 if (do_skl_residency) {
641 outp += sprintf(outp, "%8.2f", 100.0 * p->pkg_wtd_core_c0/t->tsc);
642 outp += sprintf(outp, "%8.2f", 100.0 * p->pkg_any_core_c0/t->tsc);
643 outp += sprintf(outp, "%8.2f", 100.0 * p->pkg_any_gfxe_c0/t->tsc);
644 outp += sprintf(outp, "%8.2f", 100.0 * p->pkg_both_core_gfxe_c0/t->tsc);
645 }
646
Len Brownee7e38e2015-02-09 23:39:45 -0500647 if (do_pc2)
Len Brownfc04cc62014-02-06 00:55:19 -0500648 outp += sprintf(outp, "%8.2f", 100.0 * p->pc2/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500649 if (do_pc3)
Len Brownfc04cc62014-02-06 00:55:19 -0500650 outp += sprintf(outp, "%8.2f", 100.0 * p->pc3/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500651 if (do_pc6)
Len Brownfc04cc62014-02-06 00:55:19 -0500652 outp += sprintf(outp, "%8.2f", 100.0 * p->pc6/t->tsc);
Len Brownee7e38e2015-02-09 23:39:45 -0500653 if (do_pc7)
Len Brownfc04cc62014-02-06 00:55:19 -0500654 outp += sprintf(outp, "%8.2f", 100.0 * p->pc7/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800655 if (do_c8_c9_c10) {
Len Brownfc04cc62014-02-06 00:55:19 -0500656 outp += sprintf(outp, "%8.2f", 100.0 * p->pc8/t->tsc);
657 outp += sprintf(outp, "%8.2f", 100.0 * p->pc9/t->tsc);
658 outp += sprintf(outp, "%8.2f", 100.0 * p->pc10/t->tsc);
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800659 }
Len Brown889facb2012-11-08 00:48:57 -0500660
661 /*
662 * If measurement interval exceeds minimum RAPL Joule Counter range,
663 * indicate that results are suspect by printing "**" in fraction place.
664 */
Len Brownfc04cc62014-02-06 00:55:19 -0500665 if (interval_float < rapl_joule_counter_range)
666 fmt8 = "%8.2f";
667 else
668 fmt8 = " %6.0f**";
Len Brown889facb2012-11-08 00:48:57 -0500669
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800670 if (do_rapl && !rapl_joules) {
671 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500672 outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800673 if (do_rapl & RAPL_CORES)
Len Brownfc04cc62014-02-06 00:55:19 -0500674 outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800675 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500676 outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800677 if (do_rapl & RAPL_DRAM)
Andrey Semin40ee8e32014-12-05 00:07:00 -0500678 outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800679 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500680 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800681 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500682 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Len Brownd7899442015-01-23 00:12:33 -0500683 } else if (do_rapl && rapl_joules) {
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800684 if (do_rapl & RAPL_PKG)
Len Brownfc04cc62014-02-06 00:55:19 -0500685 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800686 p->energy_pkg * rapl_energy_units);
687 if (do_rapl & RAPL_CORES)
Len Brownfc04cc62014-02-06 00:55:19 -0500688 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800689 p->energy_cores * rapl_energy_units);
690 if (do_rapl & RAPL_GFX)
Len Brownfc04cc62014-02-06 00:55:19 -0500691 outp += sprintf(outp, fmt8,
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800692 p->energy_gfx * rapl_energy_units);
693 if (do_rapl & RAPL_DRAM)
Len Brownfc04cc62014-02-06 00:55:19 -0500694 outp += sprintf(outp, fmt8,
Andrey Semin40ee8e32014-12-05 00:07:00 -0500695 p->energy_dram * rapl_dram_energy_units);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800696 if (do_rapl & RAPL_PKG_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500697 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800698 if (do_rapl & RAPL_DRAM_PERF_STATUS)
Len Brownfc04cc62014-02-06 00:55:19 -0500699 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Len Brown889facb2012-11-08 00:48:57 -0500700
Len Brownd7899442015-01-23 00:12:33 -0500701 outp += sprintf(outp, fmt8, interval_float);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800702 }
Len Brownc98d5d92012-06-04 00:56:40 -0400703done:
Len Brownc98d5d92012-06-04 00:56:40 -0400704 outp += sprintf(outp, "\n");
705
706 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400707}
708
Len Brownb7d8c142016-02-13 23:36:17 -0500709void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400710{
Len Brownb7d8c142016-02-13 23:36:17 -0500711 FILE *filep;
712
713 if (outf == stderr)
714 filep = stdout;
715 else
716 filep = outf;
717
718 fputs(output_buffer, filep);
719 fflush(filep);
720
Len Brownc98d5d92012-06-04 00:56:40 -0400721 outp = output_buffer;
722}
Len Brownb7d8c142016-02-13 23:36:17 -0500723void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -0400724{
Len Brownb7d8c142016-02-13 23:36:17 -0500725 fputs(output_buffer, outf);
726 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -0400727 outp = output_buffer;
728}
729void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
730{
Len Browne23da032012-02-06 18:37:16 -0500731 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -0400732
Len Browne23da032012-02-06 18:37:16 -0500733 if (!printed || !summary_only)
734 print_header();
Len Brown103a8fe2010-10-22 23:53:03 -0400735
Len Brownc98d5d92012-06-04 00:56:40 -0400736 if (topo.num_cpus > 1)
737 format_counters(&average.threads, &average.cores,
738 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -0400739
Len Browne23da032012-02-06 18:37:16 -0500740 printed = 1;
741
742 if (summary_only)
743 return;
744
Len Brownc98d5d92012-06-04 00:56:40 -0400745 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400746}
747
Len Brown889facb2012-11-08 00:48:57 -0500748#define DELTA_WRAP32(new, old) \
749 if (new > old) { \
750 old = new - old; \
751 } else { \
752 old = 0x100000000 + new - old; \
753 }
754
Len Brownc98d5d92012-06-04 00:56:40 -0400755void
756delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -0400757{
Len Brown0b2bb692015-03-26 00:50:30 -0400758
759 if (do_skl_residency) {
760 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
761 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
762 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
763 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
764 }
Len Brownc98d5d92012-06-04 00:56:40 -0400765 old->pc2 = new->pc2 - old->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500766 if (do_pc3)
767 old->pc3 = new->pc3 - old->pc3;
768 if (do_pc6)
769 old->pc6 = new->pc6 - old->pc6;
770 if (do_pc7)
771 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800772 old->pc8 = new->pc8 - old->pc8;
773 old->pc9 = new->pc9 - old->pc9;
774 old->pc10 = new->pc10 - old->pc10;
Len Brown889facb2012-11-08 00:48:57 -0500775 old->pkg_temp_c = new->pkg_temp_c;
776
Len Brown9185e982016-04-06 17:16:00 -0400777 /* flag an error when rc6 counter resets/wraps */
778 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
779 old->gfx_rc6_ms = -1;
780 else
781 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
782
Len Brown27d47352016-02-27 00:37:54 -0500783 old->gfx_mhz = new->gfx_mhz;
784
Len Brown889facb2012-11-08 00:48:57 -0500785 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
786 DELTA_WRAP32(new->energy_cores, old->energy_cores);
787 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
788 DELTA_WRAP32(new->energy_dram, old->energy_dram);
789 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
790 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownc98d5d92012-06-04 00:56:40 -0400791}
Len Brown103a8fe2010-10-22 23:53:03 -0400792
Len Brownc98d5d92012-06-04 00:56:40 -0400793void
794delta_core(struct core_data *new, struct core_data *old)
795{
796 old->c3 = new->c3 - old->c3;
797 old->c6 = new->c6 - old->c6;
798 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -0500799 old->core_temp_c = new->core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400800}
Len Brown103a8fe2010-10-22 23:53:03 -0400801
Len Brownc3ae3312012-06-13 21:31:46 -0400802/*
803 * old = new - old
804 */
Len Brownc98d5d92012-06-04 00:56:40 -0400805void
806delta_thread(struct thread_data *new, struct thread_data *old,
807 struct core_data *core_delta)
808{
809 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -0400810
Len Brownc98d5d92012-06-04 00:56:40 -0400811 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -0700812 if (old->tsc < (1000 * 1000))
813 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
814 "You can disable all c-states by booting with \"idle=poll\"\n"
815 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -0400816
Len Brownc98d5d92012-06-04 00:56:40 -0400817 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -0400818
Len Browna7296172015-01-23 01:33:58 -0500819 if (has_aperf) {
820 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
821 old->aperf = new->aperf - old->aperf;
822 old->mperf = new->mperf - old->mperf;
823 } else {
Len Brown103a8fe2010-10-22 23:53:03 -0400824
Len Browna7296172015-01-23 01:33:58 -0500825 if (!aperf_mperf_unstable) {
Len Brownb7d8c142016-02-13 23:36:17 -0500826 fprintf(outf, "%s: APERF or MPERF went backwards *\n", progname);
827 fprintf(outf, "* Frequency results do not cover entire interval *\n");
828 fprintf(outf, "* fix this by running Linux-2.6.30 or later *\n");
Len Brownc98d5d92012-06-04 00:56:40 -0400829
Len Browna7296172015-01-23 01:33:58 -0500830 aperf_mperf_unstable = 1;
831 }
832 /*
833 * mperf delta is likely a huge "positive" number
834 * can not use it for calculating c0 time
835 */
836 skip_c0 = 1;
837 skip_c1 = 1;
Len Brownc98d5d92012-06-04 00:56:40 -0400838 }
Len Brownc98d5d92012-06-04 00:56:40 -0400839 }
Len Brown103a8fe2010-10-22 23:53:03 -0400840
Len Brown103a8fe2010-10-22 23:53:03 -0400841
Len Brown144b44b2013-11-09 00:30:16 -0500842 if (use_c1_residency_msr) {
843 /*
844 * Some models have a dedicated C1 residency MSR,
845 * which should be more accurate than the derivation below.
846 */
847 } else {
848 /*
849 * As counter collection is not atomic,
850 * it is possible for mperf's non-halted cycles + idle states
851 * to exceed TSC's all cycles: show c1 = 0% in that case.
852 */
853 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > old->tsc)
854 old->c1 = 0;
855 else {
856 /* normal case, derive c1 */
857 old->c1 = old->tsc - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -0400858 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -0500859 }
Len Brownc98d5d92012-06-04 00:56:40 -0400860 }
Len Brownc3ae3312012-06-13 21:31:46 -0400861
Len Brownc98d5d92012-06-04 00:56:40 -0400862 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -0500863 if (debug > 1)
864 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400865 old->mperf = 1; /* divide by 0 protection */
866 }
867
Len Brown8e180f32012-09-22 01:25:08 -0400868 old->extra_delta32 = new->extra_delta32 - old->extra_delta32;
869 old->extra_delta32 &= 0xFFFFFFFF;
870
871 old->extra_delta64 = new->extra_delta64 - old->extra_delta64;
872
Len Brownc98d5d92012-06-04 00:56:40 -0400873 /*
Len Brown8e180f32012-09-22 01:25:08 -0400874 * Extra MSR is just a snapshot, simply copy latest w/o subtracting
Len Brownc98d5d92012-06-04 00:56:40 -0400875 */
Len Brown2f32edf2012-09-21 23:45:46 -0400876 old->extra_msr32 = new->extra_msr32;
877 old->extra_msr64 = new->extra_msr64;
Len Brown1ed51012013-02-10 17:19:24 -0500878
Len Brown562a2d32016-02-26 23:48:05 -0500879 if (do_irq)
880 old->irq_count = new->irq_count - old->irq_count;
881
Len Brown1ed51012013-02-10 17:19:24 -0500882 if (do_smi)
883 old->smi_count = new->smi_count - old->smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400884}
885
886int delta_cpu(struct thread_data *t, struct core_data *c,
887 struct pkg_data *p, struct thread_data *t2,
888 struct core_data *c2, struct pkg_data *p2)
889{
890 /* calculate core delta only for 1st thread in core */
891 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
892 delta_core(c, c2);
893
894 /* always calculate thread delta */
895 delta_thread(t, t2, c2); /* c2 is core delta */
896
897 /* calculate package delta only for 1st core in package */
898 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
899 delta_package(p, p2);
900
901 return 0;
902}
903
904void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
905{
906 t->tsc = 0;
907 t->aperf = 0;
908 t->mperf = 0;
909 t->c1 = 0;
910
Len Brown8e180f32012-09-22 01:25:08 -0400911 t->extra_delta32 = 0;
912 t->extra_delta64 = 0;
913
Len Brown562a2d32016-02-26 23:48:05 -0500914 t->irq_count = 0;
915 t->smi_count = 0;
916
Len Brownc98d5d92012-06-04 00:56:40 -0400917 /* tells format_counters to dump all fields from this set */
918 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
919
920 c->c3 = 0;
921 c->c6 = 0;
922 c->c7 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500923 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400924
Len Brown0b2bb692015-03-26 00:50:30 -0400925 p->pkg_wtd_core_c0 = 0;
926 p->pkg_any_core_c0 = 0;
927 p->pkg_any_gfxe_c0 = 0;
928 p->pkg_both_core_gfxe_c0 = 0;
929
Len Brownc98d5d92012-06-04 00:56:40 -0400930 p->pc2 = 0;
Len Brownee7e38e2015-02-09 23:39:45 -0500931 if (do_pc3)
932 p->pc3 = 0;
933 if (do_pc6)
934 p->pc6 = 0;
935 if (do_pc7)
936 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800937 p->pc8 = 0;
938 p->pc9 = 0;
939 p->pc10 = 0;
Len Brown889facb2012-11-08 00:48:57 -0500940
941 p->energy_pkg = 0;
942 p->energy_dram = 0;
943 p->energy_cores = 0;
944 p->energy_gfx = 0;
945 p->rapl_pkg_perf_status = 0;
946 p->rapl_dram_perf_status = 0;
947 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -0500948
Len Brownfdf676e2016-02-27 01:28:12 -0500949 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -0500950 p->gfx_mhz = 0;
Len Brownc98d5d92012-06-04 00:56:40 -0400951}
952int sum_counters(struct thread_data *t, struct core_data *c,
953 struct pkg_data *p)
954{
955 average.threads.tsc += t->tsc;
956 average.threads.aperf += t->aperf;
957 average.threads.mperf += t->mperf;
958 average.threads.c1 += t->c1;
959
Len Brown8e180f32012-09-22 01:25:08 -0400960 average.threads.extra_delta32 += t->extra_delta32;
961 average.threads.extra_delta64 += t->extra_delta64;
962
Len Brown562a2d32016-02-26 23:48:05 -0500963 average.threads.irq_count += t->irq_count;
964 average.threads.smi_count += t->smi_count;
965
Len Brownc98d5d92012-06-04 00:56:40 -0400966 /* sum per-core values only for 1st thread in core */
967 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
968 return 0;
969
970 average.cores.c3 += c->c3;
971 average.cores.c6 += c->c6;
972 average.cores.c7 += c->c7;
973
Len Brown889facb2012-11-08 00:48:57 -0500974 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
975
Len Brownc98d5d92012-06-04 00:56:40 -0400976 /* sum per-pkg values only for 1st core in pkg */
977 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
978 return 0;
979
Len Brown0b2bb692015-03-26 00:50:30 -0400980 if (do_skl_residency) {
981 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
982 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
983 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
984 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
985 }
986
Len Brownc98d5d92012-06-04 00:56:40 -0400987 average.packages.pc2 += p->pc2;
Len Brownee7e38e2015-02-09 23:39:45 -0500988 if (do_pc3)
989 average.packages.pc3 += p->pc3;
990 if (do_pc6)
991 average.packages.pc6 += p->pc6;
992 if (do_pc7)
993 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800994 average.packages.pc8 += p->pc8;
995 average.packages.pc9 += p->pc9;
996 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -0400997
Len Brown889facb2012-11-08 00:48:57 -0500998 average.packages.energy_pkg += p->energy_pkg;
999 average.packages.energy_dram += p->energy_dram;
1000 average.packages.energy_cores += p->energy_cores;
1001 average.packages.energy_gfx += p->energy_gfx;
1002
Len Brownfdf676e2016-02-27 01:28:12 -05001003 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -05001004 average.packages.gfx_mhz = p->gfx_mhz;
1005
Len Brown889facb2012-11-08 00:48:57 -05001006 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
1007
1008 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
1009 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brownc98d5d92012-06-04 00:56:40 -04001010 return 0;
1011}
1012/*
1013 * sum the counters for all cpus in the system
1014 * compute the weighted average
1015 */
1016void compute_average(struct thread_data *t, struct core_data *c,
1017 struct pkg_data *p)
1018{
1019 clear_counters(&average.threads, &average.cores, &average.packages);
1020
1021 for_all_cpus(sum_counters, t, c, p);
1022
1023 average.threads.tsc /= topo.num_cpus;
1024 average.threads.aperf /= topo.num_cpus;
1025 average.threads.mperf /= topo.num_cpus;
1026 average.threads.c1 /= topo.num_cpus;
1027
Len Brown8e180f32012-09-22 01:25:08 -04001028 average.threads.extra_delta32 /= topo.num_cpus;
1029 average.threads.extra_delta32 &= 0xFFFFFFFF;
1030
1031 average.threads.extra_delta64 /= topo.num_cpus;
1032
Len Brownc98d5d92012-06-04 00:56:40 -04001033 average.cores.c3 /= topo.num_cores;
1034 average.cores.c6 /= topo.num_cores;
1035 average.cores.c7 /= topo.num_cores;
1036
Len Brown0b2bb692015-03-26 00:50:30 -04001037 if (do_skl_residency) {
1038 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
1039 average.packages.pkg_any_core_c0 /= topo.num_packages;
1040 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
1041 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
1042 }
1043
Len Brownc98d5d92012-06-04 00:56:40 -04001044 average.packages.pc2 /= topo.num_packages;
Len Brownee7e38e2015-02-09 23:39:45 -05001045 if (do_pc3)
1046 average.packages.pc3 /= topo.num_packages;
1047 if (do_pc6)
1048 average.packages.pc6 /= topo.num_packages;
1049 if (do_pc7)
1050 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001051
1052 average.packages.pc8 /= topo.num_packages;
1053 average.packages.pc9 /= topo.num_packages;
1054 average.packages.pc10 /= topo.num_packages;
Len Brownc98d5d92012-06-04 00:56:40 -04001055}
1056
1057static unsigned long long rdtsc(void)
1058{
1059 unsigned int low, high;
1060
1061 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1062
1063 return low | ((unsigned long long)high) << 32;
1064}
1065
Len Brownc98d5d92012-06-04 00:56:40 -04001066/*
1067 * get_counters(...)
1068 * migrate to cpu
1069 * acquire and record local counters for that cpu
1070 */
1071int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1072{
1073 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001074 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001075 int aperf_mperf_retry_count = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001076
Len Browne52966c2012-11-08 22:38:05 -05001077 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001078 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001079 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001080 }
Len Brownc98d5d92012-06-04 00:56:40 -04001081
Len Brown0102b062016-02-27 03:11:29 -05001082retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001083 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1084
1085 if (has_aperf) {
Len Brown0102b062016-02-27 03:11:29 -05001086 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1087
1088 /*
1089 * The TSC, APERF and MPERF must be read together for
1090 * APERF/MPERF and MPERF/TSC to give accurate results.
1091 *
1092 * Unfortunately, APERF and MPERF are read by
1093 * individual system call, so delays may occur
1094 * between them. If the time to read them
1095 * varies by a large amount, we re-read them.
1096 */
1097
1098 /*
1099 * This initial dummy APERF read has been seen to
1100 * reduce jitter in the subsequent reads.
1101 */
1102
Len Brown9c63a652012-10-31 01:29:52 -04001103 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001104 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001105
1106 t->tsc = rdtsc(); /* re-read close to APERF */
1107
1108 tsc_before = t->tsc;
1109
1110 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1111 return -3;
1112
1113 tsc_between = rdtsc();
1114
Len Brown9c63a652012-10-31 01:29:52 -04001115 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001116 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001117
1118 tsc_after = rdtsc();
1119
1120 aperf_time = tsc_between - tsc_before;
1121 mperf_time = tsc_after - tsc_between;
1122
1123 /*
1124 * If the system call latency to read APERF and MPERF
1125 * differ by more than 2x, then try again.
1126 */
1127 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1128 aperf_mperf_retry_count++;
1129 if (aperf_mperf_retry_count < 5)
1130 goto retry;
1131 else
1132 warnx("cpu%d jitter %lld %lld",
1133 cpu, aperf_time, mperf_time);
1134 }
1135 aperf_mperf_retry_count = 0;
1136
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001137 t->aperf = t->aperf * aperf_mperf_multiplier;
1138 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001139 }
1140
Len Brown562a2d32016-02-26 23:48:05 -05001141 if (do_irq)
1142 t->irq_count = irqs_per_cpu[cpu];
Len Brown1ed51012013-02-10 17:19:24 -05001143 if (do_smi) {
1144 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1145 return -5;
1146 t->smi_count = msr & 0xFFFFFFFF;
1147 }
Len Brown8e180f32012-09-22 01:25:08 -04001148 if (extra_delta_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001149 if (get_msr(cpu, extra_delta_offset32, &msr))
Len Brown2f32edf2012-09-21 23:45:46 -04001150 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001151 t->extra_delta32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001152 }
1153
1154 if (extra_delta_offset64)
1155 if (get_msr(cpu, extra_delta_offset64, &t->extra_delta64))
1156 return -5;
1157
1158 if (extra_msr_offset32) {
Len Brown889facb2012-11-08 00:48:57 -05001159 if (get_msr(cpu, extra_msr_offset32, &msr))
Len Brown8e180f32012-09-22 01:25:08 -04001160 return -5;
Len Brown889facb2012-11-08 00:48:57 -05001161 t->extra_msr32 = msr & 0xFFFFFFFF;
Len Brown8e180f32012-09-22 01:25:08 -04001162 }
Len Brown2f32edf2012-09-21 23:45:46 -04001163
1164 if (extra_msr_offset64)
1165 if (get_msr(cpu, extra_msr_offset64, &t->extra_msr64))
Len Brownc98d5d92012-06-04 00:56:40 -04001166 return -5;
1167
Len Brown144b44b2013-11-09 00:30:16 -05001168 if (use_c1_residency_msr) {
1169 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1170 return -6;
1171 }
1172
Len Brownc98d5d92012-06-04 00:56:40 -04001173 /* collect core counters only for 1st thread in core */
1174 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1175 return 0;
1176
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001177 if (do_nhm_cstates && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001178 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1179 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001180 }
1181
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001182 if (do_nhm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001183 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1184 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001185 } else if (do_knl_cstates) {
1186 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1187 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001188 }
1189
1190 if (do_snb_cstates)
1191 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1192 return -8;
1193
Len Brown889facb2012-11-08 00:48:57 -05001194 if (do_dts) {
1195 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1196 return -9;
1197 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1198 }
1199
1200
Len Brownc98d5d92012-06-04 00:56:40 -04001201 /* collect package counters only for 1st core in package */
1202 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1203 return 0;
1204
Len Brown0b2bb692015-03-26 00:50:30 -04001205 if (do_skl_residency) {
1206 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1207 return -10;
1208 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1209 return -11;
1210 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1211 return -12;
1212 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1213 return -13;
1214 }
Len Brownee7e38e2015-02-09 23:39:45 -05001215 if (do_pc3)
Len Brownc98d5d92012-06-04 00:56:40 -04001216 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1217 return -9;
Len Brownee7e38e2015-02-09 23:39:45 -05001218 if (do_pc6)
Len Brownc98d5d92012-06-04 00:56:40 -04001219 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1220 return -10;
Len Brownee7e38e2015-02-09 23:39:45 -05001221 if (do_pc2)
Len Brownc98d5d92012-06-04 00:56:40 -04001222 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1223 return -11;
Len Brownee7e38e2015-02-09 23:39:45 -05001224 if (do_pc7)
Len Brownc98d5d92012-06-04 00:56:40 -04001225 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1226 return -12;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001227 if (do_c8_c9_c10) {
1228 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1229 return -13;
1230 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1231 return -13;
1232 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1233 return -13;
1234 }
Len Brown889facb2012-11-08 00:48:57 -05001235 if (do_rapl & RAPL_PKG) {
1236 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1237 return -13;
1238 p->energy_pkg = msr & 0xFFFFFFFF;
1239 }
1240 if (do_rapl & RAPL_CORES) {
1241 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1242 return -14;
1243 p->energy_cores = msr & 0xFFFFFFFF;
1244 }
1245 if (do_rapl & RAPL_DRAM) {
1246 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1247 return -15;
1248 p->energy_dram = msr & 0xFFFFFFFF;
1249 }
1250 if (do_rapl & RAPL_GFX) {
1251 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1252 return -16;
1253 p->energy_gfx = msr & 0xFFFFFFFF;
1254 }
1255 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1256 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1257 return -16;
1258 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1259 }
1260 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1261 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1262 return -16;
1263 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1264 }
1265 if (do_ptm) {
1266 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1267 return -17;
1268 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1269 }
Len Brownfdf676e2016-02-27 01:28:12 -05001270
1271 if (do_gfx_rc6_ms)
1272 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1273
Len Brown27d47352016-02-27 00:37:54 -05001274 if (do_gfx_mhz)
1275 p->gfx_mhz = gfx_cur_mhz;
1276
Len Brown103a8fe2010-10-22 23:53:03 -04001277 return 0;
1278}
1279
Len Brownee7e38e2015-02-09 23:39:45 -05001280/*
1281 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1282 * If you change the values, note they are used both in comparisons
1283 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1284 */
1285
1286#define PCLUKN 0 /* Unknown */
1287#define PCLRSV 1 /* Reserved */
1288#define PCL__0 2 /* PC0 */
1289#define PCL__1 3 /* PC1 */
1290#define PCL__2 4 /* PC2 */
1291#define PCL__3 5 /* PC3 */
1292#define PCL__4 6 /* PC4 */
1293#define PCL__6 7 /* PC6 */
1294#define PCL_6N 8 /* PC6 No Retention */
1295#define PCL_6R 9 /* PC6 Retention */
1296#define PCL__7 10 /* PC7 */
1297#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001298#define PCL__8 12 /* PC8 */
1299#define PCL__9 13 /* PC9 */
1300#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001301
1302int pkg_cstate_limit = PCLUKN;
1303char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001304 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001305
Len Browne9257f52015-04-01 21:02:57 -04001306int 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};
1307int 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};
1308int 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};
1309int 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};
1310int 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};
1311int 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 -04001312int 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 -05001313
Len Browna2b7b742015-09-26 00:12:38 -04001314
1315static void
1316calculate_tsc_tweak()
1317{
Len Browna2b7b742015-09-26 00:12:38 -04001318 tsc_tweak = base_hz / tsc_hz;
1319}
1320
Len Brownfcd17212015-03-23 20:29:09 -04001321static void
1322dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001323{
1324 unsigned long long msr;
1325 unsigned int ratio;
1326
Len Brownec0adc52015-11-12 02:42:31 -05001327 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001328
Len Brownb7d8c142016-02-13 23:36:17 -05001329 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001330
Len Brown103a8fe2010-10-22 23:53:03 -04001331 ratio = (msr >> 40) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001332 fprintf(outf, "%d * %.0f = %.0f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001333 ratio, bclk, ratio * bclk);
1334
1335 ratio = (msr >> 8) & 0xFF;
Len Brownb7d8c142016-02-13 23:36:17 -05001336 fprintf(outf, "%d * %.0f = %.0f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001337 ratio, bclk, ratio * bclk);
1338
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001339 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001340 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001341 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001342
Len Brownfcd17212015-03-23 20:29:09 -04001343 return;
1344}
1345
1346static void
1347dump_hsw_turbo_ratio_limits(void)
1348{
1349 unsigned long long msr;
1350 unsigned int ratio;
1351
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001352 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001353
Len Brownb7d8c142016-02-13 23:36:17 -05001354 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001355
1356 ratio = (msr >> 8) & 0xFF;
1357 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001358 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001359 ratio, bclk, ratio * bclk);
1360
1361 ratio = (msr >> 0) & 0xFF;
1362 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001363 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001364 ratio, bclk, ratio * bclk);
1365 return;
1366}
1367
1368static void
1369dump_ivt_turbo_ratio_limits(void)
1370{
1371 unsigned long long msr;
1372 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001373
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001374 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001375
Len Brownb7d8c142016-02-13 23:36:17 -05001376 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001377
1378 ratio = (msr >> 56) & 0xFF;
1379 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001380 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001381 ratio, bclk, ratio * bclk);
1382
1383 ratio = (msr >> 48) & 0xFF;
1384 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001385 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001386 ratio, bclk, ratio * bclk);
1387
1388 ratio = (msr >> 40) & 0xFF;
1389 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001390 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001391 ratio, bclk, ratio * bclk);
1392
1393 ratio = (msr >> 32) & 0xFF;
1394 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001395 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001396 ratio, bclk, ratio * bclk);
1397
1398 ratio = (msr >> 24) & 0xFF;
1399 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001400 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001401 ratio, bclk, ratio * bclk);
1402
1403 ratio = (msr >> 16) & 0xFF;
1404 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001405 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001406 ratio, bclk, ratio * bclk);
1407
1408 ratio = (msr >> 8) & 0xFF;
1409 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001410 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001411 ratio, bclk, ratio * bclk);
1412
1413 ratio = (msr >> 0) & 0xFF;
1414 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001415 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001416 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001417 return;
1418}
Len Brown6574a5d2012-09-21 00:01:31 -04001419
Len Brownfcd17212015-03-23 20:29:09 -04001420static void
1421dump_nhm_turbo_ratio_limits(void)
1422{
1423 unsigned long long msr;
1424 unsigned int ratio;
Len Brown103a8fe2010-10-22 23:53:03 -04001425
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001426 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001427
Len Brownb7d8c142016-02-13 23:36:17 -05001428 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001429
1430 ratio = (msr >> 56) & 0xFF;
1431 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001432 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 8 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001433 ratio, bclk, ratio * bclk);
1434
1435 ratio = (msr >> 48) & 0xFF;
1436 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001437 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 7 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001438 ratio, bclk, ratio * bclk);
1439
1440 ratio = (msr >> 40) & 0xFF;
1441 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001442 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 6 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001443 ratio, bclk, ratio * bclk);
1444
1445 ratio = (msr >> 32) & 0xFF;
1446 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001447 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 5 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001448 ratio, bclk, ratio * bclk);
1449
Len Brown103a8fe2010-10-22 23:53:03 -04001450 ratio = (msr >> 24) & 0xFF;
1451 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001452 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 4 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001453 ratio, bclk, ratio * bclk);
1454
1455 ratio = (msr >> 16) & 0xFF;
1456 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001457 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 3 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001458 ratio, bclk, ratio * bclk);
1459
1460 ratio = (msr >> 8) & 0xFF;
1461 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001462 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 2 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001463 ratio, bclk, ratio * bclk);
1464
1465 ratio = (msr >> 0) & 0xFF;
1466 if (ratio)
Len Brownb7d8c142016-02-13 23:36:17 -05001467 fprintf(outf, "%d * %.0f = %.0f MHz max turbo 1 active cores\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001468 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001469 return;
1470}
Len Brown3a9a9412014-08-15 02:39:52 -04001471
Len Brownfcd17212015-03-23 20:29:09 -04001472static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001473dump_knl_turbo_ratio_limits(void)
1474{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001475 const unsigned int buckets_no = 7;
1476
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001477 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001478 int delta_cores, delta_ratio;
1479 int i, b_nr;
1480 unsigned int cores[buckets_no];
1481 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001482
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001483 get_msr(base_cpu, MSR_NHM_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001484
Len Brownb7d8c142016-02-13 23:36:17 -05001485 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04001486 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001487
1488 /**
1489 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001490 * [0] -- Reserved
1491 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001492 * [15:8] -- Base value of freq ratio of bucket 1.
1493 * [20:16] -- +ve delta of number of active cores of bucket 2.
1494 * i.e. active cores of bucket 2 =
1495 * active cores of bucket 1 + delta
1496 * [23:21] -- Negative delta of freq ratio of bucket 2.
1497 * i.e. freq ratio of bucket 2 =
1498 * freq ratio of bucket 1 - delta
1499 * [28:24]-- +ve delta of number of active cores of bucket 3.
1500 * [31:29]-- -ve delta of freq ratio of bucket 3.
1501 * [36:32]-- +ve delta of number of active cores of bucket 4.
1502 * [39:37]-- -ve delta of freq ratio of bucket 4.
1503 * [44:40]-- +ve delta of number of active cores of bucket 5.
1504 * [47:45]-- -ve delta of freq ratio of bucket 5.
1505 * [52:48]-- +ve delta of number of active cores of bucket 6.
1506 * [55:53]-- -ve delta of freq ratio of bucket 6.
1507 * [60:56]-- +ve delta of number of active cores of bucket 7.
1508 * [63:61]-- -ve delta of freq ratio of bucket 7.
1509 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001510
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001511 b_nr = 0;
1512 cores[b_nr] = (msr & 0xFF) >> 1;
1513 ratio[b_nr] = (msr >> 8) & 0xFF;
1514
1515 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001516 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001517 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001518
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001519 cores[b_nr + 1] = cores[b_nr] + delta_cores;
1520 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
1521 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001522 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001523
1524 for (i = buckets_no - 1; i >= 0; i--)
1525 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05001526 fprintf(outf,
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001527 "%d * %.0f = %.0f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001528 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001529}
1530
1531static void
Len Brownfcd17212015-03-23 20:29:09 -04001532dump_nhm_cst_cfg(void)
1533{
1534 unsigned long long msr;
1535
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001536 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001537
1538#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
1539#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
1540
Len Brownb7d8c142016-02-13 23:36:17 -05001541 fprintf(outf, "cpu%d: MSR_NHM_SNB_PKG_CST_CFG_CTL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001542
Len Brownb7d8c142016-02-13 23:36:17 -05001543 fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
Len Brownfcd17212015-03-23 20:29:09 -04001544 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
1545 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
1546 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
1547 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
1548 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04001549 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04001550 pkg_cstate_limit_strings[pkg_cstate_limit]);
1551 return;
Len Brown103a8fe2010-10-22 23:53:03 -04001552}
1553
Len Brown6fb31432015-06-17 16:23:45 -04001554static void
1555dump_config_tdp(void)
1556{
1557 unsigned long long msr;
1558
1559 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001560 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001561 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04001562
1563 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001564 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001565 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001566 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1567 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1568 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1569 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001570 }
Len Brownb7d8c142016-02-13 23:36:17 -05001571 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001572
1573 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001574 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001575 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08001576 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
1577 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
1578 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
1579 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04001580 }
Len Brownb7d8c142016-02-13 23:36:17 -05001581 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001582
1583 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001584 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04001585 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05001586 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
1587 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1588 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05001589
Len Brown6fb31432015-06-17 16:23:45 -04001590 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001591 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08001592 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05001593 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
1594 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04001595}
Len Brown5a634262016-04-06 17:15:55 -04001596
1597unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
1598
1599void print_irtl(void)
1600{
1601 unsigned long long msr;
1602
1603 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
1604 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
1605 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1606 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1607
1608 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
1609 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
1610 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1611 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1612
1613 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
1614 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
1615 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1616 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1617
1618 if (!do_irtl_hsw)
1619 return;
1620
1621 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
1622 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
1623 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1624 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1625
1626 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
1627 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
1628 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1629 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1630
1631 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
1632 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
1633 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
1634 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
1635
1636}
Len Brown36229892016-02-26 20:51:02 -05001637void free_fd_percpu(void)
1638{
1639 int i;
1640
1641 for (i = 0; i < topo.max_cpu_num; ++i) {
1642 if (fd_percpu[i] != 0)
1643 close(fd_percpu[i]);
1644 }
1645
1646 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04001647}
1648
Len Brownc98d5d92012-06-04 00:56:40 -04001649void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001650{
Len Brownc98d5d92012-06-04 00:56:40 -04001651 CPU_FREE(cpu_present_set);
1652 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05001653 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001654
Len Brownc98d5d92012-06-04 00:56:40 -04001655 CPU_FREE(cpu_affinity_set);
1656 cpu_affinity_set = NULL;
1657 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001658
Len Brownc98d5d92012-06-04 00:56:40 -04001659 free(thread_even);
1660 free(core_even);
1661 free(package_even);
1662
1663 thread_even = NULL;
1664 core_even = NULL;
1665 package_even = NULL;
1666
1667 free(thread_odd);
1668 free(core_odd);
1669 free(package_odd);
1670
1671 thread_odd = NULL;
1672 core_odd = NULL;
1673 package_odd = NULL;
1674
1675 free(output_buffer);
1676 output_buffer = NULL;
1677 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05001678
1679 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05001680
1681 free(irq_column_2_cpu);
1682 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001683}
1684
Len Brownc98d5d92012-06-04 00:56:40 -04001685/*
Josh Triplett57a42a32013-08-20 17:20:17 -07001686 * Open a file, and exit on failure
1687 */
1688FILE *fopen_or_die(const char *path, const char *mode)
1689{
Len Brownb7d8c142016-02-13 23:36:17 -05001690 FILE *filep = fopen(path, mode);
Josh Triplettb2c95d92013-08-20 17:20:18 -07001691 if (!filep)
1692 err(1, "%s: open failed", path);
Josh Triplett57a42a32013-08-20 17:20:17 -07001693 return filep;
1694}
1695
1696/*
Josh Triplett95aebc42013-08-20 17:20:16 -07001697 * Parse a file containing a single int.
1698 */
1699int parse_int_file(const char *fmt, ...)
1700{
1701 va_list args;
1702 char path[PATH_MAX];
1703 FILE *filep;
1704 int value;
1705
1706 va_start(args, fmt);
1707 vsnprintf(path, sizeof(path), fmt, args);
1708 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07001709 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001710 if (fscanf(filep, "%d", &value) != 1)
1711 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07001712 fclose(filep);
1713 return value;
1714}
1715
1716/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001717 * get_cpu_position_in_core(cpu)
1718 * return the position of the CPU among its HT siblings in the core
1719 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04001720 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001721int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001722{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001723 char path[64];
1724 FILE *filep;
1725 int this_cpu;
1726 char character;
1727 int i;
1728
1729 sprintf(path,
1730 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
1731 cpu);
1732 filep = fopen(path, "r");
1733 if (filep == NULL) {
1734 perror(path);
1735 exit(1);
1736 }
1737
1738 for (i = 0; i < topo.num_threads_per_core; i++) {
1739 fscanf(filep, "%d", &this_cpu);
1740 if (this_cpu == cpu) {
1741 fclose(filep);
1742 return i;
1743 }
1744
1745 /* Account for no separator after last thread*/
1746 if (i != (topo.num_threads_per_core - 1))
1747 fscanf(filep, "%c", &character);
1748 }
1749
1750 fclose(filep);
1751 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04001752}
1753
Len Brownc98d5d92012-06-04 00:56:40 -04001754/*
1755 * cpu_is_first_core_in_package(cpu)
1756 * return 1 if given CPU is 1st core in package
1757 */
1758int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001759{
Josh Triplett95aebc42013-08-20 17:20:16 -07001760 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001761}
1762
1763int get_physical_package_id(int cpu)
1764{
Josh Triplett95aebc42013-08-20 17:20:16 -07001765 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001766}
1767
1768int get_core_id(int cpu)
1769{
Josh Triplett95aebc42013-08-20 17:20:16 -07001770 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04001771}
1772
Len Brownc98d5d92012-06-04 00:56:40 -04001773int get_num_ht_siblings(int cpu)
1774{
1775 char path[80];
1776 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001777 int sib1;
1778 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001779 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001780 char str[100];
1781 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04001782
1783 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07001784 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001785
Len Brownc98d5d92012-06-04 00:56:40 -04001786 /*
1787 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001788 * A ',' separated or '-' separated set of numbers
1789 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04001790 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001791 fscanf(filep, "%d%c\n", &sib1, &character);
1792 fseek(filep, 0, SEEK_SET);
1793 fgets(str, 100, filep);
1794 ch = strchr(str, character);
1795 while (ch != NULL) {
1796 matches++;
1797 ch = strchr(ch+1, character);
1798 }
Len Brownc98d5d92012-06-04 00:56:40 -04001799
1800 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07001801 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04001802}
1803
Len Brown103a8fe2010-10-22 23:53:03 -04001804/*
Len Brownc98d5d92012-06-04 00:56:40 -04001805 * run func(thread, core, package) in topology order
1806 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04001807 */
1808
Len Brownc98d5d92012-06-04 00:56:40 -04001809int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
1810 struct pkg_data *, struct thread_data *, struct core_data *,
1811 struct pkg_data *), struct thread_data *thread_base,
1812 struct core_data *core_base, struct pkg_data *pkg_base,
1813 struct thread_data *thread_base2, struct core_data *core_base2,
1814 struct pkg_data *pkg_base2)
1815{
1816 int retval, pkg_no, core_no, thread_no;
1817
1818 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
1819 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
1820 for (thread_no = 0; thread_no <
1821 topo.num_threads_per_core; ++thread_no) {
1822 struct thread_data *t, *t2;
1823 struct core_data *c, *c2;
1824 struct pkg_data *p, *p2;
1825
1826 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
1827
1828 if (cpu_is_not_present(t->cpu_id))
1829 continue;
1830
1831 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
1832
1833 c = GET_CORE(core_base, core_no, pkg_no);
1834 c2 = GET_CORE(core_base2, core_no, pkg_no);
1835
1836 p = GET_PKG(pkg_base, pkg_no);
1837 p2 = GET_PKG(pkg_base2, pkg_no);
1838
1839 retval = func(t, c, p, t2, c2, p2);
1840 if (retval)
1841 return retval;
1842 }
1843 }
1844 }
1845 return 0;
1846}
1847
1848/*
1849 * run func(cpu) on every cpu in /proc/stat
1850 * return max_cpu number
1851 */
1852int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04001853{
1854 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04001855 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04001856 int retval;
1857
Josh Triplett57a42a32013-08-20 17:20:17 -07001858 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04001859
1860 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07001861 if (retval != 0)
1862 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04001863
Len Brownc98d5d92012-06-04 00:56:40 -04001864 while (1) {
1865 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 -04001866 if (retval != 1)
1867 break;
1868
Len Brownc98d5d92012-06-04 00:56:40 -04001869 retval = func(cpu_num);
1870 if (retval) {
1871 fclose(fp);
1872 return(retval);
1873 }
Len Brown103a8fe2010-10-22 23:53:03 -04001874 }
1875 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04001876 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001877}
1878
1879void re_initialize(void)
1880{
Len Brownc98d5d92012-06-04 00:56:40 -04001881 free_all_buffers();
1882 setup_all_buffers();
1883 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04001884}
1885
Len Brownc98d5d92012-06-04 00:56:40 -04001886
Len Brown103a8fe2010-10-22 23:53:03 -04001887/*
Len Brownc98d5d92012-06-04 00:56:40 -04001888 * count_cpus()
1889 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04001890 */
Len Brownc98d5d92012-06-04 00:56:40 -04001891int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04001892{
Len Brownc98d5d92012-06-04 00:56:40 -04001893 if (topo.max_cpu_num < cpu)
1894 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04001895
Len Brownc98d5d92012-06-04 00:56:40 -04001896 topo.num_cpus += 1;
1897 return 0;
1898}
1899int mark_cpu_present(int cpu)
1900{
1901 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04001902 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001903}
1904
Len Brown562a2d32016-02-26 23:48:05 -05001905/*
1906 * snapshot_proc_interrupts()
1907 *
1908 * read and record summary of /proc/interrupts
1909 *
1910 * return 1 if config change requires a restart, else return 0
1911 */
1912int snapshot_proc_interrupts(void)
1913{
1914 static FILE *fp;
1915 int column, retval;
1916
1917 if (fp == NULL)
1918 fp = fopen_or_die("/proc/interrupts", "r");
1919 else
1920 rewind(fp);
1921
1922 /* read 1st line of /proc/interrupts to get cpu* name for each column */
1923 for (column = 0; column < topo.num_cpus; ++column) {
1924 int cpu_number;
1925
1926 retval = fscanf(fp, " CPU%d", &cpu_number);
1927 if (retval != 1)
1928 break;
1929
1930 if (cpu_number > topo.max_cpu_num) {
1931 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
1932 return 1;
1933 }
1934
1935 irq_column_2_cpu[column] = cpu_number;
1936 irqs_per_cpu[cpu_number] = 0;
1937 }
1938
1939 /* read /proc/interrupt count lines and sum up irqs per cpu */
1940 while (1) {
1941 int column;
1942 char buf[64];
1943
1944 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
1945 if (retval != 1)
1946 break;
1947
1948 /* read the count per cpu */
1949 for (column = 0; column < topo.num_cpus; ++column) {
1950
1951 int cpu_number, irq_count;
1952
1953 retval = fscanf(fp, " %d", &irq_count);
1954 if (retval != 1)
1955 break;
1956
1957 cpu_number = irq_column_2_cpu[column];
1958 irqs_per_cpu[cpu_number] += irq_count;
1959
1960 }
1961
1962 while (getc(fp) != '\n')
1963 ; /* flush interrupt description */
1964
1965 }
1966 return 0;
1967}
Len Brown27d47352016-02-27 00:37:54 -05001968/*
Len Brownfdf676e2016-02-27 01:28:12 -05001969 * snapshot_gfx_rc6_ms()
1970 *
1971 * record snapshot of
1972 * /sys/class/drm/card0/power/rc6_residency_ms
1973 *
1974 * return 1 if config change requires a restart, else return 0
1975 */
1976int snapshot_gfx_rc6_ms(void)
1977{
1978 FILE *fp;
1979 int retval;
1980
1981 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
1982
1983 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
1984 if (retval != 1)
1985 err(1, "GFX rc6");
1986
1987 fclose(fp);
1988
1989 return 0;
1990}
1991/*
Len Brown27d47352016-02-27 00:37:54 -05001992 * snapshot_gfx_mhz()
1993 *
1994 * record snapshot of
1995 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
1996 *
1997 * return 1 if config change requires a restart, else return 0
1998 */
1999int snapshot_gfx_mhz(void)
2000{
2001 static FILE *fp;
2002 int retval;
2003
2004 if (fp == NULL)
2005 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
2006 else
2007 rewind(fp);
2008
2009 retval = fscanf(fp, "%d", &gfx_cur_mhz);
2010 if (retval != 1)
2011 err(1, "GFX MHz");
2012
2013 return 0;
2014}
Len Brown562a2d32016-02-26 23:48:05 -05002015
2016/*
2017 * snapshot /proc and /sys files
2018 *
2019 * return 1 if configuration restart needed, else return 0
2020 */
2021int snapshot_proc_sysfs_files(void)
2022{
2023 if (snapshot_proc_interrupts())
2024 return 1;
2025
Len Brownfdf676e2016-02-27 01:28:12 -05002026 if (do_gfx_rc6_ms)
2027 snapshot_gfx_rc6_ms();
2028
Len Brown27d47352016-02-27 00:37:54 -05002029 if (do_gfx_mhz)
2030 snapshot_gfx_mhz();
2031
Len Brown562a2d32016-02-26 23:48:05 -05002032 return 0;
2033}
2034
Len Brown103a8fe2010-10-22 23:53:03 -04002035void turbostat_loop()
2036{
Len Brownc98d5d92012-06-04 00:56:40 -04002037 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002038 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002039
Len Brown103a8fe2010-10-22 23:53:03 -04002040restart:
Len Browne52966c2012-11-08 22:38:05 -05002041 restarted++;
2042
Len Brown562a2d32016-02-26 23:48:05 -05002043 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002044 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002045 if (retval < -1) {
2046 exit(retval);
2047 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002048 if (restarted > 1) {
2049 exit(retval);
2050 }
Len Brownc98d5d92012-06-04 00:56:40 -04002051 re_initialize();
2052 goto restart;
2053 }
Len Browne52966c2012-11-08 22:38:05 -05002054 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002055 gettimeofday(&tv_even, (struct timezone *)NULL);
2056
2057 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002058 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002059 re_initialize();
2060 goto restart;
2061 }
Len Brown2a0609c2016-02-12 22:44:48 -05002062 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002063 if (snapshot_proc_sysfs_files())
2064 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002065 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002066 if (retval < -1) {
2067 exit(retval);
2068 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002069 re_initialize();
2070 goto restart;
2071 }
Len Brown103a8fe2010-10-22 23:53:03 -04002072 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002073 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -04002074 for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS);
2075 compute_average(EVEN_COUNTERS);
2076 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002077 flush_output_stdout();
Len Brown2a0609c2016-02-12 22:44:48 -05002078 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002079 if (snapshot_proc_sysfs_files())
2080 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002081 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002082 if (retval < -1) {
2083 exit(retval);
2084 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002085 re_initialize();
2086 goto restart;
2087 }
Len Brown103a8fe2010-10-22 23:53:03 -04002088 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002089 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -04002090 for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS);
2091 compute_average(ODD_COUNTERS);
2092 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002093 flush_output_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -04002094 }
2095}
2096
2097void check_dev_msr()
2098{
2099 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002100 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002101
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002102 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2103 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002104 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2105 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002106}
2107
Len Brown98481e72014-08-15 00:36:50 -04002108void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002109{
Len Brown98481e72014-08-15 00:36:50 -04002110 struct __user_cap_header_struct cap_header_data;
2111 cap_user_header_t cap_header = &cap_header_data;
2112 struct __user_cap_data_struct cap_data_data;
2113 cap_user_data_t cap_data = &cap_data_data;
2114 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2115 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002116 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002117
2118 /* check for CAP_SYS_RAWIO */
2119 cap_header->pid = getpid();
2120 cap_header->version = _LINUX_CAPABILITY_VERSION;
2121 if (capget(cap_header, cap_data) < 0)
2122 err(-6, "capget(2) failed");
2123
2124 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2125 do_exit++;
2126 warnx("capget(CAP_SYS_RAWIO) failed,"
2127 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2128 }
2129
2130 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002131 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2132 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002133 do_exit++;
2134 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2135 }
2136
2137 /* if all else fails, thell them to be root */
2138 if (do_exit)
2139 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002140 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002141
2142 if (do_exit)
2143 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002144}
2145
Len Brownd7899442015-01-23 00:12:33 -05002146/*
2147 * NHM adds support for additional MSRs:
2148 *
2149 * MSR_SMI_COUNT 0x00000034
2150 *
Len Brownec0adc52015-11-12 02:42:31 -05002151 * MSR_PLATFORM_INFO 0x000000ce
Len Brownd7899442015-01-23 00:12:33 -05002152 * MSR_NHM_SNB_PKG_CST_CFG_CTL 0x000000e2
2153 *
2154 * MSR_PKG_C3_RESIDENCY 0x000003f8
2155 * MSR_PKG_C6_RESIDENCY 0x000003f9
2156 * MSR_CORE_C3_RESIDENCY 0x000003fc
2157 * MSR_CORE_C6_RESIDENCY 0x000003fd
2158 *
Len Brownee7e38e2015-02-09 23:39:45 -05002159 * Side effect:
2160 * sets global pkg_cstate_limit to decode MSR_NHM_SNB_PKG_CST_CFG_CTL
Len Brownd7899442015-01-23 00:12:33 -05002161 */
Len Brownee7e38e2015-02-09 23:39:45 -05002162int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002163{
Len Brownee7e38e2015-02-09 23:39:45 -05002164 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002165 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002166 int *pkg_cstate_limits;
2167
Len Brown103a8fe2010-10-22 23:53:03 -04002168 if (!genuine_intel)
2169 return 0;
2170
2171 if (family != 6)
2172 return 0;
2173
Len Brown21ed5572015-10-19 22:37:40 -04002174 bclk = discover_bclk(family, model);
2175
Len Brown103a8fe2010-10-22 23:53:03 -04002176 switch (model) {
2177 case 0x1A: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2178 case 0x1E: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
2179 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
2180 case 0x25: /* Westmere Client - Clarkdale, Arrandale */
2181 case 0x2C: /* Westmere EP - Gulftown */
Len Brownee7e38e2015-02-09 23:39:45 -05002182 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2183 case 0x2F: /* Westmere-EX Xeon - Eagleton */
2184 pkg_cstate_limits = nhm_pkg_cstate_limits;
2185 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002186 case 0x2A: /* SNB */
2187 case 0x2D: /* SNB Xeon */
Len Brown553575f2011-11-18 03:32:01 -05002188 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002189 case 0x3E: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002190 pkg_cstate_limits = snb_pkg_cstate_limits;
2191 break;
Len Brown70b43402013-01-08 01:26:07 -05002192 case 0x3C: /* HSW */
Len Browne6f9bb32013-12-03 02:19:19 -05002193 case 0x3F: /* HSX */
Len Brown70b43402013-01-08 01:26:07 -05002194 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002195 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002196 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002197 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002198 case 0x4F: /* BDX */
2199 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002200 case 0x4E: /* SKL */
2201 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002202 case 0x8E: /* KBL */
2203 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002204 case 0x55: /* SKX */
Len Brownee7e38e2015-02-09 23:39:45 -05002205 pkg_cstate_limits = hsw_pkg_cstate_limits;
2206 break;
2207 case 0x37: /* BYT */
2208 case 0x4D: /* AVN */
2209 pkg_cstate_limits = slv_pkg_cstate_limits;
2210 break;
2211 case 0x4C: /* AMT */
2212 pkg_cstate_limits = amt_pkg_cstate_limits;
2213 break;
2214 case 0x57: /* PHI */
2215 pkg_cstate_limits = phi_pkg_cstate_limits;
2216 break;
Len Browne4085d52016-04-06 17:15:56 -04002217 case 0x5C: /* BXT */
2218 pkg_cstate_limits = bxt_pkg_cstate_limits;
2219 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002220 default:
2221 return 0;
2222 }
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002223 get_msr(base_cpu, MSR_NHM_SNB_PKG_CST_CFG_CTL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002224 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002225
Len Brownec0adc52015-11-12 02:42:31 -05002226 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002227 base_ratio = (msr >> 8) & 0xFF;
2228
2229 base_hz = base_ratio * bclk * 1000000;
2230 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002231 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002232}
Len Brownd7899442015-01-23 00:12:33 -05002233int has_nhm_turbo_ratio_limit(unsigned int family, unsigned int model)
2234{
Len Brownd7899442015-01-23 00:12:33 -05002235 switch (model) {
2236 /* Nehalem compatible, but do not include turbo-ratio limit support */
2237 case 0x2E: /* Nehalem-EX Xeon - Beckton */
2238 case 0x2F: /* Westmere-EX Xeon - Eagleton */
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002239 case 0x57: /* PHI - Knights Landing (different MSR definition) */
Len Brownd7899442015-01-23 00:12:33 -05002240 return 0;
2241 default:
2242 return 1;
2243 }
2244}
Len Brown6574a5d2012-09-21 00:01:31 -04002245int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2246{
2247 if (!genuine_intel)
2248 return 0;
2249
2250 if (family != 6)
2251 return 0;
2252
2253 switch (model) {
2254 case 0x3E: /* IVB Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04002255 case 0x3F: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04002256 return 1;
2257 default:
2258 return 0;
2259 }
2260}
Len Brownfcd17212015-03-23 20:29:09 -04002261int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2262{
2263 if (!genuine_intel)
2264 return 0;
2265
2266 if (family != 6)
2267 return 0;
2268
2269 switch (model) {
2270 case 0x3F: /* HSW Xeon */
2271 return 1;
2272 default:
2273 return 0;
2274 }
2275}
2276
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002277int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2278{
2279 if (!genuine_intel)
2280 return 0;
2281
2282 if (family != 6)
2283 return 0;
2284
2285 switch (model) {
2286 case 0x57: /* Knights Landing */
2287 return 1;
2288 default:
2289 return 0;
2290 }
2291}
Len Brown6fb31432015-06-17 16:23:45 -04002292int has_config_tdp(unsigned int family, unsigned int model)
2293{
2294 if (!genuine_intel)
2295 return 0;
2296
2297 if (family != 6)
2298 return 0;
2299
2300 switch (model) {
2301 case 0x3A: /* IVB */
Len Brown6fb31432015-06-17 16:23:45 -04002302 case 0x3C: /* HSW */
2303 case 0x3F: /* HSX */
2304 case 0x45: /* HSW */
2305 case 0x46: /* HSW */
2306 case 0x3D: /* BDW */
2307 case 0x47: /* BDW */
2308 case 0x4F: /* BDX */
2309 case 0x56: /* BDX-DE */
2310 case 0x4E: /* SKL */
2311 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002312 case 0x8E: /* KBL */
2313 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002314 case 0x55: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04002315
2316 case 0x57: /* Knights Landing */
2317 return 1;
2318 default:
2319 return 0;
2320 }
2321}
2322
Len Brownfcd17212015-03-23 20:29:09 -04002323static void
Colin Ian King1b693172016-03-02 13:50:25 +00002324dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04002325{
2326 if (!do_nhm_platform_info)
2327 return;
2328
2329 dump_nhm_platform_info();
2330
2331 if (has_hsw_turbo_ratio_limit(family, model))
2332 dump_hsw_turbo_ratio_limits();
2333
2334 if (has_ivt_turbo_ratio_limit(family, model))
2335 dump_ivt_turbo_ratio_limits();
2336
2337 if (has_nhm_turbo_ratio_limit(family, model))
2338 dump_nhm_turbo_ratio_limits();
2339
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002340 if (has_knl_turbo_ratio_limit(family, model))
2341 dump_knl_turbo_ratio_limits();
2342
Len Brown6fb31432015-06-17 16:23:45 -04002343 if (has_config_tdp(family, model))
2344 dump_config_tdp();
2345
Len Brownfcd17212015-03-23 20:29:09 -04002346 dump_nhm_cst_cfg();
2347}
2348
Len Brown6574a5d2012-09-21 00:01:31 -04002349
Len Brown889facb2012-11-08 00:48:57 -05002350/*
2351 * print_epb()
2352 * Decode the ENERGY_PERF_BIAS MSR
2353 */
2354int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2355{
2356 unsigned long long msr;
2357 char *epb_string;
2358 int cpu;
2359
2360 if (!has_epb)
2361 return 0;
2362
2363 cpu = t->cpu_id;
2364
2365 /* EPB is per-package */
2366 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2367 return 0;
2368
2369 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002370 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002371 return -1;
2372 }
2373
2374 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
2375 return 0;
2376
Len Browne9be7dd2015-05-26 12:19:37 -04002377 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05002378 case ENERGY_PERF_BIAS_PERFORMANCE:
2379 epb_string = "performance";
2380 break;
2381 case ENERGY_PERF_BIAS_NORMAL:
2382 epb_string = "balanced";
2383 break;
2384 case ENERGY_PERF_BIAS_POWERSAVE:
2385 epb_string = "powersave";
2386 break;
2387 default:
2388 epb_string = "custom";
2389 break;
2390 }
Len Brownb7d8c142016-02-13 23:36:17 -05002391 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05002392
2393 return 0;
2394}
Len Brown7f5c2582015-12-01 01:36:39 -05002395/*
2396 * print_hwp()
2397 * Decode the MSR_HWP_CAPABILITIES
2398 */
2399int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2400{
2401 unsigned long long msr;
2402 int cpu;
2403
2404 if (!has_hwp)
2405 return 0;
2406
2407 cpu = t->cpu_id;
2408
2409 /* MSR_HWP_CAPABILITIES is per-package */
2410 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2411 return 0;
2412
2413 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002414 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05002415 return -1;
2416 }
2417
2418 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
2419 return 0;
2420
Len Brownb7d8c142016-02-13 23:36:17 -05002421 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05002422 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
2423
2424 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
2425 if ((msr & (1 << 0)) == 0)
2426 return 0;
2427
2428 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
2429 return 0;
2430
Len Brownb7d8c142016-02-13 23:36:17 -05002431 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002432 "(high 0x%x guar 0x%x eff 0x%x low 0x%x)\n",
2433 cpu, msr,
2434 (unsigned int)HWP_HIGHEST_PERF(msr),
2435 (unsigned int)HWP_GUARANTEED_PERF(msr),
2436 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
2437 (unsigned int)HWP_LOWEST_PERF(msr));
2438
2439 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
2440 return 0;
2441
Len Brownb7d8c142016-02-13 23:36:17 -05002442 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002443 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x pkg 0x%x)\n",
2444 cpu, msr,
2445 (unsigned int)(((msr) >> 0) & 0xff),
2446 (unsigned int)(((msr) >> 8) & 0xff),
2447 (unsigned int)(((msr) >> 16) & 0xff),
2448 (unsigned int)(((msr) >> 24) & 0xff),
2449 (unsigned int)(((msr) >> 32) & 0xff3),
2450 (unsigned int)(((msr) >> 42) & 0x1));
2451
2452 if (has_hwp_pkg) {
2453 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
2454 return 0;
2455
Len Brownb7d8c142016-02-13 23:36:17 -05002456 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002457 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x)\n",
2458 cpu, msr,
2459 (unsigned int)(((msr) >> 0) & 0xff),
2460 (unsigned int)(((msr) >> 8) & 0xff),
2461 (unsigned int)(((msr) >> 16) & 0xff),
2462 (unsigned int)(((msr) >> 24) & 0xff),
2463 (unsigned int)(((msr) >> 32) & 0xff3));
2464 }
2465 if (has_hwp_notify) {
2466 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
2467 return 0;
2468
Len Brownb7d8c142016-02-13 23:36:17 -05002469 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002470 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
2471 cpu, msr,
2472 ((msr) & 0x1) ? "EN" : "Dis",
2473 ((msr) & 0x2) ? "EN" : "Dis");
2474 }
2475 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
2476 return 0;
2477
Len Brownb7d8c142016-02-13 23:36:17 -05002478 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05002479 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
2480 cpu, msr,
2481 ((msr) & 0x1) ? "" : "No-",
2482 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05002483
2484 return 0;
2485}
2486
Len Brown3a9a9412014-08-15 02:39:52 -04002487/*
2488 * print_perf_limit()
2489 */
2490int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2491{
2492 unsigned long long msr;
2493 int cpu;
2494
2495 cpu = t->cpu_id;
2496
2497 /* per-package */
2498 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2499 return 0;
2500
2501 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002502 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04002503 return -1;
2504 }
2505
2506 if (do_core_perf_limit_reasons) {
2507 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002508 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2509 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04002510 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002511 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002512 (msr & 1 << 13) ? "Transitions, " : "",
2513 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
2514 (msr & 1 << 11) ? "PkgPwrL2, " : "",
2515 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2516 (msr & 1 << 9) ? "CorePwr, " : "",
2517 (msr & 1 << 8) ? "Amps, " : "",
2518 (msr & 1 << 6) ? "VR-Therm, " : "",
2519 (msr & 1 << 5) ? "Auto-HWP, " : "",
2520 (msr & 1 << 4) ? "Graphics, " : "",
2521 (msr & 1 << 2) ? "bit2, " : "",
2522 (msr & 1 << 1) ? "ThermStatus, " : "",
2523 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002524 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 -04002525 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04002526 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04002527 (msr & 1 << 29) ? "Transitions, " : "",
2528 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
2529 (msr & 1 << 27) ? "PkgPwrL2, " : "",
2530 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2531 (msr & 1 << 25) ? "CorePwr, " : "",
2532 (msr & 1 << 24) ? "Amps, " : "",
2533 (msr & 1 << 22) ? "VR-Therm, " : "",
2534 (msr & 1 << 21) ? "Auto-HWP, " : "",
2535 (msr & 1 << 20) ? "Graphics, " : "",
2536 (msr & 1 << 18) ? "bit18, " : "",
2537 (msr & 1 << 17) ? "ThermStatus, " : "",
2538 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04002539
2540 }
2541 if (do_gfx_perf_limit_reasons) {
2542 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002543 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2544 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002545 (msr & 1 << 0) ? "PROCHOT, " : "",
2546 (msr & 1 << 1) ? "ThermStatus, " : "",
2547 (msr & 1 << 4) ? "Graphics, " : "",
2548 (msr & 1 << 6) ? "VR-Therm, " : "",
2549 (msr & 1 << 8) ? "Amps, " : "",
2550 (msr & 1 << 9) ? "GFXPwr, " : "",
2551 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2552 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002553 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002554 (msr & 1 << 16) ? "PROCHOT, " : "",
2555 (msr & 1 << 17) ? "ThermStatus, " : "",
2556 (msr & 1 << 20) ? "Graphics, " : "",
2557 (msr & 1 << 22) ? "VR-Therm, " : "",
2558 (msr & 1 << 24) ? "Amps, " : "",
2559 (msr & 1 << 25) ? "GFXPwr, " : "",
2560 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2561 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2562 }
2563 if (do_ring_perf_limit_reasons) {
2564 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002565 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
2566 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04002567 (msr & 1 << 0) ? "PROCHOT, " : "",
2568 (msr & 1 << 1) ? "ThermStatus, " : "",
2569 (msr & 1 << 6) ? "VR-Therm, " : "",
2570 (msr & 1 << 8) ? "Amps, " : "",
2571 (msr & 1 << 10) ? "PkgPwrL1, " : "",
2572 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05002573 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04002574 (msr & 1 << 16) ? "PROCHOT, " : "",
2575 (msr & 1 << 17) ? "ThermStatus, " : "",
2576 (msr & 1 << 22) ? "VR-Therm, " : "",
2577 (msr & 1 << 24) ? "Amps, " : "",
2578 (msr & 1 << 26) ? "PkgPwrL1, " : "",
2579 (msr & 1 << 27) ? "PkgPwrL2, " : "");
2580 }
2581 return 0;
2582}
2583
Len Brown889facb2012-11-08 00:48:57 -05002584#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
2585#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
2586
Colin Ian King1b693172016-03-02 13:50:25 +00002587double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05002588{
2589 unsigned long long msr;
2590
2591 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002592 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05002593 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
2594
2595 switch (model) {
2596 case 0x37:
2597 case 0x4D:
2598 return 30.0;
2599 default:
2600 return 135.0;
2601 }
2602}
2603
Andrey Semin40ee8e32014-12-05 00:07:00 -05002604/*
2605 * rapl_dram_energy_units_probe()
2606 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
2607 */
2608static double
2609rapl_dram_energy_units_probe(int model, double rapl_energy_units)
2610{
2611 /* only called for genuine_intel, family 6 */
2612
2613 switch (model) {
2614 case 0x3F: /* HSX */
2615 case 0x4F: /* BDX */
2616 case 0x56: /* BDX-DE */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002617 case 0x57: /* KNL */
Andrey Semin40ee8e32014-12-05 00:07:00 -05002618 return (rapl_dram_energy_units = 15.3 / 1000000);
2619 default:
2620 return (rapl_energy_units);
2621 }
2622}
2623
Len Brown144b44b2013-11-09 00:30:16 -05002624
Len Brown889facb2012-11-08 00:48:57 -05002625/*
2626 * rapl_probe()
2627 *
Len Brown144b44b2013-11-09 00:30:16 -05002628 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05002629 */
2630void rapl_probe(unsigned int family, unsigned int model)
2631{
2632 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05002633 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05002634 double tdp;
2635
2636 if (!genuine_intel)
2637 return;
2638
2639 if (family != 6)
2640 return;
2641
2642 switch (model) {
2643 case 0x2A:
2644 case 0x3A:
Len Brown70b43402013-01-08 01:26:07 -05002645 case 0x3C: /* HSW */
Len Brown70b43402013-01-08 01:26:07 -05002646 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002647 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002648 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002649 case 0x47: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05002650 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown889facb2012-11-08 00:48:57 -05002651 break;
Len Browne4085d52016-04-06 17:15:56 -04002652 case 0x5C: /* BXT */
2653 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
2654 break;
Len Brown0b2bb692015-03-26 00:50:30 -04002655 case 0x4E: /* SKL */
2656 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002657 case 0x8E: /* KBL */
2658 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04002659 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
2660 break;
Len Browne6f9bb32013-12-03 02:19:19 -05002661 case 0x3F: /* HSX */
Len Brown4e8e863f2014-02-27 23:28:53 -05002662 case 0x4F: /* BDX */
2663 case 0x56: /* BDX-DE */
Len Brownec53e592016-04-06 17:15:58 -04002664 case 0x55: /* SKX */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002665 case 0x57: /* KNL */
Len Brown0b2bb692015-03-26 00:50:30 -04002666 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 -05002667 break;
Len Brown889facb2012-11-08 00:48:57 -05002668 case 0x2D:
2669 case 0x3E:
Len Brown0b2bb692015-03-26 00:50:30 -04002670 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 -05002671 break;
2672 case 0x37: /* BYT */
2673 case 0x4D: /* AVN */
2674 do_rapl = RAPL_PKG | RAPL_CORES ;
Len Brown889facb2012-11-08 00:48:57 -05002675 break;
2676 default:
2677 return;
2678 }
2679
2680 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002681 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05002682 return;
2683
2684 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown144b44b2013-11-09 00:30:16 -05002685 if (model == 0x37)
2686 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
2687 else
2688 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05002689
Andrey Semin40ee8e32014-12-05 00:07:00 -05002690 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
2691
Len Brown144b44b2013-11-09 00:30:16 -05002692 time_unit = msr >> 16 & 0xF;
2693 if (time_unit == 0)
2694 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05002695
Len Brown144b44b2013-11-09 00:30:16 -05002696 rapl_time_units = 1.0 / (1 << (time_unit));
2697
2698 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05002699
2700 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brownd8af6f52015-02-10 01:56:38 -05002701 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05002702 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05002703
2704 return;
2705}
2706
Colin Ian King1b693172016-03-02 13:50:25 +00002707void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04002708{
2709 if (!genuine_intel)
2710 return;
2711
2712 if (family != 6)
2713 return;
2714
2715 switch (model) {
2716 case 0x3C: /* HSW */
2717 case 0x45: /* HSW */
2718 case 0x46: /* HSW */
2719 do_gfx_perf_limit_reasons = 1;
2720 case 0x3F: /* HSX */
2721 do_core_perf_limit_reasons = 1;
2722 do_ring_perf_limit_reasons = 1;
2723 default:
2724 return;
2725 }
2726}
2727
Len Brown889facb2012-11-08 00:48:57 -05002728int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2729{
2730 unsigned long long msr;
2731 unsigned int dts;
2732 int cpu;
2733
2734 if (!(do_dts || do_ptm))
2735 return 0;
2736
2737 cpu = t->cpu_id;
2738
2739 /* DTS is per-core, no need to print for each thread */
2740 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
2741 return 0;
2742
2743 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002744 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002745 return -1;
2746 }
2747
2748 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
2749 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
2750 return 0;
2751
2752 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002753 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002754 cpu, msr, tcc_activation_temp - dts);
2755
2756#ifdef THERM_DEBUG
2757 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
2758 return 0;
2759
2760 dts = (msr >> 16) & 0x7F;
2761 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002762 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002763 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2764#endif
2765 }
2766
2767
2768 if (do_dts) {
2769 unsigned int resolution;
2770
2771 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
2772 return 0;
2773
2774 dts = (msr >> 16) & 0x7F;
2775 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05002776 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05002777 cpu, msr, tcc_activation_temp - dts, resolution);
2778
2779#ifdef THERM_DEBUG
2780 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
2781 return 0;
2782
2783 dts = (msr >> 16) & 0x7F;
2784 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05002785 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05002786 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
2787#endif
2788 }
2789
2790 return 0;
2791}
Len Brown36229892016-02-26 20:51:02 -05002792
Len Brown889facb2012-11-08 00:48:57 -05002793void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
2794{
Len Brownb7d8c142016-02-13 23:36:17 -05002795 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002796 cpu, label,
2797 ((msr >> 15) & 1) ? "EN" : "DIS",
2798 ((msr >> 0) & 0x7FFF) * rapl_power_units,
2799 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
2800 (((msr >> 16) & 1) ? "EN" : "DIS"));
2801
2802 return;
2803}
2804
2805int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2806{
2807 unsigned long long msr;
2808 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05002809
2810 if (!do_rapl)
2811 return 0;
2812
2813 /* RAPL counters are per package, so print only for 1st thread/package */
2814 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2815 return 0;
2816
2817 cpu = t->cpu_id;
2818 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002819 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002820 return -1;
2821 }
2822
2823 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
2824 return -1;
2825
Len Brownd8af6f52015-02-10 01:56:38 -05002826 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05002827 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx "
Len Brown889facb2012-11-08 00:48:57 -05002828 "(%f Watts, %f Joules, %f sec.)\n", cpu, msr,
Len Brown144b44b2013-11-09 00:30:16 -05002829 rapl_power_units, rapl_energy_units, rapl_time_units);
Len Brown889facb2012-11-08 00:48:57 -05002830 }
Len Brown144b44b2013-11-09 00:30:16 -05002831 if (do_rapl & RAPL_PKG_POWER_INFO) {
2832
Len Brown889facb2012-11-08 00:48:57 -05002833 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
2834 return -5;
2835
2836
Len Brownb7d8c142016-02-13 23:36:17 -05002837 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 -05002838 cpu, msr,
2839 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2840 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2841 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2842 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
2843
Len Brown144b44b2013-11-09 00:30:16 -05002844 }
2845 if (do_rapl & RAPL_PKG) {
2846
Len Brown889facb2012-11-08 00:48:57 -05002847 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
2848 return -9;
2849
Len Brownb7d8c142016-02-13 23:36:17 -05002850 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002851 cpu, msr, (msr >> 63) & 1 ? "": "UN");
2852
2853 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05002854 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05002855 cpu,
2856 ((msr >> 47) & 1) ? "EN" : "DIS",
2857 ((msr >> 32) & 0x7FFF) * rapl_power_units,
2858 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
2859 ((msr >> 48) & 1) ? "EN" : "DIS");
2860 }
2861
Len Brown0b2bb692015-03-26 00:50:30 -04002862 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05002863 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
2864 return -6;
2865
Len Brownb7d8c142016-02-13 23:36:17 -05002866 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 -05002867 cpu, msr,
2868 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2869 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2870 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
2871 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04002872 }
2873 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05002874 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
2875 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002876 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002877 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2878
2879 print_power_limit_msr(cpu, msr, "DRAM Limit");
2880 }
Len Brown144b44b2013-11-09 00:30:16 -05002881 if (do_rapl & RAPL_CORE_POLICY) {
Len Brownd8af6f52015-02-10 01:56:38 -05002882 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002883 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
2884 return -7;
2885
Len Brownb7d8c142016-02-13 23:36:17 -05002886 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05002887 }
2888 }
2889 if (do_rapl & RAPL_CORES) {
Len Brownd8af6f52015-02-10 01:56:38 -05002890 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002891
2892 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
2893 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002894 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002895 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2896 print_power_limit_msr(cpu, msr, "Cores Limit");
2897 }
2898 }
2899 if (do_rapl & RAPL_GFX) {
Len Brownd8af6f52015-02-10 01:56:38 -05002900 if (debug) {
Len Brown889facb2012-11-08 00:48:57 -05002901 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
2902 return -8;
2903
Len Brownb7d8c142016-02-13 23:36:17 -05002904 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05002905
2906 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
2907 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05002908 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown889facb2012-11-08 00:48:57 -05002909 cpu, msr, (msr >> 31) & 1 ? "": "UN");
2910 print_power_limit_msr(cpu, msr, "GFX Limit");
2911 }
2912 }
2913 return 0;
2914}
2915
Len Brownd7899442015-01-23 00:12:33 -05002916/*
2917 * SNB adds support for additional MSRs:
2918 *
2919 * MSR_PKG_C7_RESIDENCY 0x000003fa
2920 * MSR_CORE_C7_RESIDENCY 0x000003fe
2921 * MSR_PKG_C2_RESIDENCY 0x0000060d
2922 */
Len Brown103a8fe2010-10-22 23:53:03 -04002923
Len Brownd7899442015-01-23 00:12:33 -05002924int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002925{
2926 if (!genuine_intel)
2927 return 0;
2928
2929 switch (model) {
2930 case 0x2A:
2931 case 0x2D:
Len Brown650a37f2012-06-03 23:34:44 -04002932 case 0x3A: /* IVB */
Len Brown13006512012-09-26 18:11:31 -04002933 case 0x3E: /* IVB Xeon */
Len Brown70b43402013-01-08 01:26:07 -05002934 case 0x3C: /* HSW */
2935 case 0x3F: /* HSW */
2936 case 0x45: /* HSW */
Len Brown149c2312013-03-15 10:58:02 -04002937 case 0x46: /* HSW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002938 case 0x3D: /* BDW */
Len Brown48a06312015-02-10 15:38:04 -05002939 case 0x47: /* BDW */
Len Brown4e8e863f2014-02-27 23:28:53 -05002940 case 0x4F: /* BDX */
2941 case 0x56: /* BDX-DE */
Len Brown0b2bb692015-03-26 00:50:30 -04002942 case 0x4E: /* SKL */
2943 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002944 case 0x8E: /* KBL */
2945 case 0x9E: /* KBL */
Len Brownec53e592016-04-06 17:15:58 -04002946 case 0x55: /* SKX */
Len Browne4085d52016-04-06 17:15:56 -04002947 case 0x5C: /* BXT */
Len Brown103a8fe2010-10-22 23:53:03 -04002948 return 1;
2949 }
2950 return 0;
2951}
2952
Len Brownd7899442015-01-23 00:12:33 -05002953/*
2954 * HSW adds support for additional MSRs:
2955 *
Len Brown5a634262016-04-06 17:15:55 -04002956 * MSR_PKG_C8_RESIDENCY 0x00000630
2957 * MSR_PKG_C9_RESIDENCY 0x00000631
2958 * MSR_PKG_C10_RESIDENCY 0x00000632
2959 *
2960 * MSR_PKGC8_IRTL 0x00000633
2961 * MSR_PKGC9_IRTL 0x00000634
2962 * MSR_PKGC10_IRTL 0x00000635
2963 *
Len Brownd7899442015-01-23 00:12:33 -05002964 */
2965int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002966{
2967 if (!genuine_intel)
2968 return 0;
2969
2970 switch (model) {
Len Brown4e8e863f2014-02-27 23:28:53 -05002971 case 0x45: /* HSW */
2972 case 0x3D: /* BDW */
Len Brown0b2bb692015-03-26 00:50:30 -04002973 case 0x4E: /* SKL */
2974 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002975 case 0x8E: /* KBL */
2976 case 0x9E: /* KBL */
Len Browne4085d52016-04-06 17:15:56 -04002977 case 0x5C: /* BXT */
Kristen Carlson Accardica587102012-11-21 05:22:43 -08002978 return 1;
2979 }
2980 return 0;
2981}
2982
Len Brown0b2bb692015-03-26 00:50:30 -04002983/*
2984 * SKL adds support for additional MSRS:
2985 *
2986 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
2987 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
2988 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
2989 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
2990 */
2991int has_skl_msrs(unsigned int family, unsigned int model)
2992{
2993 if (!genuine_intel)
2994 return 0;
2995
2996 switch (model) {
2997 case 0x4E: /* SKL */
2998 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04002999 case 0x8E: /* KBL */
3000 case 0x9E: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04003001 return 1;
3002 }
3003 return 0;
3004}
3005
3006
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003007
Len Brown144b44b2013-11-09 00:30:16 -05003008int is_slm(unsigned int family, unsigned int model)
3009{
3010 if (!genuine_intel)
3011 return 0;
3012 switch (model) {
3013 case 0x37: /* BYT */
3014 case 0x4D: /* AVN */
3015 return 1;
3016 }
3017 return 0;
3018}
3019
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003020int is_knl(unsigned int family, unsigned int model)
3021{
3022 if (!genuine_intel)
3023 return 0;
3024 switch (model) {
3025 case 0x57: /* KNL */
3026 return 1;
3027 }
3028 return 0;
3029}
3030
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003031unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3032{
3033 if (is_knl(family, model))
3034 return 1024;
3035 return 1;
3036}
3037
Len Brown144b44b2013-11-09 00:30:16 -05003038#define SLM_BCLK_FREQS 5
3039double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3040
3041double slm_bclk(void)
3042{
3043 unsigned long long msr = 3;
3044 unsigned int i;
3045 double freq;
3046
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003047 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003048 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05003049
3050 i = msr & 0xf;
3051 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05003052 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Len Brown144b44b2013-11-09 00:30:16 -05003053 msr = 3;
3054 }
3055 freq = slm_freq_table[i];
3056
Len Brownb7d8c142016-02-13 23:36:17 -05003057 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05003058
3059 return freq;
3060}
3061
Len Brown103a8fe2010-10-22 23:53:03 -04003062double discover_bclk(unsigned int family, unsigned int model)
3063{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01003064 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04003065 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05003066 else if (is_slm(family, model))
3067 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04003068 else
3069 return 133.33;
3070}
3071
Len Brown889facb2012-11-08 00:48:57 -05003072/*
3073 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3074 * the Thermal Control Circuit (TCC) activates.
3075 * This is usually equal to tjMax.
3076 *
3077 * Older processors do not have this MSR, so there we guess,
3078 * but also allow cmdline over-ride with -T.
3079 *
3080 * Several MSR temperature values are in units of degrees-C
3081 * below this value, including the Digital Thermal Sensor (DTS),
3082 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3083 */
3084int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3085{
3086 unsigned long long msr;
3087 unsigned int target_c_local;
3088 int cpu;
3089
3090 /* tcc_activation_temp is used only for dts or ptm */
3091 if (!(do_dts || do_ptm))
3092 return 0;
3093
3094 /* this is a per-package concept */
3095 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3096 return 0;
3097
3098 cpu = t->cpu_id;
3099 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003100 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003101 return -1;
3102 }
3103
3104 if (tcc_activation_temp_override != 0) {
3105 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05003106 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003107 cpu, tcc_activation_temp);
3108 return 0;
3109 }
3110
3111 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05003112 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05003113 goto guess;
3114
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003115 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003116 goto guess;
3117
Jean Delvare34821242014-05-01 11:40:19 +02003118 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05003119
Len Brownd8af6f52015-02-10 01:56:38 -05003120 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003121 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003122 cpu, msr, target_c_local);
3123
Jean Delvare34821242014-05-01 11:40:19 +02003124 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05003125 goto guess;
3126
3127 tcc_activation_temp = target_c_local;
3128
3129 return 0;
3130
3131guess:
3132 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05003133 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05003134 cpu, tcc_activation_temp);
3135
3136 return 0;
3137}
Len Brown69807a62015-11-21 12:22:47 -05003138
Len Brownaa8d8cc2016-03-11 13:26:03 -05003139void decode_feature_control_msr(void)
3140{
3141 unsigned long long msr;
3142
3143 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3144 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3145 base_cpu, msr,
3146 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3147 msr & (1 << 18) ? "SGX" : "");
3148}
3149
Len Brown69807a62015-11-21 12:22:47 -05003150void decode_misc_enable_msr(void)
3151{
3152 unsigned long long msr;
3153
3154 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003155 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%s %s %s)\n",
Len Brown69807a62015-11-21 12:22:47 -05003156 base_cpu, msr,
3157 msr & (1 << 3) ? "TCC" : "",
3158 msr & (1 << 16) ? "EIST" : "",
3159 msr & (1 << 18) ? "MONITOR" : "");
3160}
3161
Len Brownf0057312015-12-03 01:35:36 -05003162/*
3163 * Decode MSR_MISC_PWR_MGMT
3164 *
3165 * Decode the bits according to the Nehalem documentation
3166 * bit[0] seems to continue to have same meaning going forward
3167 * bit[1] less so...
3168 */
3169void decode_misc_pwr_mgmt_msr(void)
3170{
3171 unsigned long long msr;
3172
3173 if (!do_nhm_platform_info)
3174 return;
3175
3176 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003177 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB)\n",
Len Brownf0057312015-12-03 01:35:36 -05003178 base_cpu, msr,
3179 msr & (1 << 0) ? "DIS" : "EN",
3180 msr & (1 << 1) ? "EN" : "DIS");
3181}
Len Brown7f5c2582015-12-01 01:36:39 -05003182
Len Brownfcd17212015-03-23 20:29:09 -04003183void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04003184{
Len Brown61a87ba2015-11-23 02:30:51 -05003185 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04003186 unsigned int fms, family, model, stepping;
3187
3188 eax = ebx = ecx = edx = 0;
3189
Len Brown5aea2f72016-03-13 03:14:35 -04003190 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003191
3192 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
3193 genuine_intel = 1;
3194
Len Brownd8af6f52015-02-10 01:56:38 -05003195 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003196 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04003197 (char *)&ebx, (char *)&edx, (char *)&ecx);
3198
Len Brown5aea2f72016-03-13 03:14:35 -04003199 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003200 family = (fms >> 8) & 0xf;
3201 model = (fms >> 4) & 0xf;
3202 stepping = fms & 0xf;
3203 if (family == 6 || family == 0xf)
3204 model += ((fms >> 16) & 0xf) << 4;
3205
Len Brown69807a62015-11-21 12:22:47 -05003206 if (debug) {
Len Brownb7d8c142016-02-13 23:36:17 -05003207 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04003208 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05003209 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05003210 ecx & (1 << 0) ? "SSE3" : "-",
3211 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05003212 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05003213 ecx & (1 << 7) ? "EIST" : "-",
3214 ecx & (1 << 8) ? "TM2" : "-",
3215 edx & (1 << 4) ? "TSC" : "-",
3216 edx & (1 << 5) ? "MSR" : "-",
3217 edx & (1 << 22) ? "ACPI-TM" : "-",
3218 edx & (1 << 29) ? "TM" : "-");
3219 }
Len Brown103a8fe2010-10-22 23:53:03 -04003220
Josh Triplettb2c95d92013-08-20 17:20:18 -07003221 if (!(edx & (1 << 5)))
3222 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04003223
3224 /*
3225 * check max extended function levels of CPUID.
3226 * This is needed to check for invariant TSC.
3227 * This check is valid for both Intel and AMD.
3228 */
3229 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003230 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003231
Len Brown61a87ba2015-11-23 02:30:51 -05003232 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04003233
Len Brownd7899442015-01-23 00:12:33 -05003234 /*
3235 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
3236 * this check is valid for both Intel and AMD
3237 */
Len Brown5aea2f72016-03-13 03:14:35 -04003238 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05003239 has_invariant_tsc = edx & (1 << 8);
3240 }
Len Brown103a8fe2010-10-22 23:53:03 -04003241
3242 /*
3243 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
3244 * this check is valid for both Intel and AMD
3245 */
3246
Len Brown5aea2f72016-03-13 03:14:35 -04003247 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01003248 has_aperf = ecx & (1 << 0);
Len Brown889facb2012-11-08 00:48:57 -05003249 do_dts = eax & (1 << 0);
3250 do_ptm = eax & (1 << 6);
Len Brown7f5c2582015-12-01 01:36:39 -05003251 has_hwp = eax & (1 << 7);
3252 has_hwp_notify = eax & (1 << 8);
3253 has_hwp_activity_window = eax & (1 << 9);
3254 has_hwp_epp = eax & (1 << 10);
3255 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05003256 has_epb = ecx & (1 << 3);
3257
Len Brownd8af6f52015-02-10 01:56:38 -05003258 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003259 fprintf(outf, "CPUID(6): %sAPERF, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05003260 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
3261 has_aperf ? "" : "No-",
3262 do_dts ? "" : "No-",
3263 do_ptm ? "" : "No-",
3264 has_hwp ? "" : "No-",
3265 has_hwp_notify ? "" : "No-",
3266 has_hwp_activity_window ? "" : "No-",
3267 has_hwp_epp ? "" : "No-",
3268 has_hwp_pkg ? "" : "No-",
3269 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04003270
Len Brown69807a62015-11-21 12:22:47 -05003271 if (debug)
3272 decode_misc_enable_msr();
3273
Len Brown8ae72252016-04-06 17:15:54 -04003274 if (max_level >= 0x7 && debug) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05003275 int has_sgx;
3276
3277 ecx = 0;
3278
3279 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
3280
3281 has_sgx = ebx & (1 << 2);
3282 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
3283
3284 if (has_sgx)
3285 decode_feature_control_msr();
3286 }
3287
Len Brown61a87ba2015-11-23 02:30:51 -05003288 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04003289 unsigned int eax_crystal;
3290 unsigned int ebx_tsc;
3291
3292 /*
3293 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
3294 */
3295 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003296 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04003297
3298 if (ebx_tsc != 0) {
3299
3300 if (debug && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05003301 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003302 eax_crystal, ebx_tsc, crystal_hz);
3303
3304 if (crystal_hz == 0)
3305 switch(model) {
3306 case 0x4E: /* SKL */
3307 case 0x5E: /* SKL */
Len Browncdc57272016-04-06 17:15:59 -04003308 case 0x8E: /* KBL */
3309 case 0x9E: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04003310 crystal_hz = 24000000; /* 24.0 MHz */
3311 break;
Len Brownec53e592016-04-06 17:15:58 -04003312 case 0x55: /* SKX */
3313 crystal_hz = 25000000; /* 25.0 MHz */
3314 break;
Len Browne8efbc82016-04-06 17:15:57 -04003315 case 0x5C: /* BXT */
3316 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04003317 break;
3318 default:
3319 crystal_hz = 0;
3320 }
3321
3322 if (crystal_hz) {
3323 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
3324 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003325 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04003326 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
3327 }
3328 }
3329 }
Len Brown61a87ba2015-11-23 02:30:51 -05003330 if (max_level >= 0x16) {
3331 unsigned int base_mhz, max_mhz, bus_mhz, edx;
3332
3333 /*
3334 * CPUID 16H Base MHz, Max MHz, Bus MHz
3335 */
3336 base_mhz = max_mhz = bus_mhz = edx = 0;
3337
Len Brown5aea2f72016-03-13 03:14:35 -04003338 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown61a87ba2015-11-23 02:30:51 -05003339 if (debug)
Len Brownb7d8c142016-02-13 23:36:17 -05003340 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05003341 base_mhz, max_mhz, bus_mhz);
3342 }
Len Brown8a5bdf42015-04-01 21:02:57 -04003343
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003344 if (has_aperf)
3345 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
3346
Len Brownee7e38e2015-02-09 23:39:45 -05003347 do_nhm_platform_info = do_nhm_cstates = do_smi = probe_nhm_msrs(family, model);
Len Brownd7899442015-01-23 00:12:33 -05003348 do_snb_cstates = has_snb_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003349 do_irtl_snb = has_snb_msrs(family, model);
Len Brownee7e38e2015-02-09 23:39:45 -05003350 do_pc2 = do_snb_cstates && (pkg_cstate_limit >= PCL__2);
3351 do_pc3 = (pkg_cstate_limit >= PCL__3);
3352 do_pc6 = (pkg_cstate_limit >= PCL__6);
3353 do_pc7 = do_snb_cstates && (pkg_cstate_limit >= PCL__7);
Len Brownd7899442015-01-23 00:12:33 -05003354 do_c8_c9_c10 = has_hsw_msrs(family, model);
Len Brown5a634262016-04-06 17:15:55 -04003355 do_irtl_hsw = has_hsw_msrs(family, model);
Len Brown0b2bb692015-03-26 00:50:30 -04003356 do_skl_residency = has_skl_msrs(family, model);
Len Brown144b44b2013-11-09 00:30:16 -05003357 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003358 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04003359
Len Brownf0057312015-12-03 01:35:36 -05003360 if (debug)
3361 decode_misc_pwr_mgmt_msr();
3362
Len Brown889facb2012-11-08 00:48:57 -05003363 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04003364 perf_limit_reasons_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05003365
Len Brownfcd17212015-03-23 20:29:09 -04003366 if (debug)
Colin Ian King1b693172016-03-02 13:50:25 +00003367 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04003368
Len Browna2b7b742015-09-26 00:12:38 -04003369 if (has_skl_msrs(family, model))
3370 calculate_tsc_tweak();
3371
Len Brownfdf676e2016-02-27 01:28:12 -05003372 do_gfx_rc6_ms = !access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK);
3373
Len Brown27d47352016-02-27 00:37:54 -05003374 do_gfx_mhz = !access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK);
3375
Len Brown889facb2012-11-08 00:48:57 -05003376 return;
Len Brown103a8fe2010-10-22 23:53:03 -04003377}
3378
Len Brownd8af6f52015-02-10 01:56:38 -05003379void help()
Len Brown103a8fe2010-10-22 23:53:03 -04003380{
Len Brownb7d8c142016-02-13 23:36:17 -05003381 fprintf(outf,
Len Brownd8af6f52015-02-10 01:56:38 -05003382 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
3383 "\n"
3384 "Turbostat forks the specified COMMAND and prints statistics\n"
3385 "when COMMAND completes.\n"
3386 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
3387 "to print statistics, until interrupted.\n"
3388 "--debug run in \"debug\" mode\n"
3389 "--interval sec Override default 5-second measurement interval\n"
3390 "--help print this help message\n"
3391 "--counter msr print 32-bit counter at address \"msr\"\n"
3392 "--Counter msr print 64-bit Counter at address \"msr\"\n"
Len Brownb7d8c142016-02-13 23:36:17 -05003393 "--out file create or truncate \"file\" for all output\n"
Len Brownd8af6f52015-02-10 01:56:38 -05003394 "--msr msr print 32-bit value at address \"msr\"\n"
3395 "--MSR msr print 64-bit Value at address \"msr\"\n"
3396 "--version print version information\n"
3397 "\n"
3398 "For more help, run \"man turbostat\"\n");
Len Brown103a8fe2010-10-22 23:53:03 -04003399}
3400
3401
3402/*
3403 * in /dev/cpu/ return success for names that are numbers
3404 * ie. filter out ".", "..", "microcode".
3405 */
3406int dir_filter(const struct dirent *dirp)
3407{
3408 if (isdigit(dirp->d_name[0]))
3409 return 1;
3410 else
3411 return 0;
3412}
3413
3414int open_dev_cpu_msr(int dummy1)
3415{
3416 return 0;
3417}
3418
Len Brownc98d5d92012-06-04 00:56:40 -04003419void topology_probe()
3420{
3421 int i;
3422 int max_core_id = 0;
3423 int max_package_id = 0;
3424 int max_siblings = 0;
3425 struct cpu_topology {
3426 int core_id;
3427 int physical_package_id;
3428 } *cpus;
3429
3430 /* Initialize num_cpus, max_cpu_num */
3431 topo.num_cpus = 0;
3432 topo.max_cpu_num = 0;
3433 for_all_proc_cpus(count_cpus);
3434 if (!summary_only && topo.num_cpus > 1)
3435 show_cpu = 1;
3436
Len Brownd8af6f52015-02-10 01:56:38 -05003437 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003438 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04003439
3440 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003441 if (cpus == NULL)
3442 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04003443
3444 /*
3445 * Allocate and initialize cpu_present_set
3446 */
3447 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003448 if (cpu_present_set == NULL)
3449 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003450 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3451 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
3452 for_all_proc_cpus(mark_cpu_present);
3453
3454 /*
3455 * Allocate and initialize cpu_affinity_set
3456 */
3457 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07003458 if (cpu_affinity_set == NULL)
3459 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04003460 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
3461 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
3462
3463
3464 /*
3465 * For online cpus
3466 * find max_core_id, max_package_id
3467 */
3468 for (i = 0; i <= topo.max_cpu_num; ++i) {
3469 int siblings;
3470
3471 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05003472 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003473 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04003474 continue;
3475 }
3476 cpus[i].core_id = get_core_id(i);
3477 if (cpus[i].core_id > max_core_id)
3478 max_core_id = cpus[i].core_id;
3479
3480 cpus[i].physical_package_id = get_physical_package_id(i);
3481 if (cpus[i].physical_package_id > max_package_id)
3482 max_package_id = cpus[i].physical_package_id;
3483
3484 siblings = get_num_ht_siblings(i);
3485 if (siblings > max_siblings)
3486 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003487 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003488 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003489 i, cpus[i].physical_package_id, cpus[i].core_id);
3490 }
3491 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003492 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003493 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003494 max_core_id, topo.num_cores_per_pkg);
Len Brown1cc21f72015-02-23 00:34:57 -05003495 if (debug && !summary_only && topo.num_cores_per_pkg > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003496 show_core = 1;
3497
3498 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05003499 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003500 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04003501 max_package_id, topo.num_packages);
Len Brown1cc21f72015-02-23 00:34:57 -05003502 if (debug && !summary_only && topo.num_packages > 1)
Len Brownc98d5d92012-06-04 00:56:40 -04003503 show_pkg = 1;
3504
3505 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05003506 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003507 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04003508
3509 free(cpus);
3510}
3511
3512void
3513allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
3514{
3515 int i;
3516
3517 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
3518 topo.num_packages, sizeof(struct thread_data));
3519 if (*t == NULL)
3520 goto error;
3521
3522 for (i = 0; i < topo.num_threads_per_core *
3523 topo.num_cores_per_pkg * topo.num_packages; i++)
3524 (*t)[i].cpu_id = -1;
3525
3526 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
3527 sizeof(struct core_data));
3528 if (*c == NULL)
3529 goto error;
3530
3531 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
3532 (*c)[i].core_id = -1;
3533
3534 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
3535 if (*p == NULL)
3536 goto error;
3537
3538 for (i = 0; i < topo.num_packages; i++)
3539 (*p)[i].package_id = i;
3540
3541 return;
3542error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07003543 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04003544}
3545/*
3546 * init_counter()
3547 *
3548 * set cpu_id, core_num, pkg_num
3549 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
3550 *
3551 * increment topo.num_cores when 1st core in pkg seen
3552 */
3553void init_counter(struct thread_data *thread_base, struct core_data *core_base,
3554 struct pkg_data *pkg_base, int thread_num, int core_num,
3555 int pkg_num, int cpu_id)
3556{
3557 struct thread_data *t;
3558 struct core_data *c;
3559 struct pkg_data *p;
3560
3561 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
3562 c = GET_CORE(core_base, core_num, pkg_num);
3563 p = GET_PKG(pkg_base, pkg_num);
3564
3565 t->cpu_id = cpu_id;
3566 if (thread_num == 0) {
3567 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
3568 if (cpu_is_first_core_in_package(cpu_id))
3569 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
3570 }
3571
3572 c->core_id = core_num;
3573 p->package_id = pkg_num;
3574}
3575
3576
3577int initialize_counters(int cpu_id)
3578{
3579 int my_thread_id, my_core_id, my_package_id;
3580
3581 my_package_id = get_physical_package_id(cpu_id);
3582 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07003583 my_thread_id = get_cpu_position_in_core(cpu_id);
3584 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04003585 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04003586
3587 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3588 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
3589 return 0;
3590}
3591
3592void allocate_output_buffer()
3593{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003594 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04003595 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07003596 if (outp == NULL)
3597 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04003598}
Len Brown36229892016-02-26 20:51:02 -05003599void allocate_fd_percpu(void)
3600{
3601 fd_percpu = calloc(topo.max_cpu_num, sizeof(int));
3602 if (fd_percpu == NULL)
3603 err(-1, "calloc fd_percpu");
3604}
Len Brown562a2d32016-02-26 23:48:05 -05003605void allocate_irq_buffers(void)
3606{
3607 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
3608 if (irq_column_2_cpu == NULL)
3609 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04003610
Len Brown562a2d32016-02-26 23:48:05 -05003611 irqs_per_cpu = calloc(topo.max_cpu_num, sizeof(int));
3612 if (irqs_per_cpu == NULL)
3613 err(-1, "calloc %d", topo.max_cpu_num);
3614}
Len Brownc98d5d92012-06-04 00:56:40 -04003615void setup_all_buffers(void)
3616{
3617 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05003618 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05003619 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04003620 allocate_counters(&thread_even, &core_even, &package_even);
3621 allocate_counters(&thread_odd, &core_odd, &package_odd);
3622 allocate_output_buffer();
3623 for_all_proc_cpus(initialize_counters);
3624}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003625
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003626void set_base_cpu(void)
3627{
3628 base_cpu = sched_getcpu();
3629 if (base_cpu < 0)
3630 err(-ENODEV, "No valid cpus found");
3631
3632 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05003633 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003634}
3635
Len Brown103a8fe2010-10-22 23:53:03 -04003636void turbostat_init()
3637{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003638 setup_all_buffers();
3639 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04003640 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04003641 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04003642 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04003643
Len Brown103a8fe2010-10-22 23:53:03 -04003644
Len Brownd8af6f52015-02-10 01:56:38 -05003645 if (debug)
Len Brown7f5c2582015-12-01 01:36:39 -05003646 for_all_cpus(print_hwp, ODD_COUNTERS);
3647
3648 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003649 for_all_cpus(print_epb, ODD_COUNTERS);
3650
Len Brownd8af6f52015-02-10 01:56:38 -05003651 if (debug)
Len Brown3a9a9412014-08-15 02:39:52 -04003652 for_all_cpus(print_perf_limit, ODD_COUNTERS);
3653
Len Brownd8af6f52015-02-10 01:56:38 -05003654 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003655 for_all_cpus(print_rapl, ODD_COUNTERS);
3656
3657 for_all_cpus(set_temperature_target, ODD_COUNTERS);
3658
Len Brownd8af6f52015-02-10 01:56:38 -05003659 if (debug)
Len Brown889facb2012-11-08 00:48:57 -05003660 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04003661
3662 if (debug && do_irtl_snb)
3663 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04003664}
3665
3666int fork_it(char **argv)
3667{
Len Brown103a8fe2010-10-22 23:53:03 -04003668 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04003669 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04003670
Len Brownd91bb172012-11-01 00:08:19 -04003671 status = for_all_cpus(get_counters, EVEN_COUNTERS);
3672 if (status)
3673 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04003674 /* clear affinity side-effect of get_counters() */
3675 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04003676 gettimeofday(&tv_even, (struct timezone *)NULL);
3677
3678 child_pid = fork();
3679 if (!child_pid) {
3680 /* child */
3681 execvp(argv[0], argv);
3682 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04003683
3684 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07003685 if (child_pid == -1)
3686 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04003687
3688 signal(SIGINT, SIG_IGN);
3689 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07003690 if (waitpid(child_pid, &status, 0) == -1)
3691 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04003692 }
Len Brownc98d5d92012-06-04 00:56:40 -04003693 /*
3694 * n.b. fork_it() does not check for errors from for_all_cpus()
3695 * because re-starting is problematic when forking
3696 */
3697 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04003698 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04003699 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownc98d5d92012-06-04 00:56:40 -04003700 for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS);
3701 compute_average(EVEN_COUNTERS);
3702 format_all_counters(EVEN_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04003703
Len Brownb7d8c142016-02-13 23:36:17 -05003704 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
3705
3706 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04003707
Len Brownd91bb172012-11-01 00:08:19 -04003708 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04003709}
3710
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003711int get_and_dump_counters(void)
3712{
3713 int status;
3714
3715 status = for_all_cpus(get_counters, ODD_COUNTERS);
3716 if (status)
3717 return status;
3718
3719 status = for_all_cpus(dump_counters, ODD_COUNTERS);
3720 if (status)
3721 return status;
3722
Len Brownb7d8c142016-02-13 23:36:17 -05003723 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003724
3725 return status;
3726}
3727
Len Brownd8af6f52015-02-10 01:56:38 -05003728void print_version() {
Len Brownec53e592016-04-06 17:15:58 -04003729 fprintf(outf, "turbostat version 4.12 5 Apr 2016"
Len Brownd8af6f52015-02-10 01:56:38 -05003730 " - Len Brown <lenb@kernel.org>\n");
3731}
3732
Len Brown103a8fe2010-10-22 23:53:03 -04003733void cmdline(int argc, char **argv)
3734{
3735 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05003736 int option_index = 0;
3737 static struct option long_options[] = {
3738 {"Counter", required_argument, 0, 'C'},
3739 {"counter", required_argument, 0, 'c'},
3740 {"Dump", no_argument, 0, 'D'},
3741 {"debug", no_argument, 0, 'd'},
3742 {"interval", required_argument, 0, 'i'},
3743 {"help", no_argument, 0, 'h'},
3744 {"Joules", no_argument, 0, 'J'},
3745 {"MSR", required_argument, 0, 'M'},
3746 {"msr", required_argument, 0, 'm'},
Len Brownb7d8c142016-02-13 23:36:17 -05003747 {"out", required_argument, 0, 'o'},
Len Brownd8af6f52015-02-10 01:56:38 -05003748 {"Package", no_argument, 0, 'p'},
3749 {"processor", no_argument, 0, 'p'},
3750 {"Summary", no_argument, 0, 'S'},
3751 {"TCC", required_argument, 0, 'T'},
3752 {"version", no_argument, 0, 'v' },
3753 {0, 0, 0, 0 }
3754 };
Len Brown103a8fe2010-10-22 23:53:03 -04003755
3756 progname = argv[0];
3757
Len Brownb7d8c142016-02-13 23:36:17 -05003758 while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:PpST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05003759 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04003760 switch (opt) {
Len Brownd8af6f52015-02-10 01:56:38 -05003761 case 'C':
3762 sscanf(optarg, "%x", &extra_delta_offset64);
Len Brown103a8fe2010-10-22 23:53:03 -04003763 break;
Len Brownf9240812012-10-06 15:26:31 -04003764 case 'c':
Len Brown8e180f32012-09-22 01:25:08 -04003765 sscanf(optarg, "%x", &extra_delta_offset32);
3766 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003767 case 'D':
3768 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04003769 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003770 case 'd':
3771 debug++;
Len Brown2f32edf2012-09-21 23:45:46 -04003772 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003773 case 'h':
3774 default:
3775 help();
3776 exit(1);
3777 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05003778 {
3779 double interval = strtod(optarg, NULL);
3780
3781 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05003782 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05003783 interval);
3784 exit(2);
3785 }
3786
3787 interval_ts.tv_sec = interval;
3788 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
3789 }
Len Brown889facb2012-11-08 00:48:57 -05003790 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08003791 case 'J':
3792 rapl_joules++;
3793 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003794 case 'M':
3795 sscanf(optarg, "%x", &extra_msr_offset64);
3796 break;
3797 case 'm':
3798 sscanf(optarg, "%x", &extra_msr_offset32);
3799 break;
Len Brownb7d8c142016-02-13 23:36:17 -05003800 case 'o':
3801 outf = fopen_or_die(optarg, "w");
3802 break;
Len Brownd8af6f52015-02-10 01:56:38 -05003803 case 'P':
3804 show_pkg_only++;
3805 break;
3806 case 'p':
3807 show_core_only++;
3808 break;
3809 case 'S':
3810 summary_only++;
3811 break;
3812 case 'T':
3813 tcc_activation_temp_override = atoi(optarg);
3814 break;
3815 case 'v':
3816 print_version();
3817 exit(0);
3818 break;
Len Brown103a8fe2010-10-22 23:53:03 -04003819 }
3820 }
3821}
3822
3823int main(int argc, char **argv)
3824{
Len Brownb7d8c142016-02-13 23:36:17 -05003825 outf = stderr;
3826
Len Brown103a8fe2010-10-22 23:53:03 -04003827 cmdline(argc, argv);
3828
Len Brownd8af6f52015-02-10 01:56:38 -05003829 if (debug)
3830 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04003831
3832 turbostat_init();
3833
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02003834 /* dump counters and exit */
3835 if (dump_only)
3836 return get_and_dump_counters();
3837
Len Brown103a8fe2010-10-22 23:53:03 -04003838 /*
3839 * if any params left, it must be a command to fork
3840 */
3841 if (argc - optind)
3842 return fork_it(argv + optind);
3843 else
3844 turbostat_loop();
3845
3846 return 0;
3847}