blob: cafc6bba653953ab3e5875e80d13d92a435ec4b6 [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
Len Brown869ce692016-06-16 23:22:37 -040024#include INTEL_FAMILY_HEADER
Josh Triplett95aebc42013-08-20 17:20:16 -070025#include <stdarg.h>
Len Brown103a8fe2010-10-22 23:53:03 -040026#include <stdio.h>
Josh Triplettb2c95d92013-08-20 17:20:18 -070027#include <err.h>
Len Brown103a8fe2010-10-22 23:53:03 -040028#include <unistd.h>
29#include <sys/types.h>
30#include <sys/wait.h>
31#include <sys/stat.h>
32#include <sys/resource.h>
33#include <fcntl.h>
34#include <signal.h>
35#include <sys/time.h>
36#include <stdlib.h>
Len Brownd8af6f52015-02-10 01:56:38 -050037#include <getopt.h>
Len Brown103a8fe2010-10-22 23:53:03 -040038#include <dirent.h>
39#include <string.h>
40#include <ctype.h>
Len Brown88c32812012-03-29 21:44:40 -040041#include <sched.h>
Len Brown2a0609c2016-02-12 22:44:48 -050042#include <time.h>
Josh Triplett2b928652013-08-20 17:20:14 -070043#include <cpuid.h>
Len Brown98481e72014-08-15 00:36:50 -040044#include <linux/capability.h>
45#include <errno.h>
Len Brown103a8fe2010-10-22 23:53:03 -040046
Len Brown103a8fe2010-10-22 23:53:03 -040047char *proc_stat = "/proc/stat";
Len Brownb7d8c142016-02-13 23:36:17 -050048FILE *outf;
Len Brown36229892016-02-26 20:51:02 -050049int *fd_percpu;
Len Brown2a0609c2016-02-12 22:44:48 -050050struct timespec interval_ts = {5, 0};
Len Brownd8af6f52015-02-10 01:56:38 -050051unsigned int debug;
Len Brown96e47152017-01-21 02:26:00 -050052unsigned int quiet;
Len Brown0de6c0d2017-02-15 21:45:40 -050053unsigned int sums_need_wide_columns;
Len Brownd8af6f52015-02-10 01:56:38 -050054unsigned int rapl_joules;
55unsigned int summary_only;
Len Brownc8ade362017-02-15 17:15:11 -050056unsigned int list_header_only;
Len Brownd8af6f52015-02-10 01:56:38 -050057unsigned int dump_only;
Len Brown103a8fe2010-10-22 23:53:03 -040058unsigned int do_snb_cstates;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -070059unsigned int do_knl_cstates;
Len Brown0b2bb692015-03-26 00:50:30 -040060unsigned int do_skl_residency;
Len Brown144b44b2013-11-09 00:30:16 -050061unsigned int do_slm_cstates;
62unsigned int use_c1_residency_msr;
Len Brown103a8fe2010-10-22 23:53:03 -040063unsigned int has_aperf;
Len Brown889facb2012-11-08 00:48:57 -050064unsigned int has_epb;
Len Brown5a634262016-04-06 17:15:55 -040065unsigned int do_irtl_snb;
66unsigned int do_irtl_hsw;
Len Brownfc04cc62014-02-06 00:55:19 -050067unsigned int units = 1000000; /* MHz etc */
Len Brown103a8fe2010-10-22 23:53:03 -040068unsigned int genuine_intel;
69unsigned int has_invariant_tsc;
Len Brownd7899442015-01-23 00:12:33 -050070unsigned int do_nhm_platform_info;
Len Browncf4cbe52017-01-01 13:08:33 -050071unsigned int no_MSR_MISC_PWR_MGMT;
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +020072unsigned int aperf_mperf_multiplier = 1;
Len Brown103a8fe2010-10-22 23:53:03 -040073double bclk;
Len Browna2b7b742015-09-26 00:12:38 -040074double base_hz;
Len Brown21ed5572015-10-19 22:37:40 -040075unsigned int has_base_hz;
Len Browna2b7b742015-09-26 00:12:38 -040076double tsc_tweak = 1.0;
Len Brownc98d5d92012-06-04 00:56:40 -040077unsigned int show_pkg_only;
78unsigned int show_core_only;
79char *output_buffer, *outp;
Len Brown889facb2012-11-08 00:48:57 -050080unsigned int do_rapl;
81unsigned int do_dts;
82unsigned int do_ptm;
Len Brownfdf676e2016-02-27 01:28:12 -050083unsigned long long gfx_cur_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -050084unsigned int gfx_cur_mhz;
Len Brown889facb2012-11-08 00:48:57 -050085unsigned int tcc_activation_temp;
86unsigned int tcc_activation_temp_override;
Andrey Semin40ee8e32014-12-05 00:07:00 -050087double rapl_power_units, rapl_time_units;
88double rapl_dram_energy_units, rapl_energy_units;
Len Brown889facb2012-11-08 00:48:57 -050089double rapl_joule_counter_range;
Len Brown3a9a9412014-08-15 02:39:52 -040090unsigned int do_core_perf_limit_reasons;
91unsigned int do_gfx_perf_limit_reasons;
92unsigned int do_ring_perf_limit_reasons;
Len Brown8a5bdf42015-04-01 21:02:57 -040093unsigned int crystal_hz;
94unsigned long long tsc_hz;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -040095int base_cpu;
Len Brown21ed5572015-10-19 22:37:40 -040096double discover_bclk(unsigned int family, unsigned int model);
Len Brown7f5c2582015-12-01 01:36:39 -050097unsigned int has_hwp; /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
98 /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
99unsigned int has_hwp_notify; /* IA32_HWP_INTERRUPT */
100unsigned int has_hwp_activity_window; /* IA32_HWP_REQUEST[bits 41:32] */
101unsigned int has_hwp_epp; /* IA32_HWP_REQUEST[bits 31:24] */
102unsigned int has_hwp_pkg; /* IA32_HWP_REQUEST_PKG */
Len Brown33148d62017-01-21 01:26:16 -0500103unsigned int has_misc_feature_control;
Len Brown889facb2012-11-08 00:48:57 -0500104
Len Browne6f9bb32013-12-03 02:19:19 -0500105#define RAPL_PKG (1 << 0)
106 /* 0x610 MSR_PKG_POWER_LIMIT */
107 /* 0x611 MSR_PKG_ENERGY_STATUS */
108#define RAPL_PKG_PERF_STATUS (1 << 1)
109 /* 0x613 MSR_PKG_PERF_STATUS */
110#define RAPL_PKG_POWER_INFO (1 << 2)
111 /* 0x614 MSR_PKG_POWER_INFO */
112
113#define RAPL_DRAM (1 << 3)
114 /* 0x618 MSR_DRAM_POWER_LIMIT */
115 /* 0x619 MSR_DRAM_ENERGY_STATUS */
Len Browne6f9bb32013-12-03 02:19:19 -0500116#define RAPL_DRAM_PERF_STATUS (1 << 4)
117 /* 0x61b MSR_DRAM_PERF_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400118#define RAPL_DRAM_POWER_INFO (1 << 5)
119 /* 0x61c MSR_DRAM_POWER_INFO */
Len Browne6f9bb32013-12-03 02:19:19 -0500120
Jacob Pan91484942016-06-16 09:48:20 -0700121#define RAPL_CORES_POWER_LIMIT (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500122 /* 0x638 MSR_PP0_POWER_LIMIT */
Len Brown0b2bb692015-03-26 00:50:30 -0400123#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500124 /* 0x63a MSR_PP0_POLICY */
125
Len Brown0b2bb692015-03-26 00:50:30 -0400126#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500127 /* 0x640 MSR_PP1_POWER_LIMIT */
128 /* 0x641 MSR_PP1_ENERGY_STATUS */
129 /* 0x642 MSR_PP1_POLICY */
Jacob Pan91484942016-06-16 09:48:20 -0700130
131#define RAPL_CORES_ENERGY_STATUS (1 << 9)
132 /* 0x639 MSR_PP0_ENERGY_STATUS */
133#define RAPL_CORES (RAPL_CORES_ENERGY_STATUS | RAPL_CORES_POWER_LIMIT)
Len Brown889facb2012-11-08 00:48:57 -0500134#define TJMAX_DEFAULT 100
135
136#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400137
Len Brown388e9c82016-12-22 23:57:55 -0500138/*
139 * buffer size used by sscanf() for added column names
140 * Usually truncated to 7 characters, but also handles 18 columns for raw 64-bit counters
141 */
142#define NAME_BYTES 20
Len Brown495c76542017-02-08 02:41:51 -0500143#define PATH_BYTES 128
Len Brown388e9c82016-12-22 23:57:55 -0500144
Len Brown103a8fe2010-10-22 23:53:03 -0400145int backwards_count;
146char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -0400147
Len Brown1ef7d212017-02-10 23:54:15 -0500148#define CPU_SUBSET_MAXCPUS 1024 /* need to use before probe... */
149cpu_set_t *cpu_present_set, *cpu_affinity_set, *cpu_subset;
150size_t cpu_present_setsize, cpu_affinity_setsize, cpu_subset_size;
Len Brown678a3bd2017-02-09 22:22:13 -0500151#define MAX_ADDED_COUNTERS 16
Len Brown103a8fe2010-10-22 23:53:03 -0400152
Len Brownc98d5d92012-06-04 00:56:40 -0400153struct thread_data {
154 unsigned long long tsc;
155 unsigned long long aperf;
156 unsigned long long mperf;
Len Brown144b44b2013-11-09 00:30:16 -0500157 unsigned long long c1;
Len Brown0de6c0d2017-02-15 21:45:40 -0500158 unsigned long long irq_count;
Len Brown1ed51012013-02-10 17:19:24 -0500159 unsigned int smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400160 unsigned int cpu_id;
161 unsigned int flags;
162#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
163#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
Len Brown678a3bd2017-02-09 22:22:13 -0500164 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400165} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400166
Len Brownc98d5d92012-06-04 00:56:40 -0400167struct core_data {
168 unsigned long long c3;
169 unsigned long long c6;
170 unsigned long long c7;
Len Brown0539ba12017-02-10 00:27:20 -0500171 unsigned long long mc6_us; /* duplicate as per-core for now, even though per module */
Len Brown889facb2012-11-08 00:48:57 -0500172 unsigned int core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400173 unsigned int core_id;
Len Brown678a3bd2017-02-09 22:22:13 -0500174 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400175} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400176
Len Brownc98d5d92012-06-04 00:56:40 -0400177struct pkg_data {
178 unsigned long long pc2;
179 unsigned long long pc3;
180 unsigned long long pc6;
181 unsigned long long pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800182 unsigned long long pc8;
183 unsigned long long pc9;
184 unsigned long long pc10;
Len Brown0b2bb692015-03-26 00:50:30 -0400185 unsigned long long pkg_wtd_core_c0;
186 unsigned long long pkg_any_core_c0;
187 unsigned long long pkg_any_gfxe_c0;
188 unsigned long long pkg_both_core_gfxe_c0;
Len Brown9185e982016-04-06 17:16:00 -0400189 long long gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500190 unsigned int gfx_mhz;
Len Brownc98d5d92012-06-04 00:56:40 -0400191 unsigned int package_id;
Len Brown889facb2012-11-08 00:48:57 -0500192 unsigned int energy_pkg; /* MSR_PKG_ENERGY_STATUS */
193 unsigned int energy_dram; /* MSR_DRAM_ENERGY_STATUS */
194 unsigned int energy_cores; /* MSR_PP0_ENERGY_STATUS */
195 unsigned int energy_gfx; /* MSR_PP1_ENERGY_STATUS */
196 unsigned int rapl_pkg_perf_status; /* MSR_PKG_PERF_STATUS */
197 unsigned int rapl_dram_perf_status; /* MSR_DRAM_PERF_STATUS */
198 unsigned int pkg_temp_c;
Len Brown678a3bd2017-02-09 22:22:13 -0500199 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400200} *package_even, *package_odd;
201
202#define ODD_COUNTERS thread_odd, core_odd, package_odd
203#define EVEN_COUNTERS thread_even, core_even, package_even
204
205#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
206 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
207 topo.num_threads_per_core + \
208 (core_no) * topo.num_threads_per_core + (thread_no))
209#define GET_CORE(core_base, core_no, pkg_no) \
210 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
211#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
212
Len Brown388e9c82016-12-22 23:57:55 -0500213enum counter_scope {SCOPE_CPU, SCOPE_CORE, SCOPE_PACKAGE};
Len Brown41618e62017-02-09 18:25:22 -0500214enum counter_type {COUNTER_ITEMS, COUNTER_CYCLES, COUNTER_SECONDS, COUNTER_USEC};
Len Brown388e9c82016-12-22 23:57:55 -0500215enum counter_format {FORMAT_RAW, FORMAT_DELTA, FORMAT_PERCENT};
216
217struct msr_counter {
218 unsigned int msr_num;
219 char name[NAME_BYTES];
Len Brown495c76542017-02-08 02:41:51 -0500220 char path[PATH_BYTES];
Len Brown388e9c82016-12-22 23:57:55 -0500221 unsigned int width;
222 enum counter_type type;
223 enum counter_format format;
224 struct msr_counter *next;
Len Brown812db3f2017-02-10 00:25:41 -0500225 unsigned int flags;
226#define FLAGS_HIDE (1 << 0)
227#define FLAGS_SHOW (1 << 1)
Len Brown41618e62017-02-09 18:25:22 -0500228#define SYSFS_PERCPU (1 << 1)
Len Brown388e9c82016-12-22 23:57:55 -0500229};
230
231struct sys_counters {
Len Brown678a3bd2017-02-09 22:22:13 -0500232 unsigned int added_thread_counters;
233 unsigned int added_core_counters;
234 unsigned int added_package_counters;
Len Brown388e9c82016-12-22 23:57:55 -0500235 struct msr_counter *tp;
236 struct msr_counter *cp;
237 struct msr_counter *pp;
238} sys;
239
Len Brownc98d5d92012-06-04 00:56:40 -0400240struct system_summary {
241 struct thread_data threads;
242 struct core_data cores;
243 struct pkg_data packages;
Len Brown388e9c82016-12-22 23:57:55 -0500244} average;
Len Brownc98d5d92012-06-04 00:56:40 -0400245
246
247struct topo_params {
248 int num_packages;
249 int num_cpus;
250 int num_cores;
251 int max_cpu_num;
252 int num_cores_per_pkg;
253 int num_threads_per_core;
254} topo;
255
256struct timeval tv_even, tv_odd, tv_delta;
257
Len Brown562a2d32016-02-26 23:48:05 -0500258int *irq_column_2_cpu; /* /proc/interrupts column numbers */
259int *irqs_per_cpu; /* indexed by cpu_num */
260
Len Brownc98d5d92012-06-04 00:56:40 -0400261void setup_all_buffers(void);
262
263int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400264{
Len Brownc98d5d92012-06-04 00:56:40 -0400265 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400266}
Len Brown88c32812012-03-29 21:44:40 -0400267/*
Len Brownc98d5d92012-06-04 00:56:40 -0400268 * run func(thread, core, package) in topology order
269 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400270 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400271
Len Brownc98d5d92012-06-04 00:56:40 -0400272int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
273 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400274{
Len Brownc98d5d92012-06-04 00:56:40 -0400275 int retval, pkg_no, core_no, thread_no;
276
277 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
278 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
279 for (thread_no = 0; thread_no <
280 topo.num_threads_per_core; ++thread_no) {
281 struct thread_data *t;
282 struct core_data *c;
283 struct pkg_data *p;
284
285 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
286
287 if (cpu_is_not_present(t->cpu_id))
288 continue;
289
290 c = GET_CORE(core_base, core_no, pkg_no);
291 p = GET_PKG(pkg_base, pkg_no);
292
293 retval = func(t, c, p);
294 if (retval)
295 return retval;
296 }
297 }
298 }
299 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400300}
301
302int cpu_migrate(int cpu)
303{
Len Brownc98d5d92012-06-04 00:56:40 -0400304 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
305 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
306 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400307 return -1;
308 else
309 return 0;
310}
Len Brown36229892016-02-26 20:51:02 -0500311int get_msr_fd(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400312{
Len Brown103a8fe2010-10-22 23:53:03 -0400313 char pathname[32];
314 int fd;
315
Len Brown36229892016-02-26 20:51:02 -0500316 fd = fd_percpu[cpu];
317
318 if (fd)
319 return fd;
320
Len Brown103a8fe2010-10-22 23:53:03 -0400321 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
322 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400323 if (fd < 0)
Len Brown98481e72014-08-15 00:36:50 -0400324 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 -0400325
Len Brown36229892016-02-26 20:51:02 -0500326 fd_percpu[cpu] = fd;
327
328 return fd;
329}
330
331int get_msr(int cpu, off_t offset, unsigned long long *msr)
332{
333 ssize_t retval;
334
335 retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
Len Brown15aaa342012-03-29 22:19:58 -0400336
Len Brown98481e72014-08-15 00:36:50 -0400337 if (retval != sizeof *msr)
Len Browncf4cbe52017-01-01 13:08:33 -0500338 err(-1, "cpu%d: msr offset 0x%llx read failed", cpu, (unsigned long long)offset);
Len Brown15aaa342012-03-29 22:19:58 -0400339
340 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400341}
342
Len Brownfc04cc62014-02-06 00:55:19 -0500343/*
Len Brown812db3f2017-02-10 00:25:41 -0500344 * Each string in this array is compared in --show and --hide cmdline.
345 * Thus, strings that are proper sub-sets must follow their more specific peers.
Len Brownfc04cc62014-02-06 00:55:19 -0500346 */
Len Brown812db3f2017-02-10 00:25:41 -0500347struct msr_counter bic[] = {
348 { 0x0, "Package" },
349 { 0x0, "Avg_MHz" },
350 { 0x0, "Bzy_MHz" },
351 { 0x0, "TSC_MHz" },
352 { 0x0, "IRQ" },
Len Brown495c76542017-02-08 02:41:51 -0500353 { 0x0, "SMI", "", 32, 0, FORMAT_DELTA, NULL},
Len Brown812db3f2017-02-10 00:25:41 -0500354 { 0x0, "Busy%" },
355 { 0x0, "CPU%c1" },
356 { 0x0, "CPU%c3" },
357 { 0x0, "CPU%c6" },
358 { 0x0, "CPU%c7" },
359 { 0x0, "ThreadC" },
360 { 0x0, "CoreTmp" },
361 { 0x0, "CoreCnt" },
362 { 0x0, "PkgTmp" },
363 { 0x0, "GFX%rc6" },
364 { 0x0, "GFXMHz" },
365 { 0x0, "Pkg%pc2" },
366 { 0x0, "Pkg%pc3" },
367 { 0x0, "Pkg%pc6" },
368 { 0x0, "Pkg%pc7" },
Len Brown0f47c082017-01-27 00:50:45 -0500369 { 0x0, "Pkg%pc8" },
370 { 0x0, "Pkg%pc9" },
371 { 0x0, "Pkg%pc10" },
Len Brown812db3f2017-02-10 00:25:41 -0500372 { 0x0, "PkgWatt" },
373 { 0x0, "CorWatt" },
374 { 0x0, "GFXWatt" },
375 { 0x0, "PkgCnt" },
376 { 0x0, "RAMWatt" },
377 { 0x0, "PKG_%" },
378 { 0x0, "RAM_%" },
379 { 0x0, "Pkg_J" },
380 { 0x0, "Cor_J" },
381 { 0x0, "GFX_J" },
382 { 0x0, "RAM_J" },
383 { 0x0, "Core" },
384 { 0x0, "CPU" },
Len Brown0539ba12017-02-10 00:27:20 -0500385 { 0x0, "Mod%c6" },
Len Brown41618e62017-02-09 18:25:22 -0500386 { 0x0, "sysfs" },
Len Brown812db3f2017-02-10 00:25:41 -0500387};
388
389#define MAX_BIC (sizeof(bic) / sizeof(struct msr_counter))
390#define BIC_Package (1ULL << 0)
391#define BIC_Avg_MHz (1ULL << 1)
392#define BIC_Bzy_MHz (1ULL << 2)
393#define BIC_TSC_MHz (1ULL << 3)
394#define BIC_IRQ (1ULL << 4)
395#define BIC_SMI (1ULL << 5)
396#define BIC_Busy (1ULL << 6)
397#define BIC_CPU_c1 (1ULL << 7)
398#define BIC_CPU_c3 (1ULL << 8)
399#define BIC_CPU_c6 (1ULL << 9)
400#define BIC_CPU_c7 (1ULL << 10)
401#define BIC_ThreadC (1ULL << 11)
402#define BIC_CoreTmp (1ULL << 12)
403#define BIC_CoreCnt (1ULL << 13)
404#define BIC_PkgTmp (1ULL << 14)
405#define BIC_GFX_rc6 (1ULL << 15)
406#define BIC_GFXMHz (1ULL << 16)
407#define BIC_Pkgpc2 (1ULL << 17)
408#define BIC_Pkgpc3 (1ULL << 18)
409#define BIC_Pkgpc6 (1ULL << 19)
410#define BIC_Pkgpc7 (1ULL << 20)
Len Brown0f47c082017-01-27 00:50:45 -0500411#define BIC_Pkgpc8 (1ULL << 21)
412#define BIC_Pkgpc9 (1ULL << 22)
413#define BIC_Pkgpc10 (1ULL << 23)
414#define BIC_PkgWatt (1ULL << 24)
415#define BIC_CorWatt (1ULL << 25)
416#define BIC_GFXWatt (1ULL << 26)
417#define BIC_PkgCnt (1ULL << 27)
418#define BIC_RAMWatt (1ULL << 28)
419#define BIC_PKG__ (1ULL << 29)
420#define BIC_RAM__ (1ULL << 30)
421#define BIC_Pkg_J (1ULL << 31)
422#define BIC_Cor_J (1ULL << 32)
423#define BIC_GFX_J (1ULL << 33)
424#define BIC_RAM_J (1ULL << 34)
425#define BIC_Core (1ULL << 35)
426#define BIC_CPU (1ULL << 36)
427#define BIC_Mod_c6 (1ULL << 37)
Len Brown41618e62017-02-09 18:25:22 -0500428#define BIC_sysfs (1ULL << 38)
Len Brown812db3f2017-02-10 00:25:41 -0500429
430unsigned long long bic_enabled = 0xFFFFFFFFFFFFFFFFULL;
Len Brown41618e62017-02-09 18:25:22 -0500431unsigned long long bic_present = BIC_sysfs;
Len Brown812db3f2017-02-10 00:25:41 -0500432
433#define DO_BIC(COUNTER_NAME) (bic_enabled & bic_present & COUNTER_NAME)
434#define BIC_PRESENT(COUNTER_BIT) (bic_present |= COUNTER_BIT)
Len Brown0f47c082017-01-27 00:50:45 -0500435#define BIC_NOT_PRESENT(COUNTER_BIT) (bic_present &= ~COUNTER_BIT)
Len Brown812db3f2017-02-10 00:25:41 -0500436
437/*
438 * bic_lookup
439 * for all the strings in comma separate name_list,
440 * set the approprate bit in return value.
441 */
442unsigned long long bic_lookup(char *name_list)
443{
444 int i;
445 unsigned long long retval = 0;
446
447 while (name_list) {
448 char *comma;
449
450 comma = strchr(name_list, ',');
451
452 if (comma)
453 *comma = '\0';
454
455 for (i = 0; i < MAX_BIC; ++i) {
456 if (!strcmp(name_list, bic[i].name)) {
457 retval |= (1ULL << i);
458 break;
459 }
460 }
461 if (i == MAX_BIC) {
462 fprintf(stderr, "Invalid counter name: %s\n", name_list);
463 exit(-1);
464 }
465
466 name_list = comma;
467 if (name_list)
468 name_list++;
469
470 }
471 return retval;
472}
Len Brownfc04cc62014-02-06 00:55:19 -0500473
Len Brownc8ade362017-02-15 17:15:11 -0500474void print_header(char *delim)
Len Brown103a8fe2010-10-22 23:53:03 -0400475{
Len Brown388e9c82016-12-22 23:57:55 -0500476 struct msr_counter *mp;
477
Len Brown812db3f2017-02-10 00:25:41 -0500478 if (DO_BIC(BIC_Package))
Len Brownc8ade362017-02-15 17:15:11 -0500479 outp += sprintf(outp, "%sPackage", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500480 if (DO_BIC(BIC_Core))
Len Brownc8ade362017-02-15 17:15:11 -0500481 outp += sprintf(outp, "%sCore", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500482 if (DO_BIC(BIC_CPU))
Len Brownc8ade362017-02-15 17:15:11 -0500483 outp += sprintf(outp, "%sCPU", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500484 if (DO_BIC(BIC_Avg_MHz))
Len Brownc8ade362017-02-15 17:15:11 -0500485 outp += sprintf(outp, "%sAvg_MHz", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500486 if (DO_BIC(BIC_Busy))
Len Brownc8ade362017-02-15 17:15:11 -0500487 outp += sprintf(outp, "%sBusy%%", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500488 if (DO_BIC(BIC_Bzy_MHz))
Len Brownc8ade362017-02-15 17:15:11 -0500489 outp += sprintf(outp, "%sBzy_MHz", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500490 if (DO_BIC(BIC_TSC_MHz))
Len Brownc8ade362017-02-15 17:15:11 -0500491 outp += sprintf(outp, "%sTSC_MHz", delim);
Len Brown1cc21f72015-02-23 00:34:57 -0500492
Len Brown0de6c0d2017-02-15 21:45:40 -0500493 if (DO_BIC(BIC_IRQ)) {
494 if (sums_need_wide_columns)
495 outp += sprintf(outp, "%s IRQ", delim);
496 else
497 outp += sprintf(outp, "%sIRQ", delim);
498 }
499
Len Brown812db3f2017-02-10 00:25:41 -0500500 if (DO_BIC(BIC_SMI))
Len Brownc8ade362017-02-15 17:15:11 -0500501 outp += sprintf(outp, "%sSMI", delim);
Len Brown1cc21f72015-02-23 00:34:57 -0500502
Len Brown388e9c82016-12-22 23:57:55 -0500503 for (mp = sys.tp; mp; mp = mp->next) {
504 if (mp->format == FORMAT_RAW) {
505 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500506 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500507 else
Len Brownc8ade362017-02-15 17:15:11 -0500508 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500509 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500510 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
511 outp += sprintf(outp, "%s%8s", delim, mp->name);
512 else
513 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500514 }
515 }
516
Len Brown41618e62017-02-09 18:25:22 -0500517 if (DO_BIC(BIC_CPU_c1))
Len Brownc8ade362017-02-15 17:15:11 -0500518 outp += sprintf(outp, "%sCPU%%c1", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500519 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brownc8ade362017-02-15 17:15:11 -0500520 outp += sprintf(outp, "%sCPU%%c3", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500521 if (DO_BIC(BIC_CPU_c6))
Len Brownc8ade362017-02-15 17:15:11 -0500522 outp += sprintf(outp, "%sCPU%%c6", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500523 if (DO_BIC(BIC_CPU_c7))
Len Brownc8ade362017-02-15 17:15:11 -0500524 outp += sprintf(outp, "%sCPU%%c7", delim);
Len Brown678a3bd2017-02-09 22:22:13 -0500525
Len Brown0539ba12017-02-10 00:27:20 -0500526 if (DO_BIC(BIC_Mod_c6))
Len Brownc8ade362017-02-15 17:15:11 -0500527 outp += sprintf(outp, "%sMod%%c6", delim);
Len Brown678a3bd2017-02-09 22:22:13 -0500528
Len Brown812db3f2017-02-10 00:25:41 -0500529 if (DO_BIC(BIC_CoreTmp))
Len Brownc8ade362017-02-15 17:15:11 -0500530 outp += sprintf(outp, "%sCoreTmp", delim);
Len Brown388e9c82016-12-22 23:57:55 -0500531
532 for (mp = sys.cp; mp; mp = mp->next) {
533 if (mp->format == FORMAT_RAW) {
534 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500535 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500536 else
Len Brownc8ade362017-02-15 17:15:11 -0500537 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500538 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500539 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
540 outp += sprintf(outp, "%s%8s", delim, mp->name);
541 else
542 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500543 }
544 }
545
Len Brown812db3f2017-02-10 00:25:41 -0500546 if (DO_BIC(BIC_PkgTmp))
Len Brownc8ade362017-02-15 17:15:11 -0500547 outp += sprintf(outp, "%sPkgTmp", delim);
Len Brown889facb2012-11-08 00:48:57 -0500548
Len Brown812db3f2017-02-10 00:25:41 -0500549 if (DO_BIC(BIC_GFX_rc6))
Len Brownc8ade362017-02-15 17:15:11 -0500550 outp += sprintf(outp, "%sGFX%%rc6", delim);
Len Brownfdf676e2016-02-27 01:28:12 -0500551
Len Brown812db3f2017-02-10 00:25:41 -0500552 if (DO_BIC(BIC_GFXMHz))
Len Brownc8ade362017-02-15 17:15:11 -0500553 outp += sprintf(outp, "%sGFXMHz", delim);
Len Brown27d47352016-02-27 00:37:54 -0500554
Len Brown0b2bb692015-03-26 00:50:30 -0400555 if (do_skl_residency) {
Len Brownc8ade362017-02-15 17:15:11 -0500556 outp += sprintf(outp, "%sTotl%%C0", delim);
557 outp += sprintf(outp, "%sAny%%C0", delim);
558 outp += sprintf(outp, "%sGFX%%C0", delim);
559 outp += sprintf(outp, "%sCPUGFX%%", delim);
Len Brown0b2bb692015-03-26 00:50:30 -0400560 }
561
Len Brown0f47c082017-01-27 00:50:45 -0500562 if (DO_BIC(BIC_Pkgpc2))
Len Brownc8ade362017-02-15 17:15:11 -0500563 outp += sprintf(outp, "%sPkg%%pc2", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500564 if (DO_BIC(BIC_Pkgpc3))
Len Brownc8ade362017-02-15 17:15:11 -0500565 outp += sprintf(outp, "%sPkg%%pc3", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500566 if (DO_BIC(BIC_Pkgpc6))
Len Brownc8ade362017-02-15 17:15:11 -0500567 outp += sprintf(outp, "%sPkg%%pc6", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500568 if (DO_BIC(BIC_Pkgpc7))
Len Brownc8ade362017-02-15 17:15:11 -0500569 outp += sprintf(outp, "%sPkg%%pc7", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500570 if (DO_BIC(BIC_Pkgpc8))
Len Brownc8ade362017-02-15 17:15:11 -0500571 outp += sprintf(outp, "%sPkg%%pc8", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500572 if (DO_BIC(BIC_Pkgpc9))
Len Brownc8ade362017-02-15 17:15:11 -0500573 outp += sprintf(outp, "%sPkg%%pc9", delim);
Len Brown0f47c082017-01-27 00:50:45 -0500574 if (DO_BIC(BIC_Pkgpc10))
Len Brownc8ade362017-02-15 17:15:11 -0500575 outp += sprintf(outp, "%sPk%%pc10", delim);
Len Brown103a8fe2010-10-22 23:53:03 -0400576
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800577 if (do_rapl && !rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500578 if (DO_BIC(BIC_PkgWatt))
Len Brownc8ade362017-02-15 17:15:11 -0500579 outp += sprintf(outp, "%sPkgWatt", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500580 if (DO_BIC(BIC_CorWatt))
Len Brownc8ade362017-02-15 17:15:11 -0500581 outp += sprintf(outp, "%sCorWatt", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500582 if (DO_BIC(BIC_GFXWatt))
Len Brownc8ade362017-02-15 17:15:11 -0500583 outp += sprintf(outp, "%sGFXWatt", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500584 if (DO_BIC(BIC_RAMWatt))
Len Brownc8ade362017-02-15 17:15:11 -0500585 outp += sprintf(outp, "%sRAMWatt", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500586 if (DO_BIC(BIC_PKG__))
Len Brownc8ade362017-02-15 17:15:11 -0500587 outp += sprintf(outp, "%sPKG_%%", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500588 if (DO_BIC(BIC_RAM__))
Len Brownc8ade362017-02-15 17:15:11 -0500589 outp += sprintf(outp, "%sRAM_%%", delim);
Len Brownd7899442015-01-23 00:12:33 -0500590 } else if (do_rapl && rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500591 if (DO_BIC(BIC_Pkg_J))
Len Brownc8ade362017-02-15 17:15:11 -0500592 outp += sprintf(outp, "%sPkg_J", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500593 if (DO_BIC(BIC_Cor_J))
Len Brownc8ade362017-02-15 17:15:11 -0500594 outp += sprintf(outp, "%sCor_J", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500595 if (DO_BIC(BIC_GFX_J))
Len Brownc8ade362017-02-15 17:15:11 -0500596 outp += sprintf(outp, "%sGFX_J", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500597 if (DO_BIC(BIC_RAM_J))
Len Brownc8ade362017-02-15 17:15:11 -0500598 outp += sprintf(outp, "%sRAM_J", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500599 if (DO_BIC(BIC_PKG__))
Len Brownc8ade362017-02-15 17:15:11 -0500600 outp += sprintf(outp, "%sPKG_%%", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500601 if (DO_BIC(BIC_RAM__))
Len Brownc8ade362017-02-15 17:15:11 -0500602 outp += sprintf(outp, "%sRAM_%%", delim);
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800603 }
Len Brown388e9c82016-12-22 23:57:55 -0500604 for (mp = sys.pp; mp; mp = mp->next) {
605 if (mp->format == FORMAT_RAW) {
606 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500607 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500608 else
Len Brownc8ade362017-02-15 17:15:11 -0500609 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500610 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500611 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
612 outp += sprintf(outp, "%s%8s", delim, mp->name);
613 else
614 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500615 }
616 }
617
Len Brownc98d5d92012-06-04 00:56:40 -0400618 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400619}
620
Len Brownc98d5d92012-06-04 00:56:40 -0400621int dump_counters(struct thread_data *t, struct core_data *c,
622 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400623{
Len Brown388e9c82016-12-22 23:57:55 -0500624 int i;
625 struct msr_counter *mp;
626
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200627 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400628
Len Brownc98d5d92012-06-04 00:56:40 -0400629 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200630 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
631 t->cpu_id, t->flags);
632 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
633 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
634 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
635 outp += sprintf(outp, "c1: %016llX\n", t->c1);
Len Brown6886fee2016-12-24 15:18:37 -0500636
Len Brown812db3f2017-02-10 00:25:41 -0500637 if (DO_BIC(BIC_IRQ))
Len Brown0de6c0d2017-02-15 21:45:40 -0500638 outp += sprintf(outp, "IRQ: %lld\n", t->irq_count);
Len Brown812db3f2017-02-10 00:25:41 -0500639 if (DO_BIC(BIC_SMI))
Len Brown218f0e82017-02-14 22:07:52 -0500640 outp += sprintf(outp, "SMI: %d\n", t->smi_count);
Len Brown388e9c82016-12-22 23:57:55 -0500641
642 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
643 outp += sprintf(outp, "tADDED [%d] msr0x%x: %08llX\n",
644 i, mp->msr_num, t->counter[i]);
645 }
Len Brownc98d5d92012-06-04 00:56:40 -0400646 }
Len Brown103a8fe2010-10-22 23:53:03 -0400647
Len Brownc98d5d92012-06-04 00:56:40 -0400648 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200649 outp += sprintf(outp, "core: %d\n", c->core_id);
650 outp += sprintf(outp, "c3: %016llX\n", c->c3);
651 outp += sprintf(outp, "c6: %016llX\n", c->c6);
652 outp += sprintf(outp, "c7: %016llX\n", c->c7);
653 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500654
655 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
656 outp += sprintf(outp, "cADDED [%d] msr0x%x: %08llX\n",
657 i, mp->msr_num, c->counter[i]);
658 }
Len Brown0539ba12017-02-10 00:27:20 -0500659 outp += sprintf(outp, "mc6_us: %016llX\n", c->mc6_us);
Len Brownc98d5d92012-06-04 00:56:40 -0400660 }
661
662 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200663 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400664
665 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
666 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
667 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
668 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
669
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200670 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brown0f47c082017-01-27 00:50:45 -0500671 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -0500672 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
Len Brown0f47c082017-01-27 00:50:45 -0500673 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -0500674 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
Len Brown0f47c082017-01-27 00:50:45 -0500675 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -0500676 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200677 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
678 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
679 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
680 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
681 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
682 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
683 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
684 outp += sprintf(outp, "Throttle PKG: %0X\n",
685 p->rapl_pkg_perf_status);
686 outp += sprintf(outp, "Throttle RAM: %0X\n",
687 p->rapl_dram_perf_status);
688 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500689
690 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
691 outp += sprintf(outp, "pADDED [%d] msr0x%x: %08llX\n",
692 i, mp->msr_num, p->counter[i]);
693 }
Len Brownc98d5d92012-06-04 00:56:40 -0400694 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200695
696 outp += sprintf(outp, "\n");
697
Len Brownc98d5d92012-06-04 00:56:40 -0400698 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400699}
700
Len Browne23da032012-02-06 18:37:16 -0500701/*
702 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500703 */
Len Brownc98d5d92012-06-04 00:56:40 -0400704int format_counters(struct thread_data *t, struct core_data *c,
705 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400706{
Len Brown008d396e2017-02-10 00:29:51 -0500707 double interval_float, tsc;
Len Brownfc04cc62014-02-06 00:55:19 -0500708 char *fmt8;
Len Brown388e9c82016-12-22 23:57:55 -0500709 int i;
710 struct msr_counter *mp;
Len Brown103a8fe2010-10-22 23:53:03 -0400711
Len Brownc98d5d92012-06-04 00:56:40 -0400712 /* if showing only 1st thread in core and this isn't one, bail out */
713 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
714 return 0;
715
716 /* if showing only 1st thread in pkg and this isn't one, bail out */
717 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
718 return 0;
719
Len Brown1ef7d212017-02-10 23:54:15 -0500720 /*if not summary line and --cpu is used */
721 if ((t != &average.threads) &&
722 (cpu_subset && !CPU_ISSET_S(t->cpu_id, cpu_subset_size, cpu_subset)))
723 return 0;
724
Len Brown103a8fe2010-10-22 23:53:03 -0400725 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
726
Len Brown008d396e2017-02-10 00:29:51 -0500727 tsc = t->tsc * tsc_tweak;
728
Len Brownc98d5d92012-06-04 00:56:40 -0400729 /* topo columns, print blanks on 1st (average) line */
730 if (t == &average.threads) {
Len Brown812db3f2017-02-10 00:25:41 -0500731 if (DO_BIC(BIC_Package))
Len Brown3d109de2016-04-22 23:24:27 -0400732 outp += sprintf(outp, "\t-");
Len Brown812db3f2017-02-10 00:25:41 -0500733 if (DO_BIC(BIC_Core))
Len Brown3d109de2016-04-22 23:24:27 -0400734 outp += sprintf(outp, "\t-");
Len Brown812db3f2017-02-10 00:25:41 -0500735 if (DO_BIC(BIC_CPU))
Len Brown3d109de2016-04-22 23:24:27 -0400736 outp += sprintf(outp, "\t-");
Len Brown103a8fe2010-10-22 23:53:03 -0400737 } else {
Len Brown812db3f2017-02-10 00:25:41 -0500738 if (DO_BIC(BIC_Package)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400739 if (p)
Len Brown3d109de2016-04-22 23:24:27 -0400740 outp += sprintf(outp, "\t%d", p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400741 else
Len Brown3d109de2016-04-22 23:24:27 -0400742 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400743 }
Len Brown812db3f2017-02-10 00:25:41 -0500744 if (DO_BIC(BIC_Core)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400745 if (c)
Len Brown3d109de2016-04-22 23:24:27 -0400746 outp += sprintf(outp, "\t%d", c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400747 else
Len Brown3d109de2016-04-22 23:24:27 -0400748 outp += sprintf(outp, "\t-");
Len Brownc98d5d92012-06-04 00:56:40 -0400749 }
Len Brown812db3f2017-02-10 00:25:41 -0500750 if (DO_BIC(BIC_CPU))
Len Brown3d109de2016-04-22 23:24:27 -0400751 outp += sprintf(outp, "\t%d", t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400752 }
Len Brownfc04cc62014-02-06 00:55:19 -0500753
Len Brown812db3f2017-02-10 00:25:41 -0500754 if (DO_BIC(BIC_Avg_MHz))
Len Brown3d109de2016-04-22 23:24:27 -0400755 outp += sprintf(outp, "\t%.0f",
Len Brownfc04cc62014-02-06 00:55:19 -0500756 1.0 / units * t->aperf / interval_float);
757
Len Brown812db3f2017-02-10 00:25:41 -0500758 if (DO_BIC(BIC_Busy))
Len Brown008d396e2017-02-10 00:29:51 -0500759 outp += sprintf(outp, "\t%.2f", 100.0 * t->mperf/tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400760
Len Brown812db3f2017-02-10 00:25:41 -0500761 if (DO_BIC(BIC_Bzy_MHz)) {
Len Brown21ed5572015-10-19 22:37:40 -0400762 if (has_base_hz)
Len Brown3d109de2016-04-22 23:24:27 -0400763 outp += sprintf(outp, "\t%.0f", base_hz / units * t->aperf / t->mperf);
Len Brown21ed5572015-10-19 22:37:40 -0400764 else
Len Brown3d109de2016-04-22 23:24:27 -0400765 outp += sprintf(outp, "\t%.0f",
Len Brown008d396e2017-02-10 00:29:51 -0500766 tsc / units * t->aperf / t->mperf / interval_float);
Len Brown21ed5572015-10-19 22:37:40 -0400767 }
Len Brown103a8fe2010-10-22 23:53:03 -0400768
Len Brown812db3f2017-02-10 00:25:41 -0500769 if (DO_BIC(BIC_TSC_MHz))
770 outp += sprintf(outp, "\t%.0f", 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400771
Len Brown562a2d32016-02-26 23:48:05 -0500772 /* IRQ */
Len Brown0de6c0d2017-02-15 21:45:40 -0500773 if (DO_BIC(BIC_IRQ)) {
774 if (sums_need_wide_columns)
775 outp += sprintf(outp, "\t%8lld", t->irq_count);
776 else
777 outp += sprintf(outp, "\t%lld", t->irq_count);
778 }
Len Brown562a2d32016-02-26 23:48:05 -0500779
Len Brown1cc21f72015-02-23 00:34:57 -0500780 /* SMI */
Len Brown812db3f2017-02-10 00:25:41 -0500781 if (DO_BIC(BIC_SMI))
Len Brown3d109de2016-04-22 23:24:27 -0400782 outp += sprintf(outp, "\t%d", t->smi_count);
Len Brown1cc21f72015-02-23 00:34:57 -0500783
Len Brown678a3bd2017-02-09 22:22:13 -0500784 /* Added counters */
785 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
786 if (mp->format == FORMAT_RAW) {
787 if (mp->width == 32)
788 outp += sprintf(outp, "\t0x%08lx", (unsigned long) t->counter[i]);
789 else
790 outp += sprintf(outp, "\t0x%016llx", t->counter[i]);
791 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500792 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
793 outp += sprintf(outp, "\t%8lld", t->counter[i]);
794 else
795 outp += sprintf(outp, "\t%lld", t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500796 } else if (mp->format == FORMAT_PERCENT) {
Len Brown41618e62017-02-09 18:25:22 -0500797 if (mp->type == COUNTER_USEC)
798 outp += sprintf(outp, "\t%.2f", t->counter[i]/interval_float/10000);
799 else
800 outp += sprintf(outp, "\t%.2f", 100.0 * t->counter[i]/tsc);
Len Brown678a3bd2017-02-09 22:22:13 -0500801 }
802 }
803
Len Brown41618e62017-02-09 18:25:22 -0500804 /* C1 */
805 if (DO_BIC(BIC_CPU_c1))
806 outp += sprintf(outp, "\t%.2f", 100.0 * t->c1/tsc);
807
808
Len Brownc98d5d92012-06-04 00:56:40 -0400809 /* print per-core data only for 1st thread in core */
810 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
811 goto done;
812
Len Brown812db3f2017-02-10 00:25:41 -0500813 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brown008d396e2017-02-10 00:29:51 -0500814 outp += sprintf(outp, "\t%.2f", 100.0 * c->c3/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500815 if (DO_BIC(BIC_CPU_c6))
Len Brown008d396e2017-02-10 00:29:51 -0500816 outp += sprintf(outp, "\t%.2f", 100.0 * c->c6/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500817 if (DO_BIC(BIC_CPU_c7))
Len Brown008d396e2017-02-10 00:29:51 -0500818 outp += sprintf(outp, "\t%.2f", 100.0 * c->c7/tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400819
Len Brown0539ba12017-02-10 00:27:20 -0500820 /* Mod%c6 */
821 if (DO_BIC(BIC_Mod_c6))
Len Brown008d396e2017-02-10 00:29:51 -0500822 outp += sprintf(outp, "\t%.2f", 100.0 * c->mc6_us / tsc);
Len Brown0539ba12017-02-10 00:27:20 -0500823
Len Brown812db3f2017-02-10 00:25:41 -0500824 if (DO_BIC(BIC_CoreTmp))
Len Brown3d109de2016-04-22 23:24:27 -0400825 outp += sprintf(outp, "\t%d", c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500826
Len Brown388e9c82016-12-22 23:57:55 -0500827 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
828 if (mp->format == FORMAT_RAW) {
829 if (mp->width == 32)
830 outp += sprintf(outp, "\t0x%08lx", (unsigned long) c->counter[i]);
831 else
832 outp += sprintf(outp, "\t0x%016llx", c->counter[i]);
833 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500834 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
835 outp += sprintf(outp, "\t%8lld", c->counter[i]);
836 else
837 outp += sprintf(outp, "\t%lld", c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500838 } else if (mp->format == FORMAT_PERCENT) {
Len Brown008d396e2017-02-10 00:29:51 -0500839 outp += sprintf(outp, "\t%.2f", 100.0 * c->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -0500840 }
841 }
842
Len Brownc98d5d92012-06-04 00:56:40 -0400843 /* print per-package data only for 1st core in package */
844 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
845 goto done;
846
Len Brown0b2bb692015-03-26 00:50:30 -0400847 /* PkgTmp */
Len Brown812db3f2017-02-10 00:25:41 -0500848 if (DO_BIC(BIC_PkgTmp))
Len Brown3d109de2016-04-22 23:24:27 -0400849 outp += sprintf(outp, "\t%d", p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500850
Len Brownfdf676e2016-02-27 01:28:12 -0500851 /* GFXrc6 */
Len Brown812db3f2017-02-10 00:25:41 -0500852 if (DO_BIC(BIC_GFX_rc6)) {
Len Brownba3dec92016-04-22 20:31:46 -0400853 if (p->gfx_rc6_ms == -1) { /* detect GFX counter reset */
Len Brown3d109de2016-04-22 23:24:27 -0400854 outp += sprintf(outp, "\t**.**");
Len Brown9185e982016-04-06 17:16:00 -0400855 } else {
Len Brown3d109de2016-04-22 23:24:27 -0400856 outp += sprintf(outp, "\t%.2f",
Len Brown9185e982016-04-06 17:16:00 -0400857 p->gfx_rc6_ms / 10.0 / interval_float);
858 }
859 }
Len Brownfdf676e2016-02-27 01:28:12 -0500860
Len Brown27d47352016-02-27 00:37:54 -0500861 /* GFXMHz */
Len Brown812db3f2017-02-10 00:25:41 -0500862 if (DO_BIC(BIC_GFXMHz))
Len Brown3d109de2016-04-22 23:24:27 -0400863 outp += sprintf(outp, "\t%d", p->gfx_mhz);
Len Brown27d47352016-02-27 00:37:54 -0500864
Len Brown0b2bb692015-03-26 00:50:30 -0400865 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
866 if (do_skl_residency) {
Len Brown008d396e2017-02-10 00:29:51 -0500867 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_wtd_core_c0/tsc);
868 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_core_c0/tsc);
869 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_any_gfxe_c0/tsc);
870 outp += sprintf(outp, "\t%.2f", 100.0 * p->pkg_both_core_gfxe_c0/tsc);
Len Brown0b2bb692015-03-26 00:50:30 -0400871 }
872
Len Brown0f47c082017-01-27 00:50:45 -0500873 if (DO_BIC(BIC_Pkgpc2))
Len Brown008d396e2017-02-10 00:29:51 -0500874 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc2/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500875 if (DO_BIC(BIC_Pkgpc3))
Len Brown008d396e2017-02-10 00:29:51 -0500876 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc3/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500877 if (DO_BIC(BIC_Pkgpc6))
Len Brown008d396e2017-02-10 00:29:51 -0500878 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc6/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500879 if (DO_BIC(BIC_Pkgpc7))
Len Brown008d396e2017-02-10 00:29:51 -0500880 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc7/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500881 if (DO_BIC(BIC_Pkgpc8))
Len Brown008d396e2017-02-10 00:29:51 -0500882 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc8/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500883 if (DO_BIC(BIC_Pkgpc9))
Len Brown008d396e2017-02-10 00:29:51 -0500884 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc9/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500885 if (DO_BIC(BIC_Pkgpc10))
Len Brown008d396e2017-02-10 00:29:51 -0500886 outp += sprintf(outp, "\t%.2f", 100.0 * p->pc10/tsc);
Len Brown889facb2012-11-08 00:48:57 -0500887
888 /*
889 * If measurement interval exceeds minimum RAPL Joule Counter range,
890 * indicate that results are suspect by printing "**" in fraction place.
891 */
Len Brownfc04cc62014-02-06 00:55:19 -0500892 if (interval_float < rapl_joule_counter_range)
Len Brown3d109de2016-04-22 23:24:27 -0400893 fmt8 = "\t%.2f";
Len Brownfc04cc62014-02-06 00:55:19 -0500894 else
Len Browne975db52016-04-06 23:56:02 -0400895 fmt8 = "%6.0f**";
Len Brown889facb2012-11-08 00:48:57 -0500896
Len Brown812db3f2017-02-10 00:25:41 -0500897 if (DO_BIC(BIC_PkgWatt))
898 outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units / interval_float);
899 if (DO_BIC(BIC_CorWatt))
900 outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units / interval_float);
901 if (DO_BIC(BIC_GFXWatt))
902 outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units / interval_float);
903 if (DO_BIC(BIC_RAMWatt))
904 outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units / interval_float);
905 if (DO_BIC(BIC_Pkg_J))
906 outp += sprintf(outp, fmt8, p->energy_pkg * rapl_energy_units);
907 if (DO_BIC(BIC_Cor_J))
908 outp += sprintf(outp, fmt8, p->energy_cores * rapl_energy_units);
909 if (DO_BIC(BIC_GFX_J))
910 outp += sprintf(outp, fmt8, p->energy_gfx * rapl_energy_units);
911 if (DO_BIC(BIC_RAM_J))
912 outp += sprintf(outp, fmt8, p->energy_dram * rapl_dram_energy_units);
913 if (DO_BIC(BIC_PKG__))
914 outp += sprintf(outp, fmt8, 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
915 if (DO_BIC(BIC_RAM__))
916 outp += sprintf(outp, fmt8, 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
917
Len Brown388e9c82016-12-22 23:57:55 -0500918 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
919 if (mp->format == FORMAT_RAW) {
920 if (mp->width == 32)
921 outp += sprintf(outp, "\t0x%08lx", (unsigned long) p->counter[i]);
922 else
923 outp += sprintf(outp, "\t0x%016llx", p->counter[i]);
924 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500925 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
926 outp += sprintf(outp, "\t%8lld", p->counter[i]);
927 else
928 outp += sprintf(outp, "\t%lld", p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500929 } else if (mp->format == FORMAT_PERCENT) {
Len Brown008d396e2017-02-10 00:29:51 -0500930 outp += sprintf(outp, "\t%.2f", 100.0 * p->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -0500931 }
932 }
933
Len Brownc98d5d92012-06-04 00:56:40 -0400934done:
Len Brownc98d5d92012-06-04 00:56:40 -0400935 outp += sprintf(outp, "\n");
936
937 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400938}
939
Len Brownb7d8c142016-02-13 23:36:17 -0500940void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -0400941{
Len Brownb7d8c142016-02-13 23:36:17 -0500942 FILE *filep;
943
944 if (outf == stderr)
945 filep = stdout;
946 else
947 filep = outf;
948
949 fputs(output_buffer, filep);
950 fflush(filep);
951
Len Brownc98d5d92012-06-04 00:56:40 -0400952 outp = output_buffer;
953}
Len Brownb7d8c142016-02-13 23:36:17 -0500954void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -0400955{
Len Brownb7d8c142016-02-13 23:36:17 -0500956 fputs(output_buffer, outf);
957 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -0400958 outp = output_buffer;
959}
960void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
961{
Len Browne23da032012-02-06 18:37:16 -0500962 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -0400963
Len Browne23da032012-02-06 18:37:16 -0500964 if (!printed || !summary_only)
Len Brownc8ade362017-02-15 17:15:11 -0500965 print_header("\t");
Len Brown103a8fe2010-10-22 23:53:03 -0400966
Len Brownc98d5d92012-06-04 00:56:40 -0400967 if (topo.num_cpus > 1)
968 format_counters(&average.threads, &average.cores,
969 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -0400970
Len Browne23da032012-02-06 18:37:16 -0500971 printed = 1;
972
973 if (summary_only)
974 return;
975
Len Brownc98d5d92012-06-04 00:56:40 -0400976 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400977}
978
Len Brown889facb2012-11-08 00:48:57 -0500979#define DELTA_WRAP32(new, old) \
980 if (new > old) { \
981 old = new - old; \
982 } else { \
983 old = 0x100000000 + new - old; \
984 }
985
Len Brownba3dec92016-04-22 20:31:46 -0400986int
Len Brownc98d5d92012-06-04 00:56:40 -0400987delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -0400988{
Len Brown388e9c82016-12-22 23:57:55 -0500989 int i;
990 struct msr_counter *mp;
Len Brown0b2bb692015-03-26 00:50:30 -0400991
992 if (do_skl_residency) {
993 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
994 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
995 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
996 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
997 }
Len Brownc98d5d92012-06-04 00:56:40 -0400998 old->pc2 = new->pc2 - old->pc2;
Len Brown0f47c082017-01-27 00:50:45 -0500999 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001000 old->pc3 = new->pc3 - old->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001001 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001002 old->pc6 = new->pc6 - old->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001003 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001004 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001005 old->pc8 = new->pc8 - old->pc8;
1006 old->pc9 = new->pc9 - old->pc9;
1007 old->pc10 = new->pc10 - old->pc10;
Len Brown889facb2012-11-08 00:48:57 -05001008 old->pkg_temp_c = new->pkg_temp_c;
1009
Len Brown9185e982016-04-06 17:16:00 -04001010 /* flag an error when rc6 counter resets/wraps */
1011 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
1012 old->gfx_rc6_ms = -1;
1013 else
1014 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
1015
Len Brown27d47352016-02-27 00:37:54 -05001016 old->gfx_mhz = new->gfx_mhz;
1017
Len Brown889facb2012-11-08 00:48:57 -05001018 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
1019 DELTA_WRAP32(new->energy_cores, old->energy_cores);
1020 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
1021 DELTA_WRAP32(new->energy_dram, old->energy_dram);
1022 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
1023 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownba3dec92016-04-22 20:31:46 -04001024
Len Brown388e9c82016-12-22 23:57:55 -05001025 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1026 if (mp->format == FORMAT_RAW)
1027 old->counter[i] = new->counter[i];
1028 else
1029 old->counter[i] = new->counter[i] - old->counter[i];
1030 }
1031
Len Brownba3dec92016-04-22 20:31:46 -04001032 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001033}
Len Brown103a8fe2010-10-22 23:53:03 -04001034
Len Brownc98d5d92012-06-04 00:56:40 -04001035void
1036delta_core(struct core_data *new, struct core_data *old)
1037{
Len Brown388e9c82016-12-22 23:57:55 -05001038 int i;
1039 struct msr_counter *mp;
1040
Len Brownc98d5d92012-06-04 00:56:40 -04001041 old->c3 = new->c3 - old->c3;
1042 old->c6 = new->c6 - old->c6;
1043 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -05001044 old->core_temp_c = new->core_temp_c;
Len Brown0539ba12017-02-10 00:27:20 -05001045 old->mc6_us = new->mc6_us - old->mc6_us;
Len Brown388e9c82016-12-22 23:57:55 -05001046
1047 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1048 if (mp->format == FORMAT_RAW)
1049 old->counter[i] = new->counter[i];
1050 else
1051 old->counter[i] = new->counter[i] - old->counter[i];
1052 }
Len Brownc98d5d92012-06-04 00:56:40 -04001053}
Len Brown103a8fe2010-10-22 23:53:03 -04001054
Len Brownc3ae3312012-06-13 21:31:46 -04001055/*
1056 * old = new - old
1057 */
Len Brownba3dec92016-04-22 20:31:46 -04001058int
Len Brownc98d5d92012-06-04 00:56:40 -04001059delta_thread(struct thread_data *new, struct thread_data *old,
1060 struct core_data *core_delta)
1061{
Len Brown388e9c82016-12-22 23:57:55 -05001062 int i;
1063 struct msr_counter *mp;
1064
Len Brownc98d5d92012-06-04 00:56:40 -04001065 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -04001066
Len Brownc98d5d92012-06-04 00:56:40 -04001067 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -07001068 if (old->tsc < (1000 * 1000))
1069 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
1070 "You can disable all c-states by booting with \"idle=poll\"\n"
1071 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -04001072
Len Brownc98d5d92012-06-04 00:56:40 -04001073 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -04001074
Len Brown812db3f2017-02-10 00:25:41 -05001075 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Browna7296172015-01-23 01:33:58 -05001076 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
1077 old->aperf = new->aperf - old->aperf;
1078 old->mperf = new->mperf - old->mperf;
1079 } else {
Len Brownba3dec92016-04-22 20:31:46 -04001080 return -1;
Len Brownc98d5d92012-06-04 00:56:40 -04001081 }
Len Brownc98d5d92012-06-04 00:56:40 -04001082 }
Len Brown103a8fe2010-10-22 23:53:03 -04001083
Len Brown103a8fe2010-10-22 23:53:03 -04001084
Len Brown144b44b2013-11-09 00:30:16 -05001085 if (use_c1_residency_msr) {
1086 /*
1087 * Some models have a dedicated C1 residency MSR,
1088 * which should be more accurate than the derivation below.
1089 */
1090 } else {
1091 /*
1092 * As counter collection is not atomic,
1093 * it is possible for mperf's non-halted cycles + idle states
1094 * to exceed TSC's all cycles: show c1 = 0% in that case.
1095 */
1096 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > old->tsc)
1097 old->c1 = 0;
1098 else {
1099 /* normal case, derive c1 */
Len Brown008d396e2017-02-10 00:29:51 -05001100 old->c1 = (old->tsc * tsc_tweak) - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -04001101 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -05001102 }
Len Brownc98d5d92012-06-04 00:56:40 -04001103 }
Len Brownc3ae3312012-06-13 21:31:46 -04001104
Len Brownc98d5d92012-06-04 00:56:40 -04001105 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -05001106 if (debug > 1)
1107 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -04001108 old->mperf = 1; /* divide by 0 protection */
1109 }
1110
Len Brown812db3f2017-02-10 00:25:41 -05001111 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001112 old->irq_count = new->irq_count - old->irq_count;
1113
Len Brown812db3f2017-02-10 00:25:41 -05001114 if (DO_BIC(BIC_SMI))
Len Brown1ed51012013-02-10 17:19:24 -05001115 old->smi_count = new->smi_count - old->smi_count;
Len Brownba3dec92016-04-22 20:31:46 -04001116
Len Brown388e9c82016-12-22 23:57:55 -05001117 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1118 if (mp->format == FORMAT_RAW)
1119 old->counter[i] = new->counter[i];
1120 else
1121 old->counter[i] = new->counter[i] - old->counter[i];
1122 }
Len Brownba3dec92016-04-22 20:31:46 -04001123 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001124}
1125
1126int delta_cpu(struct thread_data *t, struct core_data *c,
1127 struct pkg_data *p, struct thread_data *t2,
1128 struct core_data *c2, struct pkg_data *p2)
1129{
Len Brownba3dec92016-04-22 20:31:46 -04001130 int retval = 0;
1131
Len Brownc98d5d92012-06-04 00:56:40 -04001132 /* calculate core delta only for 1st thread in core */
1133 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
1134 delta_core(c, c2);
1135
1136 /* always calculate thread delta */
Len Brownba3dec92016-04-22 20:31:46 -04001137 retval = delta_thread(t, t2, c2); /* c2 is core delta */
1138 if (retval)
1139 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001140
1141 /* calculate package delta only for 1st core in package */
1142 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
Len Brownba3dec92016-04-22 20:31:46 -04001143 retval = delta_package(p, p2);
Len Brownc98d5d92012-06-04 00:56:40 -04001144
Len Brownba3dec92016-04-22 20:31:46 -04001145 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001146}
1147
1148void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1149{
Len Brown388e9c82016-12-22 23:57:55 -05001150 int i;
1151 struct msr_counter *mp;
1152
Len Brownc98d5d92012-06-04 00:56:40 -04001153 t->tsc = 0;
1154 t->aperf = 0;
1155 t->mperf = 0;
1156 t->c1 = 0;
1157
Len Brown562a2d32016-02-26 23:48:05 -05001158 t->irq_count = 0;
1159 t->smi_count = 0;
1160
Len Brownc98d5d92012-06-04 00:56:40 -04001161 /* tells format_counters to dump all fields from this set */
1162 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
1163
1164 c->c3 = 0;
1165 c->c6 = 0;
1166 c->c7 = 0;
Len Brown0539ba12017-02-10 00:27:20 -05001167 c->mc6_us = 0;
Len Brown889facb2012-11-08 00:48:57 -05001168 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001169
Len Brown0b2bb692015-03-26 00:50:30 -04001170 p->pkg_wtd_core_c0 = 0;
1171 p->pkg_any_core_c0 = 0;
1172 p->pkg_any_gfxe_c0 = 0;
1173 p->pkg_both_core_gfxe_c0 = 0;
1174
Len Brownc98d5d92012-06-04 00:56:40 -04001175 p->pc2 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001176 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001177 p->pc3 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001178 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001179 p->pc6 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001180 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001181 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001182 p->pc8 = 0;
1183 p->pc9 = 0;
1184 p->pc10 = 0;
Len Brown889facb2012-11-08 00:48:57 -05001185
1186 p->energy_pkg = 0;
1187 p->energy_dram = 0;
1188 p->energy_cores = 0;
1189 p->energy_gfx = 0;
1190 p->rapl_pkg_perf_status = 0;
1191 p->rapl_dram_perf_status = 0;
1192 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -05001193
Len Brownfdf676e2016-02-27 01:28:12 -05001194 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -05001195 p->gfx_mhz = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001196 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next)
1197 t->counter[i] = 0;
1198
1199 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next)
1200 c->counter[i] = 0;
1201
1202 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next)
1203 p->counter[i] = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001204}
1205int sum_counters(struct thread_data *t, struct core_data *c,
1206 struct pkg_data *p)
1207{
Len Brown388e9c82016-12-22 23:57:55 -05001208 int i;
1209 struct msr_counter *mp;
1210
Len Brownc98d5d92012-06-04 00:56:40 -04001211 average.threads.tsc += t->tsc;
1212 average.threads.aperf += t->aperf;
1213 average.threads.mperf += t->mperf;
1214 average.threads.c1 += t->c1;
1215
Len Brown562a2d32016-02-26 23:48:05 -05001216 average.threads.irq_count += t->irq_count;
1217 average.threads.smi_count += t->smi_count;
1218
Len Brown388e9c82016-12-22 23:57:55 -05001219 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1220 if (mp->format == FORMAT_RAW)
1221 continue;
1222 average.threads.counter[i] += t->counter[i];
1223 }
1224
Len Brownc98d5d92012-06-04 00:56:40 -04001225 /* sum per-core values only for 1st thread in core */
1226 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1227 return 0;
1228
1229 average.cores.c3 += c->c3;
1230 average.cores.c6 += c->c6;
1231 average.cores.c7 += c->c7;
Len Brown0539ba12017-02-10 00:27:20 -05001232 average.cores.mc6_us += c->mc6_us;
Len Brownc98d5d92012-06-04 00:56:40 -04001233
Len Brown889facb2012-11-08 00:48:57 -05001234 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
1235
Len Brown388e9c82016-12-22 23:57:55 -05001236 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1237 if (mp->format == FORMAT_RAW)
1238 continue;
1239 average.cores.counter[i] += c->counter[i];
1240 }
1241
Len Brownc98d5d92012-06-04 00:56:40 -04001242 /* sum per-pkg values only for 1st core in pkg */
1243 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1244 return 0;
1245
Len Brown0b2bb692015-03-26 00:50:30 -04001246 if (do_skl_residency) {
1247 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
1248 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
1249 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
1250 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
1251 }
1252
Len Brownc98d5d92012-06-04 00:56:40 -04001253 average.packages.pc2 += p->pc2;
Len Brown0f47c082017-01-27 00:50:45 -05001254 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001255 average.packages.pc3 += p->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001256 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001257 average.packages.pc6 += p->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001258 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001259 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001260 average.packages.pc8 += p->pc8;
1261 average.packages.pc9 += p->pc9;
1262 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -04001263
Len Brown889facb2012-11-08 00:48:57 -05001264 average.packages.energy_pkg += p->energy_pkg;
1265 average.packages.energy_dram += p->energy_dram;
1266 average.packages.energy_cores += p->energy_cores;
1267 average.packages.energy_gfx += p->energy_gfx;
1268
Len Brownfdf676e2016-02-27 01:28:12 -05001269 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -05001270 average.packages.gfx_mhz = p->gfx_mhz;
1271
Len Brown889facb2012-11-08 00:48:57 -05001272 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
1273
1274 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
1275 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brown388e9c82016-12-22 23:57:55 -05001276
1277 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1278 if (mp->format == FORMAT_RAW)
1279 continue;
1280 average.packages.counter[i] += p->counter[i];
1281 }
Len Brownc98d5d92012-06-04 00:56:40 -04001282 return 0;
1283}
1284/*
1285 * sum the counters for all cpus in the system
1286 * compute the weighted average
1287 */
1288void compute_average(struct thread_data *t, struct core_data *c,
1289 struct pkg_data *p)
1290{
Len Brown388e9c82016-12-22 23:57:55 -05001291 int i;
1292 struct msr_counter *mp;
1293
Len Brownc98d5d92012-06-04 00:56:40 -04001294 clear_counters(&average.threads, &average.cores, &average.packages);
1295
1296 for_all_cpus(sum_counters, t, c, p);
1297
1298 average.threads.tsc /= topo.num_cpus;
1299 average.threads.aperf /= topo.num_cpus;
1300 average.threads.mperf /= topo.num_cpus;
1301 average.threads.c1 /= topo.num_cpus;
1302
Len Brown0de6c0d2017-02-15 21:45:40 -05001303 if (average.threads.irq_count > 9999999)
1304 sums_need_wide_columns = 1;
1305
Len Brownc98d5d92012-06-04 00:56:40 -04001306 average.cores.c3 /= topo.num_cores;
1307 average.cores.c6 /= topo.num_cores;
1308 average.cores.c7 /= topo.num_cores;
Len Brown0539ba12017-02-10 00:27:20 -05001309 average.cores.mc6_us /= topo.num_cores;
Len Brownc98d5d92012-06-04 00:56:40 -04001310
Len Brown0b2bb692015-03-26 00:50:30 -04001311 if (do_skl_residency) {
1312 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
1313 average.packages.pkg_any_core_c0 /= topo.num_packages;
1314 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
1315 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
1316 }
1317
Len Brownc98d5d92012-06-04 00:56:40 -04001318 average.packages.pc2 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001319 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001320 average.packages.pc3 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001321 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001322 average.packages.pc6 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001323 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001324 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001325
1326 average.packages.pc8 /= topo.num_packages;
1327 average.packages.pc9 /= topo.num_packages;
1328 average.packages.pc10 /= topo.num_packages;
Len Brown388e9c82016-12-22 23:57:55 -05001329
1330 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1331 if (mp->format == FORMAT_RAW)
1332 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001333 if (mp->type == COUNTER_ITEMS) {
1334 if (average.threads.counter[i] > 9999999)
1335 sums_need_wide_columns = 1;
Len Brown41618e62017-02-09 18:25:22 -05001336 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001337 }
Len Brown388e9c82016-12-22 23:57:55 -05001338 average.threads.counter[i] /= topo.num_cpus;
1339 }
1340 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1341 if (mp->format == FORMAT_RAW)
1342 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001343 if (mp->type == COUNTER_ITEMS) {
1344 if (average.cores.counter[i] > 9999999)
1345 sums_need_wide_columns = 1;
1346 }
Len Brown388e9c82016-12-22 23:57:55 -05001347 average.cores.counter[i] /= topo.num_cores;
1348 }
1349 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1350 if (mp->format == FORMAT_RAW)
1351 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001352 if (mp->type == COUNTER_ITEMS) {
1353 if (average.packages.counter[i] > 9999999)
1354 sums_need_wide_columns = 1;
1355 }
Len Brown388e9c82016-12-22 23:57:55 -05001356 average.packages.counter[i] /= topo.num_packages;
1357 }
Len Brownc98d5d92012-06-04 00:56:40 -04001358}
1359
1360static unsigned long long rdtsc(void)
1361{
1362 unsigned int low, high;
1363
1364 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1365
1366 return low | ((unsigned long long)high) << 32;
1367}
1368
Len Brownc98d5d92012-06-04 00:56:40 -04001369/*
Len Brown495c76542017-02-08 02:41:51 -05001370 * Open a file, and exit on failure
1371 */
1372FILE *fopen_or_die(const char *path, const char *mode)
1373{
1374 FILE *filep = fopen(path, mode);
1375
1376 if (!filep)
1377 err(1, "%s: open failed", path);
1378 return filep;
1379}
1380/*
1381 * snapshot_sysfs_counter()
1382 *
1383 * return snapshot of given counter
1384 */
1385unsigned long long snapshot_sysfs_counter(char *path)
1386{
1387 FILE *fp;
1388 int retval;
1389 unsigned long long counter;
1390
1391 fp = fopen_or_die(path, "r");
1392
1393 retval = fscanf(fp, "%lld", &counter);
1394 if (retval != 1)
1395 err(1, "snapshot_sysfs_counter(%s)", path);
1396
1397 fclose(fp);
1398
1399 return counter;
1400}
1401
1402int get_mp(int cpu, struct msr_counter *mp, unsigned long long *counterp)
1403{
1404 if (mp->msr_num != 0) {
1405 if (get_msr(cpu, mp->msr_num, counterp))
1406 return -1;
1407 } else {
Len Brown41618e62017-02-09 18:25:22 -05001408 char path[128];
1409
1410 if (mp->flags & SYSFS_PERCPU) {
1411 sprintf(path, "/sys/devices/system/cpu/cpu%d/%s",
1412 cpu, mp->path);
1413
1414 *counterp = snapshot_sysfs_counter(path);
1415 } else {
1416 *counterp = snapshot_sysfs_counter(mp->path);
1417 }
Len Brown495c76542017-02-08 02:41:51 -05001418 }
1419
1420 return 0;
1421}
1422
1423/*
Len Brownc98d5d92012-06-04 00:56:40 -04001424 * get_counters(...)
1425 * migrate to cpu
1426 * acquire and record local counters for that cpu
1427 */
1428int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1429{
1430 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001431 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001432 int aperf_mperf_retry_count = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001433 struct msr_counter *mp;
1434 int i;
Len Brownc98d5d92012-06-04 00:56:40 -04001435
Len Browne52966c2012-11-08 22:38:05 -05001436 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001437 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001438 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001439 }
Len Brownc98d5d92012-06-04 00:56:40 -04001440
Len Brown0102b062016-02-27 03:11:29 -05001441retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001442 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1443
Len Brown812db3f2017-02-10 00:25:41 -05001444 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Brown0102b062016-02-27 03:11:29 -05001445 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1446
1447 /*
1448 * The TSC, APERF and MPERF must be read together for
1449 * APERF/MPERF and MPERF/TSC to give accurate results.
1450 *
1451 * Unfortunately, APERF and MPERF are read by
1452 * individual system call, so delays may occur
1453 * between them. If the time to read them
1454 * varies by a large amount, we re-read them.
1455 */
1456
1457 /*
1458 * This initial dummy APERF read has been seen to
1459 * reduce jitter in the subsequent reads.
1460 */
1461
Len Brown9c63a652012-10-31 01:29:52 -04001462 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001463 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001464
1465 t->tsc = rdtsc(); /* re-read close to APERF */
1466
1467 tsc_before = t->tsc;
1468
1469 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1470 return -3;
1471
1472 tsc_between = rdtsc();
1473
Len Brown9c63a652012-10-31 01:29:52 -04001474 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001475 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001476
1477 tsc_after = rdtsc();
1478
1479 aperf_time = tsc_between - tsc_before;
1480 mperf_time = tsc_after - tsc_between;
1481
1482 /*
1483 * If the system call latency to read APERF and MPERF
1484 * differ by more than 2x, then try again.
1485 */
1486 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1487 aperf_mperf_retry_count++;
1488 if (aperf_mperf_retry_count < 5)
1489 goto retry;
1490 else
1491 warnx("cpu%d jitter %lld %lld",
1492 cpu, aperf_time, mperf_time);
1493 }
1494 aperf_mperf_retry_count = 0;
1495
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001496 t->aperf = t->aperf * aperf_mperf_multiplier;
1497 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001498 }
1499
Len Brown812db3f2017-02-10 00:25:41 -05001500 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001501 t->irq_count = irqs_per_cpu[cpu];
Len Brown812db3f2017-02-10 00:25:41 -05001502 if (DO_BIC(BIC_SMI)) {
Len Brown1ed51012013-02-10 17:19:24 -05001503 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1504 return -5;
1505 t->smi_count = msr & 0xFFFFFFFF;
1506 }
Len Brown0539ba12017-02-10 00:27:20 -05001507 if (DO_BIC(BIC_CPU_c1) && use_c1_residency_msr) {
Len Brown144b44b2013-11-09 00:30:16 -05001508 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1509 return -6;
1510 }
1511
Len Brown388e9c82016-12-22 23:57:55 -05001512 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001513 if (get_mp(cpu, mp, &t->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001514 return -10;
1515 }
1516
Len Brownc98d5d92012-06-04 00:56:40 -04001517 /* collect core counters only for 1st thread in core */
1518 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1519 return 0;
1520
Len Brown812db3f2017-02-10 00:25:41 -05001521 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001522 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1523 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001524 }
1525
Len Brown812db3f2017-02-10 00:25:41 -05001526 if (DO_BIC(BIC_CPU_c6) && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001527 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1528 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001529 } else if (do_knl_cstates) {
1530 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1531 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001532 }
1533
Len Brown812db3f2017-02-10 00:25:41 -05001534 if (DO_BIC(BIC_CPU_c7))
Len Brownc98d5d92012-06-04 00:56:40 -04001535 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1536 return -8;
1537
Len Brown0539ba12017-02-10 00:27:20 -05001538 if (DO_BIC(BIC_Mod_c6))
1539 if (get_msr(cpu, MSR_MODULE_C6_RES_MS, &c->mc6_us))
1540 return -8;
1541
Len Brown812db3f2017-02-10 00:25:41 -05001542 if (DO_BIC(BIC_CoreTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001543 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1544 return -9;
1545 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1546 }
1547
Len Brown388e9c82016-12-22 23:57:55 -05001548 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001549 if (get_mp(cpu, mp, &c->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001550 return -10;
1551 }
Len Brown889facb2012-11-08 00:48:57 -05001552
Len Brownc98d5d92012-06-04 00:56:40 -04001553 /* collect package counters only for 1st core in package */
1554 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1555 return 0;
1556
Len Brown0b2bb692015-03-26 00:50:30 -04001557 if (do_skl_residency) {
1558 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1559 return -10;
1560 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1561 return -11;
1562 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1563 return -12;
1564 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1565 return -13;
1566 }
Len Brown0f47c082017-01-27 00:50:45 -05001567 if (DO_BIC(BIC_Pkgpc3))
Len Brownc98d5d92012-06-04 00:56:40 -04001568 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1569 return -9;
Len Brown0f47c082017-01-27 00:50:45 -05001570 if (DO_BIC(BIC_Pkgpc6)) {
Len Brown0539ba12017-02-10 00:27:20 -05001571 if (do_slm_cstates) {
1572 if (get_msr(cpu, MSR_ATOM_PKG_C6_RESIDENCY, &p->pc6))
1573 return -10;
1574 } else {
1575 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1576 return -10;
1577 }
1578 }
1579
Len Brown0f47c082017-01-27 00:50:45 -05001580 if (DO_BIC(BIC_Pkgpc2))
Len Brownc98d5d92012-06-04 00:56:40 -04001581 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1582 return -11;
Len Brown0f47c082017-01-27 00:50:45 -05001583 if (DO_BIC(BIC_Pkgpc7))
Len Brownc98d5d92012-06-04 00:56:40 -04001584 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1585 return -12;
Len Brown0f47c082017-01-27 00:50:45 -05001586 if (DO_BIC(BIC_Pkgpc8))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001587 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1588 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001589 if (DO_BIC(BIC_Pkgpc9))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001590 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1591 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001592 if (DO_BIC(BIC_Pkgpc10))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001593 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1594 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001595
Len Brown889facb2012-11-08 00:48:57 -05001596 if (do_rapl & RAPL_PKG) {
1597 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1598 return -13;
1599 p->energy_pkg = msr & 0xFFFFFFFF;
1600 }
Jacob Pan91484942016-06-16 09:48:20 -07001601 if (do_rapl & RAPL_CORES_ENERGY_STATUS) {
Len Brown889facb2012-11-08 00:48:57 -05001602 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1603 return -14;
1604 p->energy_cores = msr & 0xFFFFFFFF;
1605 }
1606 if (do_rapl & RAPL_DRAM) {
1607 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1608 return -15;
1609 p->energy_dram = msr & 0xFFFFFFFF;
1610 }
1611 if (do_rapl & RAPL_GFX) {
1612 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1613 return -16;
1614 p->energy_gfx = msr & 0xFFFFFFFF;
1615 }
1616 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1617 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1618 return -16;
1619 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1620 }
1621 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1622 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1623 return -16;
1624 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1625 }
Len Brown812db3f2017-02-10 00:25:41 -05001626 if (DO_BIC(BIC_PkgTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001627 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1628 return -17;
1629 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1630 }
Len Brownfdf676e2016-02-27 01:28:12 -05001631
Len Brown812db3f2017-02-10 00:25:41 -05001632 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05001633 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1634
Len Brown812db3f2017-02-10 00:25:41 -05001635 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05001636 p->gfx_mhz = gfx_cur_mhz;
1637
Len Brown388e9c82016-12-22 23:57:55 -05001638 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001639 if (get_mp(cpu, mp, &p->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001640 return -10;
1641 }
1642
Len Brown103a8fe2010-10-22 23:53:03 -04001643 return 0;
1644}
1645
Len Brownee7e38e2015-02-09 23:39:45 -05001646/*
1647 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1648 * If you change the values, note they are used both in comparisons
1649 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1650 */
1651
1652#define PCLUKN 0 /* Unknown */
1653#define PCLRSV 1 /* Reserved */
1654#define PCL__0 2 /* PC0 */
1655#define PCL__1 3 /* PC1 */
1656#define PCL__2 4 /* PC2 */
1657#define PCL__3 5 /* PC3 */
1658#define PCL__4 6 /* PC4 */
1659#define PCL__6 7 /* PC6 */
1660#define PCL_6N 8 /* PC6 No Retention */
1661#define PCL_6R 9 /* PC6 Retention */
1662#define PCL__7 10 /* PC7 */
1663#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001664#define PCL__8 12 /* PC8 */
1665#define PCL__9 13 /* PC9 */
1666#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001667
1668int pkg_cstate_limit = PCLUKN;
1669char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001670 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001671
Len Browne9257f52015-04-01 21:02:57 -04001672int 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};
1673int 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};
1674int 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};
Len Brown0539ba12017-02-10 00:27:20 -05001675int slv_pkg_cstate_limits[16] = {PCL__0, PCL__1, PCLRSV, PCLRSV, PCL__4, PCLRSV, PCL__6, PCL__7, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCL__6, PCL__7};
Len Brownf2642882017-01-07 23:13:15 -05001676int amt_pkg_cstate_limits[16] = {PCLUNL, PCL__1, PCL__2, PCLRSV, PCLRSV, PCLRSV, PCL__6, PCL__7, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
Len Browne9257f52015-04-01 21:02:57 -04001677int 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 -04001678int bxt_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
Len Brownd8ebb442016-12-01 20:27:46 -05001679int skx_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCL_6N, PCL_6R, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
Len Brownee7e38e2015-02-09 23:39:45 -05001680
Len Browna2b7b742015-09-26 00:12:38 -04001681
1682static void
1683calculate_tsc_tweak()
1684{
Len Browna2b7b742015-09-26 00:12:38 -04001685 tsc_tweak = base_hz / tsc_hz;
1686}
1687
Len Brownfcd17212015-03-23 20:29:09 -04001688static void
1689dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001690{
1691 unsigned long long msr;
1692 unsigned int ratio;
1693
Len Brownec0adc52015-11-12 02:42:31 -05001694 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001695
Len Brownb7d8c142016-02-13 23:36:17 -05001696 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001697
Len Brown103a8fe2010-10-22 23:53:03 -04001698 ratio = (msr >> 40) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001699 fprintf(outf, "%d * %.1f = %.1f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001700 ratio, bclk, ratio * bclk);
1701
1702 ratio = (msr >> 8) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001703 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001704 ratio, bclk, ratio * bclk);
1705
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001706 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001707 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001708 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001709
Len Brownfcd17212015-03-23 20:29:09 -04001710 return;
1711}
1712
1713static void
1714dump_hsw_turbo_ratio_limits(void)
1715{
1716 unsigned long long msr;
1717 unsigned int ratio;
1718
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001719 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001720
Len Brownb7d8c142016-02-13 23:36:17 -05001721 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001722
1723 ratio = (msr >> 8) & 0xFF;
1724 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001725 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001726 ratio, bclk, ratio * bclk);
1727
1728 ratio = (msr >> 0) & 0xFF;
1729 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001730 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001731 ratio, bclk, ratio * bclk);
1732 return;
1733}
1734
1735static void
1736dump_ivt_turbo_ratio_limits(void)
1737{
1738 unsigned long long msr;
1739 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001740
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001741 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001742
Len Brownb7d8c142016-02-13 23:36:17 -05001743 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001744
1745 ratio = (msr >> 56) & 0xFF;
1746 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001747 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001748 ratio, bclk, ratio * bclk);
1749
1750 ratio = (msr >> 48) & 0xFF;
1751 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001752 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001753 ratio, bclk, ratio * bclk);
1754
1755 ratio = (msr >> 40) & 0xFF;
1756 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001757 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001758 ratio, bclk, ratio * bclk);
1759
1760 ratio = (msr >> 32) & 0xFF;
1761 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001762 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001763 ratio, bclk, ratio * bclk);
1764
1765 ratio = (msr >> 24) & 0xFF;
1766 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001767 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001768 ratio, bclk, ratio * bclk);
1769
1770 ratio = (msr >> 16) & 0xFF;
1771 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001772 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001773 ratio, bclk, ratio * bclk);
1774
1775 ratio = (msr >> 8) & 0xFF;
1776 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001777 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001778 ratio, bclk, ratio * bclk);
1779
1780 ratio = (msr >> 0) & 0xFF;
1781 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001782 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001783 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001784 return;
1785}
Len Brown31e07522017-01-31 23:07:49 -05001786int has_turbo_ratio_group_limits(int family, int model)
1787{
1788
1789 if (!genuine_intel)
1790 return 0;
1791
1792 switch (model) {
1793 case INTEL_FAM6_ATOM_GOLDMONT:
1794 case INTEL_FAM6_SKYLAKE_X:
1795 case INTEL_FAM6_ATOM_DENVERTON:
1796 return 1;
1797 }
1798 return 0;
1799}
Len Brown6574a5d2012-09-21 00:01:31 -04001800
Len Brownfcd17212015-03-23 20:29:09 -04001801static void
Len Brown31e07522017-01-31 23:07:49 -05001802dump_turbo_ratio_limits(int family, int model)
Len Brownfcd17212015-03-23 20:29:09 -04001803{
Len Brown31e07522017-01-31 23:07:49 -05001804 unsigned long long msr, core_counts;
1805 unsigned int ratio, group_size;
Len Brown103a8fe2010-10-22 23:53:03 -04001806
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001807 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001808 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001809
Len Brown31e07522017-01-31 23:07:49 -05001810 if (has_turbo_ratio_group_limits(family, model)) {
1811 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &core_counts);
1812 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, core_counts);
1813 } else {
1814 core_counts = 0x0807060504030201;
1815 }
1816
Len Brown6574a5d2012-09-21 00:01:31 -04001817 ratio = (msr >> 56) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001818 group_size = (core_counts >> 56) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001819 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001820 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1821 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001822
1823 ratio = (msr >> 48) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001824 group_size = (core_counts >> 48) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001825 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001826 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1827 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001828
1829 ratio = (msr >> 40) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001830 group_size = (core_counts >> 40) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001831 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001832 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1833 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001834
1835 ratio = (msr >> 32) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001836 group_size = (core_counts >> 32) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001837 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001838 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1839 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001840
Len Brown103a8fe2010-10-22 23:53:03 -04001841 ratio = (msr >> 24) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001842 group_size = (core_counts >> 24) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001843 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001844 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1845 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001846
1847 ratio = (msr >> 16) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001848 group_size = (core_counts >> 16) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001849 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001850 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1851 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001852
1853 ratio = (msr >> 8) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001854 group_size = (core_counts >> 8) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001855 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001856 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1857 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001858
1859 ratio = (msr >> 0) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001860 group_size = (core_counts >> 0) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001861 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001862 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1863 ratio, bclk, ratio * bclk, group_size);
Len Brownfcd17212015-03-23 20:29:09 -04001864 return;
1865}
Len Brown3a9a9412014-08-15 02:39:52 -04001866
Len Brownfcd17212015-03-23 20:29:09 -04001867static void
Len Brown0f7887c2017-01-12 23:49:18 -05001868dump_atom_turbo_ratio_limits(void)
1869{
1870 unsigned long long msr;
1871 unsigned int ratio;
1872
1873 get_msr(base_cpu, MSR_ATOM_CORE_RATIOS, &msr);
1874 fprintf(outf, "cpu%d: MSR_ATOM_CORE_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
1875
1876 ratio = (msr >> 0) & 0x3F;
1877 if (ratio)
1878 fprintf(outf, "%d * %.1f = %.1f MHz minimum operating frequency\n",
1879 ratio, bclk, ratio * bclk);
1880
1881 ratio = (msr >> 8) & 0x3F;
1882 if (ratio)
1883 fprintf(outf, "%d * %.1f = %.1f MHz low frequency mode (LFM)\n",
1884 ratio, bclk, ratio * bclk);
1885
1886 ratio = (msr >> 16) & 0x3F;
1887 if (ratio)
1888 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
1889 ratio, bclk, ratio * bclk);
1890
1891 get_msr(base_cpu, MSR_ATOM_CORE_TURBO_RATIOS, &msr);
1892 fprintf(outf, "cpu%d: MSR_ATOM_CORE_TURBO_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
1893
1894 ratio = (msr >> 24) & 0x3F;
1895 if (ratio)
1896 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 4 active cores\n",
1897 ratio, bclk, ratio * bclk);
1898
1899 ratio = (msr >> 16) & 0x3F;
1900 if (ratio)
1901 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 3 active cores\n",
1902 ratio, bclk, ratio * bclk);
1903
1904 ratio = (msr >> 8) & 0x3F;
1905 if (ratio)
1906 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 2 active cores\n",
1907 ratio, bclk, ratio * bclk);
1908
1909 ratio = (msr >> 0) & 0x3F;
1910 if (ratio)
1911 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 1 active core\n",
1912 ratio, bclk, ratio * bclk);
1913}
1914
1915static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001916dump_knl_turbo_ratio_limits(void)
1917{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001918 const unsigned int buckets_no = 7;
1919
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001920 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001921 int delta_cores, delta_ratio;
1922 int i, b_nr;
1923 unsigned int cores[buckets_no];
1924 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001925
Srinivas Pandruvadaebf59262016-07-06 16:07:56 -07001926 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001927
Len Brownb7d8c142016-02-13 23:36:17 -05001928 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04001929 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001930
1931 /**
1932 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001933 * [0] -- Reserved
1934 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001935 * [15:8] -- Base value of freq ratio of bucket 1.
1936 * [20:16] -- +ve delta of number of active cores of bucket 2.
1937 * i.e. active cores of bucket 2 =
1938 * active cores of bucket 1 + delta
1939 * [23:21] -- Negative delta of freq ratio of bucket 2.
1940 * i.e. freq ratio of bucket 2 =
1941 * freq ratio of bucket 1 - delta
1942 * [28:24]-- +ve delta of number of active cores of bucket 3.
1943 * [31:29]-- -ve delta of freq ratio of bucket 3.
1944 * [36:32]-- +ve delta of number of active cores of bucket 4.
1945 * [39:37]-- -ve delta of freq ratio of bucket 4.
1946 * [44:40]-- +ve delta of number of active cores of bucket 5.
1947 * [47:45]-- -ve delta of freq ratio of bucket 5.
1948 * [52:48]-- +ve delta of number of active cores of bucket 6.
1949 * [55:53]-- -ve delta of freq ratio of bucket 6.
1950 * [60:56]-- +ve delta of number of active cores of bucket 7.
1951 * [63:61]-- -ve delta of freq ratio of bucket 7.
1952 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001953
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001954 b_nr = 0;
1955 cores[b_nr] = (msr & 0xFF) >> 1;
1956 ratio[b_nr] = (msr >> 8) & 0xFF;
1957
1958 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001959 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001960 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001961
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001962 cores[b_nr + 1] = cores[b_nr] + delta_cores;
1963 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
1964 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001965 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001966
1967 for (i = buckets_no - 1; i >= 0; i--)
1968 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05001969 fprintf(outf,
Len Brown710f2732017-01-11 22:12:25 -05001970 "%d * %.1f = %.1f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01001971 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001972}
1973
1974static void
Len Brownfcd17212015-03-23 20:29:09 -04001975dump_nhm_cst_cfg(void)
1976{
1977 unsigned long long msr;
1978
Len Brown1df2e552017-01-07 23:24:57 -05001979 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001980
1981#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
1982#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
1983
Len Brown1df2e552017-01-07 23:24:57 -05001984 fprintf(outf, "cpu%d: MSR_PKG_CST_CONFIG_CONTROL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001985
Len Brownb7d8c142016-02-13 23:36:17 -05001986 fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
Len Brownfcd17212015-03-23 20:29:09 -04001987 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
1988 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
1989 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
1990 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
1991 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04001992 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04001993 pkg_cstate_limit_strings[pkg_cstate_limit]);
1994 return;
Len Brown103a8fe2010-10-22 23:53:03 -04001995}
1996
Len Brown6fb31432015-06-17 16:23:45 -04001997static void
1998dump_config_tdp(void)
1999{
2000 unsigned long long msr;
2001
2002 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002003 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002004 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04002005
2006 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002007 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002008 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002009 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2010 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2011 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2012 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002013 }
Len Brownb7d8c142016-02-13 23:36:17 -05002014 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002015
2016 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002017 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002018 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002019 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2020 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2021 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2022 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002023 }
Len Brownb7d8c142016-02-13 23:36:17 -05002024 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002025
2026 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002027 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002028 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05002029 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
2030 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2031 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05002032
Len Brown6fb31432015-06-17 16:23:45 -04002033 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002034 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002035 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05002036 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2037 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002038}
Len Brown5a634262016-04-06 17:15:55 -04002039
2040unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
2041
2042void print_irtl(void)
2043{
2044 unsigned long long msr;
2045
2046 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
2047 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
2048 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2049 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2050
2051 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
2052 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
2053 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2054 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2055
2056 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
2057 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
2058 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2059 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2060
2061 if (!do_irtl_hsw)
2062 return;
2063
2064 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
2065 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
2066 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2067 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2068
2069 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
2070 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
2071 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2072 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2073
2074 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
2075 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
2076 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2077 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2078
2079}
Len Brown36229892016-02-26 20:51:02 -05002080void free_fd_percpu(void)
2081{
2082 int i;
2083
Mika Westerberg01a67ad2016-04-22 11:13:23 +03002084 for (i = 0; i < topo.max_cpu_num + 1; ++i) {
Len Brown36229892016-02-26 20:51:02 -05002085 if (fd_percpu[i] != 0)
2086 close(fd_percpu[i]);
2087 }
2088
2089 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04002090}
2091
Len Brownc98d5d92012-06-04 00:56:40 -04002092void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04002093{
Len Brownc98d5d92012-06-04 00:56:40 -04002094 CPU_FREE(cpu_present_set);
2095 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05002096 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002097
Len Brownc98d5d92012-06-04 00:56:40 -04002098 CPU_FREE(cpu_affinity_set);
2099 cpu_affinity_set = NULL;
2100 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002101
Len Brownc98d5d92012-06-04 00:56:40 -04002102 free(thread_even);
2103 free(core_even);
2104 free(package_even);
2105
2106 thread_even = NULL;
2107 core_even = NULL;
2108 package_even = NULL;
2109
2110 free(thread_odd);
2111 free(core_odd);
2112 free(package_odd);
2113
2114 thread_odd = NULL;
2115 core_odd = NULL;
2116 package_odd = NULL;
2117
2118 free(output_buffer);
2119 output_buffer = NULL;
2120 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05002121
2122 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05002123
2124 free(irq_column_2_cpu);
2125 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002126}
2127
Josh Triplett57a42a32013-08-20 17:20:17 -07002128
2129/*
Josh Triplett95aebc42013-08-20 17:20:16 -07002130 * Parse a file containing a single int.
2131 */
2132int parse_int_file(const char *fmt, ...)
2133{
2134 va_list args;
2135 char path[PATH_MAX];
2136 FILE *filep;
2137 int value;
2138
2139 va_start(args, fmt);
2140 vsnprintf(path, sizeof(path), fmt, args);
2141 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07002142 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002143 if (fscanf(filep, "%d", &value) != 1)
2144 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07002145 fclose(filep);
2146 return value;
2147}
2148
2149/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002150 * get_cpu_position_in_core(cpu)
2151 * return the position of the CPU among its HT siblings in the core
2152 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04002153 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002154int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002155{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002156 char path[64];
2157 FILE *filep;
2158 int this_cpu;
2159 char character;
2160 int i;
2161
2162 sprintf(path,
2163 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
2164 cpu);
2165 filep = fopen(path, "r");
2166 if (filep == NULL) {
2167 perror(path);
2168 exit(1);
2169 }
2170
2171 for (i = 0; i < topo.num_threads_per_core; i++) {
2172 fscanf(filep, "%d", &this_cpu);
2173 if (this_cpu == cpu) {
2174 fclose(filep);
2175 return i;
2176 }
2177
2178 /* Account for no separator after last thread*/
2179 if (i != (topo.num_threads_per_core - 1))
2180 fscanf(filep, "%c", &character);
2181 }
2182
2183 fclose(filep);
2184 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04002185}
2186
Len Brownc98d5d92012-06-04 00:56:40 -04002187/*
2188 * cpu_is_first_core_in_package(cpu)
2189 * return 1 if given CPU is 1st core in package
2190 */
2191int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002192{
Josh Triplett95aebc42013-08-20 17:20:16 -07002193 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002194}
2195
2196int get_physical_package_id(int cpu)
2197{
Josh Triplett95aebc42013-08-20 17:20:16 -07002198 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002199}
2200
2201int get_core_id(int cpu)
2202{
Josh Triplett95aebc42013-08-20 17:20:16 -07002203 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002204}
2205
Len Brownc98d5d92012-06-04 00:56:40 -04002206int get_num_ht_siblings(int cpu)
2207{
2208 char path[80];
2209 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002210 int sib1;
2211 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002212 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002213 char str[100];
2214 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04002215
2216 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07002217 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002218
Len Brownc98d5d92012-06-04 00:56:40 -04002219 /*
2220 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002221 * A ',' separated or '-' separated set of numbers
2222 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04002223 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002224 fscanf(filep, "%d%c\n", &sib1, &character);
2225 fseek(filep, 0, SEEK_SET);
2226 fgets(str, 100, filep);
2227 ch = strchr(str, character);
2228 while (ch != NULL) {
2229 matches++;
2230 ch = strchr(ch+1, character);
2231 }
Len Brownc98d5d92012-06-04 00:56:40 -04002232
2233 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002234 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04002235}
2236
Len Brown103a8fe2010-10-22 23:53:03 -04002237/*
Len Brownc98d5d92012-06-04 00:56:40 -04002238 * run func(thread, core, package) in topology order
2239 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04002240 */
2241
Len Brownc98d5d92012-06-04 00:56:40 -04002242int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
2243 struct pkg_data *, struct thread_data *, struct core_data *,
2244 struct pkg_data *), struct thread_data *thread_base,
2245 struct core_data *core_base, struct pkg_data *pkg_base,
2246 struct thread_data *thread_base2, struct core_data *core_base2,
2247 struct pkg_data *pkg_base2)
2248{
2249 int retval, pkg_no, core_no, thread_no;
2250
2251 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
2252 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
2253 for (thread_no = 0; thread_no <
2254 topo.num_threads_per_core; ++thread_no) {
2255 struct thread_data *t, *t2;
2256 struct core_data *c, *c2;
2257 struct pkg_data *p, *p2;
2258
2259 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
2260
2261 if (cpu_is_not_present(t->cpu_id))
2262 continue;
2263
2264 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
2265
2266 c = GET_CORE(core_base, core_no, pkg_no);
2267 c2 = GET_CORE(core_base2, core_no, pkg_no);
2268
2269 p = GET_PKG(pkg_base, pkg_no);
2270 p2 = GET_PKG(pkg_base2, pkg_no);
2271
2272 retval = func(t, c, p, t2, c2, p2);
2273 if (retval)
2274 return retval;
2275 }
2276 }
2277 }
2278 return 0;
2279}
2280
2281/*
2282 * run func(cpu) on every cpu in /proc/stat
2283 * return max_cpu number
2284 */
2285int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04002286{
2287 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04002288 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04002289 int retval;
2290
Josh Triplett57a42a32013-08-20 17:20:17 -07002291 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04002292
2293 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002294 if (retval != 0)
2295 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04002296
Len Brownc98d5d92012-06-04 00:56:40 -04002297 while (1) {
2298 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 -04002299 if (retval != 1)
2300 break;
2301
Len Brownc98d5d92012-06-04 00:56:40 -04002302 retval = func(cpu_num);
2303 if (retval) {
2304 fclose(fp);
2305 return(retval);
2306 }
Len Brown103a8fe2010-10-22 23:53:03 -04002307 }
2308 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04002309 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002310}
2311
2312void re_initialize(void)
2313{
Len Brownc98d5d92012-06-04 00:56:40 -04002314 free_all_buffers();
2315 setup_all_buffers();
2316 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04002317}
2318
Len Brownc98d5d92012-06-04 00:56:40 -04002319
Len Brown103a8fe2010-10-22 23:53:03 -04002320/*
Len Brownc98d5d92012-06-04 00:56:40 -04002321 * count_cpus()
2322 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04002323 */
Len Brownc98d5d92012-06-04 00:56:40 -04002324int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002325{
Len Brownc98d5d92012-06-04 00:56:40 -04002326 if (topo.max_cpu_num < cpu)
2327 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04002328
Len Brownc98d5d92012-06-04 00:56:40 -04002329 topo.num_cpus += 1;
2330 return 0;
2331}
2332int mark_cpu_present(int cpu)
2333{
2334 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04002335 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002336}
2337
Len Brown562a2d32016-02-26 23:48:05 -05002338/*
2339 * snapshot_proc_interrupts()
2340 *
2341 * read and record summary of /proc/interrupts
2342 *
2343 * return 1 if config change requires a restart, else return 0
2344 */
2345int snapshot_proc_interrupts(void)
2346{
2347 static FILE *fp;
2348 int column, retval;
2349
2350 if (fp == NULL)
2351 fp = fopen_or_die("/proc/interrupts", "r");
2352 else
2353 rewind(fp);
2354
2355 /* read 1st line of /proc/interrupts to get cpu* name for each column */
2356 for (column = 0; column < topo.num_cpus; ++column) {
2357 int cpu_number;
2358
2359 retval = fscanf(fp, " CPU%d", &cpu_number);
2360 if (retval != 1)
2361 break;
2362
2363 if (cpu_number > topo.max_cpu_num) {
2364 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
2365 return 1;
2366 }
2367
2368 irq_column_2_cpu[column] = cpu_number;
2369 irqs_per_cpu[cpu_number] = 0;
2370 }
2371
2372 /* read /proc/interrupt count lines and sum up irqs per cpu */
2373 while (1) {
2374 int column;
2375 char buf[64];
2376
2377 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
2378 if (retval != 1)
2379 break;
2380
2381 /* read the count per cpu */
2382 for (column = 0; column < topo.num_cpus; ++column) {
2383
2384 int cpu_number, irq_count;
2385
2386 retval = fscanf(fp, " %d", &irq_count);
2387 if (retval != 1)
2388 break;
2389
2390 cpu_number = irq_column_2_cpu[column];
2391 irqs_per_cpu[cpu_number] += irq_count;
2392
2393 }
2394
2395 while (getc(fp) != '\n')
2396 ; /* flush interrupt description */
2397
2398 }
2399 return 0;
2400}
Len Brown27d47352016-02-27 00:37:54 -05002401/*
Len Brownfdf676e2016-02-27 01:28:12 -05002402 * snapshot_gfx_rc6_ms()
2403 *
2404 * record snapshot of
2405 * /sys/class/drm/card0/power/rc6_residency_ms
2406 *
2407 * return 1 if config change requires a restart, else return 0
2408 */
2409int snapshot_gfx_rc6_ms(void)
2410{
2411 FILE *fp;
2412 int retval;
2413
2414 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
2415
2416 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
2417 if (retval != 1)
2418 err(1, "GFX rc6");
2419
2420 fclose(fp);
2421
2422 return 0;
2423}
2424/*
Len Brown27d47352016-02-27 00:37:54 -05002425 * snapshot_gfx_mhz()
2426 *
2427 * record snapshot of
2428 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
2429 *
2430 * return 1 if config change requires a restart, else return 0
2431 */
2432int snapshot_gfx_mhz(void)
2433{
2434 static FILE *fp;
2435 int retval;
2436
2437 if (fp == NULL)
2438 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
2439 else
2440 rewind(fp);
2441
2442 retval = fscanf(fp, "%d", &gfx_cur_mhz);
2443 if (retval != 1)
2444 err(1, "GFX MHz");
2445
2446 return 0;
2447}
Len Brown562a2d32016-02-26 23:48:05 -05002448
2449/*
2450 * snapshot /proc and /sys files
2451 *
2452 * return 1 if configuration restart needed, else return 0
2453 */
2454int snapshot_proc_sysfs_files(void)
2455{
Len Brown218f0e82017-02-14 22:07:52 -05002456 if (DO_BIC(BIC_IRQ))
2457 if (snapshot_proc_interrupts())
2458 return 1;
Len Brown562a2d32016-02-26 23:48:05 -05002459
Len Brown812db3f2017-02-10 00:25:41 -05002460 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05002461 snapshot_gfx_rc6_ms();
2462
Len Brown812db3f2017-02-10 00:25:41 -05002463 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05002464 snapshot_gfx_mhz();
2465
Len Brown562a2d32016-02-26 23:48:05 -05002466 return 0;
2467}
2468
Len Brown103a8fe2010-10-22 23:53:03 -04002469void turbostat_loop()
2470{
Len Brownc98d5d92012-06-04 00:56:40 -04002471 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002472 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002473
Len Brown103a8fe2010-10-22 23:53:03 -04002474restart:
Len Browne52966c2012-11-08 22:38:05 -05002475 restarted++;
2476
Len Brown562a2d32016-02-26 23:48:05 -05002477 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002478 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002479 if (retval < -1) {
2480 exit(retval);
2481 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002482 if (restarted > 1) {
2483 exit(retval);
2484 }
Len Brownc98d5d92012-06-04 00:56:40 -04002485 re_initialize();
2486 goto restart;
2487 }
Len Browne52966c2012-11-08 22:38:05 -05002488 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002489 gettimeofday(&tv_even, (struct timezone *)NULL);
2490
2491 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002492 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002493 re_initialize();
2494 goto restart;
2495 }
Len Brown2a0609c2016-02-12 22:44:48 -05002496 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002497 if (snapshot_proc_sysfs_files())
2498 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002499 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002500 if (retval < -1) {
2501 exit(retval);
2502 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002503 re_initialize();
2504 goto restart;
2505 }
Len Brown103a8fe2010-10-22 23:53:03 -04002506 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002507 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002508 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2509 re_initialize();
2510 goto restart;
2511 }
Len Brownc98d5d92012-06-04 00:56:40 -04002512 compute_average(EVEN_COUNTERS);
2513 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002514 flush_output_stdout();
Len Brown2a0609c2016-02-12 22:44:48 -05002515 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002516 if (snapshot_proc_sysfs_files())
2517 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002518 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002519 if (retval < -1) {
2520 exit(retval);
2521 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002522 re_initialize();
2523 goto restart;
2524 }
Len Brown103a8fe2010-10-22 23:53:03 -04002525 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002526 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002527 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2528 re_initialize();
2529 goto restart;
2530 }
Len Brownc98d5d92012-06-04 00:56:40 -04002531 compute_average(ODD_COUNTERS);
2532 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002533 flush_output_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -04002534 }
2535}
2536
2537void check_dev_msr()
2538{
2539 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002540 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002541
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002542 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2543 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002544 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2545 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002546}
2547
Len Brown98481e72014-08-15 00:36:50 -04002548void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002549{
Len Brown98481e72014-08-15 00:36:50 -04002550 struct __user_cap_header_struct cap_header_data;
2551 cap_user_header_t cap_header = &cap_header_data;
2552 struct __user_cap_data_struct cap_data_data;
2553 cap_user_data_t cap_data = &cap_data_data;
2554 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2555 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002556 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002557
2558 /* check for CAP_SYS_RAWIO */
2559 cap_header->pid = getpid();
2560 cap_header->version = _LINUX_CAPABILITY_VERSION;
2561 if (capget(cap_header, cap_data) < 0)
2562 err(-6, "capget(2) failed");
2563
2564 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2565 do_exit++;
2566 warnx("capget(CAP_SYS_RAWIO) failed,"
2567 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2568 }
2569
2570 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002571 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2572 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002573 do_exit++;
2574 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2575 }
2576
2577 /* if all else fails, thell them to be root */
2578 if (do_exit)
2579 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002580 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002581
2582 if (do_exit)
2583 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002584}
2585
Len Brownd7899442015-01-23 00:12:33 -05002586/*
2587 * NHM adds support for additional MSRs:
2588 *
2589 * MSR_SMI_COUNT 0x00000034
2590 *
Len Brownec0adc52015-11-12 02:42:31 -05002591 * MSR_PLATFORM_INFO 0x000000ce
Len Brown1df2e552017-01-07 23:24:57 -05002592 * MSR_PKG_CST_CONFIG_CONTROL 0x000000e2
Len Brownd7899442015-01-23 00:12:33 -05002593 *
Len Browncf4cbe52017-01-01 13:08:33 -05002594 * MSR_MISC_PWR_MGMT 0x000001aa
2595 *
Len Brownd7899442015-01-23 00:12:33 -05002596 * MSR_PKG_C3_RESIDENCY 0x000003f8
2597 * MSR_PKG_C6_RESIDENCY 0x000003f9
2598 * MSR_CORE_C3_RESIDENCY 0x000003fc
2599 * MSR_CORE_C6_RESIDENCY 0x000003fd
2600 *
Len Brownee7e38e2015-02-09 23:39:45 -05002601 * Side effect:
Len Brown1df2e552017-01-07 23:24:57 -05002602 * sets global pkg_cstate_limit to decode MSR_PKG_CST_CONFIG_CONTROL
Len Brown33148d62017-01-21 01:26:16 -05002603 * sets has_misc_feature_control
Len Brownd7899442015-01-23 00:12:33 -05002604 */
Len Brownee7e38e2015-02-09 23:39:45 -05002605int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002606{
Len Brownee7e38e2015-02-09 23:39:45 -05002607 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002608 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002609 int *pkg_cstate_limits;
2610
Len Brown103a8fe2010-10-22 23:53:03 -04002611 if (!genuine_intel)
2612 return 0;
2613
2614 if (family != 6)
2615 return 0;
2616
Len Brown21ed5572015-10-19 22:37:40 -04002617 bclk = discover_bclk(family, model);
2618
Len Brown103a8fe2010-10-22 23:53:03 -04002619 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002620 case INTEL_FAM6_NEHALEM_EP: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2621 case INTEL_FAM6_NEHALEM: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
Len Brown103a8fe2010-10-22 23:53:03 -04002622 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
Len Brown869ce692016-06-16 23:22:37 -04002623 case INTEL_FAM6_WESTMERE: /* Westmere Client - Clarkdale, Arrandale */
2624 case INTEL_FAM6_WESTMERE_EP: /* Westmere EP - Gulftown */
2625 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
2626 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
Len Brownee7e38e2015-02-09 23:39:45 -05002627 pkg_cstate_limits = nhm_pkg_cstate_limits;
2628 break;
Len Brown869ce692016-06-16 23:22:37 -04002629 case INTEL_FAM6_SANDYBRIDGE: /* SNB */
2630 case INTEL_FAM6_SANDYBRIDGE_X: /* SNB Xeon */
2631 case INTEL_FAM6_IVYBRIDGE: /* IVB */
2632 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002633 pkg_cstate_limits = snb_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002634 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002635 break;
Len Brown869ce692016-06-16 23:22:37 -04002636 case INTEL_FAM6_HASWELL_CORE: /* HSW */
2637 case INTEL_FAM6_HASWELL_X: /* HSX */
2638 case INTEL_FAM6_HASWELL_ULT: /* HSW */
2639 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
2640 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2641 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2642 case INTEL_FAM6_BROADWELL_X: /* BDX */
2643 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
2644 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2645 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
2646 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
2647 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brownee7e38e2015-02-09 23:39:45 -05002648 pkg_cstate_limits = hsw_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002649 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002650 break;
Len Brownd8ebb442016-12-01 20:27:46 -05002651 case INTEL_FAM6_SKYLAKE_X: /* SKX */
2652 pkg_cstate_limits = skx_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002653 has_misc_feature_control = 1;
Len Brownd8ebb442016-12-01 20:27:46 -05002654 break;
Len Brown869ce692016-06-16 23:22:37 -04002655 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
Len Browncf4cbe52017-01-01 13:08:33 -05002656 no_MSR_MISC_PWR_MGMT = 1;
Len Brown869ce692016-06-16 23:22:37 -04002657 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brownee7e38e2015-02-09 23:39:45 -05002658 pkg_cstate_limits = slv_pkg_cstate_limits;
2659 break;
Len Brown869ce692016-06-16 23:22:37 -04002660 case INTEL_FAM6_ATOM_AIRMONT: /* AMT */
Len Brownee7e38e2015-02-09 23:39:45 -05002661 pkg_cstate_limits = amt_pkg_cstate_limits;
Len Browncf4cbe52017-01-01 13:08:33 -05002662 no_MSR_MISC_PWR_MGMT = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002663 break;
Len Brown869ce692016-06-16 23:22:37 -04002664 case INTEL_FAM6_XEON_PHI_KNL: /* PHI */
Len Brown005c82d2016-12-01 01:35:38 -05002665 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownee7e38e2015-02-09 23:39:45 -05002666 pkg_cstate_limits = phi_pkg_cstate_limits;
2667 break;
Len Brown869ce692016-06-16 23:22:37 -04002668 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05002669 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Brown869ce692016-06-16 23:22:37 -04002670 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Browne4085d52016-04-06 17:15:56 -04002671 pkg_cstate_limits = bxt_pkg_cstate_limits;
2672 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002673 default:
2674 return 0;
2675 }
Len Brown1df2e552017-01-07 23:24:57 -05002676 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002677 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002678
Len Brownec0adc52015-11-12 02:42:31 -05002679 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002680 base_ratio = (msr >> 8) & 0xFF;
2681
2682 base_hz = base_ratio * bclk * 1000000;
2683 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002684 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002685}
Len Brown0f7887c2017-01-12 23:49:18 -05002686/*
Len Brown495c76542017-02-08 02:41:51 -05002687 * SLV client has support for unique MSRs:
Len Brown0f7887c2017-01-12 23:49:18 -05002688 *
2689 * MSR_CC6_DEMOTION_POLICY_CONFIG
2690 * MSR_MC6_DEMOTION_POLICY_CONFIG
2691 */
2692
2693int has_slv_msrs(unsigned int family, unsigned int model)
2694{
2695 if (!genuine_intel)
2696 return 0;
2697
2698 switch (model) {
2699 case INTEL_FAM6_ATOM_SILVERMONT1:
2700 case INTEL_FAM6_ATOM_MERRIFIELD:
2701 case INTEL_FAM6_ATOM_MOOREFIELD:
2702 return 1;
2703 }
2704 return 0;
2705}
Len Brown7170a372017-01-27 02:13:27 -05002706int is_dnv(unsigned int family, unsigned int model)
2707{
2708
2709 if (!genuine_intel)
2710 return 0;
2711
2712 switch (model) {
2713 case INTEL_FAM6_ATOM_DENVERTON:
2714 return 1;
2715 }
2716 return 0;
2717}
Len Brownade0eba2017-02-10 01:56:47 -05002718int is_bdx(unsigned int family, unsigned int model)
2719{
2720
2721 if (!genuine_intel)
2722 return 0;
2723
2724 switch (model) {
2725 case INTEL_FAM6_BROADWELL_X:
2726 case INTEL_FAM6_BROADWELL_XEON_D:
2727 return 1;
2728 }
2729 return 0;
2730}
Len Brown34c761972017-01-27 02:36:41 -05002731int is_skx(unsigned int family, unsigned int model)
2732{
2733
2734 if (!genuine_intel)
2735 return 0;
2736
2737 switch (model) {
2738 case INTEL_FAM6_SKYLAKE_X:
2739 return 1;
2740 }
2741 return 0;
2742}
Len Brown0f7887c2017-01-12 23:49:18 -05002743
Len Brown31e07522017-01-31 23:07:49 -05002744int has_turbo_ratio_limit(unsigned int family, unsigned int model)
Len Brownd7899442015-01-23 00:12:33 -05002745{
Len Brown0f7887c2017-01-12 23:49:18 -05002746 if (has_slv_msrs(family, model))
2747 return 0;
2748
Len Brownd7899442015-01-23 00:12:33 -05002749 switch (model) {
2750 /* Nehalem compatible, but do not include turbo-ratio limit support */
Len Brown869ce692016-06-16 23:22:37 -04002751 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
2752 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
2753 case INTEL_FAM6_XEON_PHI_KNL: /* PHI - Knights Landing (different MSR definition) */
Len Brown005c82d2016-12-01 01:35:38 -05002754 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownd7899442015-01-23 00:12:33 -05002755 return 0;
2756 default:
2757 return 1;
2758 }
2759}
Len Brown0f7887c2017-01-12 23:49:18 -05002760int has_atom_turbo_ratio_limit(unsigned int family, unsigned int model)
2761{
2762 if (has_slv_msrs(family, model))
2763 return 1;
2764
2765 return 0;
2766}
Len Brown6574a5d2012-09-21 00:01:31 -04002767int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2768{
2769 if (!genuine_intel)
2770 return 0;
2771
2772 if (family != 6)
2773 return 0;
2774
2775 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002776 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
2777 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04002778 return 1;
2779 default:
2780 return 0;
2781 }
2782}
Len Brownfcd17212015-03-23 20:29:09 -04002783int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2784{
2785 if (!genuine_intel)
2786 return 0;
2787
2788 if (family != 6)
2789 return 0;
2790
2791 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002792 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04002793 return 1;
2794 default:
2795 return 0;
2796 }
2797}
2798
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002799int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2800{
2801 if (!genuine_intel)
2802 return 0;
2803
2804 if (family != 6)
2805 return 0;
2806
2807 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002808 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05002809 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002810 return 1;
2811 default:
2812 return 0;
2813 }
2814}
Len Brown31e07522017-01-31 23:07:49 -05002815int has_glm_turbo_ratio_limit(unsigned int family, unsigned int model)
2816{
2817 if (!genuine_intel)
2818 return 0;
2819
2820 if (family != 6)
2821 return 0;
2822
2823 switch (model) {
2824 case INTEL_FAM6_ATOM_GOLDMONT:
2825 case INTEL_FAM6_SKYLAKE_X:
2826 return 1;
2827 default:
2828 return 0;
2829 }
2830}
Len Brown6fb31432015-06-17 16:23:45 -04002831int has_config_tdp(unsigned int family, unsigned int model)
2832{
2833 if (!genuine_intel)
2834 return 0;
2835
2836 if (family != 6)
2837 return 0;
2838
2839 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002840 case INTEL_FAM6_IVYBRIDGE: /* IVB */
2841 case INTEL_FAM6_HASWELL_CORE: /* HSW */
2842 case INTEL_FAM6_HASWELL_X: /* HSX */
2843 case INTEL_FAM6_HASWELL_ULT: /* HSW */
2844 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
2845 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2846 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2847 case INTEL_FAM6_BROADWELL_X: /* BDX */
2848 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
2849 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2850 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
2851 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
2852 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
2853 case INTEL_FAM6_SKYLAKE_X: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04002854
Len Brown869ce692016-06-16 23:22:37 -04002855 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05002856 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown6fb31432015-06-17 16:23:45 -04002857 return 1;
2858 default:
2859 return 0;
2860 }
2861}
2862
Len Brownfcd17212015-03-23 20:29:09 -04002863static void
Colin Ian King1b693172016-03-02 13:50:25 +00002864dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04002865{
2866 if (!do_nhm_platform_info)
2867 return;
2868
2869 dump_nhm_platform_info();
2870
2871 if (has_hsw_turbo_ratio_limit(family, model))
2872 dump_hsw_turbo_ratio_limits();
2873
2874 if (has_ivt_turbo_ratio_limit(family, model))
2875 dump_ivt_turbo_ratio_limits();
2876
Len Brown31e07522017-01-31 23:07:49 -05002877 if (has_turbo_ratio_limit(family, model))
2878 dump_turbo_ratio_limits(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04002879
Len Brown0f7887c2017-01-12 23:49:18 -05002880 if (has_atom_turbo_ratio_limit(family, model))
2881 dump_atom_turbo_ratio_limits();
2882
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002883 if (has_knl_turbo_ratio_limit(family, model))
2884 dump_knl_turbo_ratio_limits();
2885
Len Brown6fb31432015-06-17 16:23:45 -04002886 if (has_config_tdp(family, model))
2887 dump_config_tdp();
2888
Len Brownfcd17212015-03-23 20:29:09 -04002889 dump_nhm_cst_cfg();
2890}
2891
Len Brown41618e62017-02-09 18:25:22 -05002892static void
2893dump_sysfs_cstate_config(void)
2894{
2895 char path[64];
2896 char name_buf[16];
2897 char desc[64];
2898 FILE *input;
2899 int state;
2900 char *sp;
2901
2902 if (!DO_BIC(BIC_sysfs))
2903 return;
2904
2905 for (state = 0; state < 10; ++state) {
2906
2907 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
2908 base_cpu, state);
2909 input = fopen(path, "r");
2910 if (input == NULL)
2911 continue;
2912 fgets(name_buf, sizeof(name_buf), input);
2913
2914 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
2915 sp = strchr(name_buf, '-');
2916 if (!sp)
2917 sp = strchrnul(name_buf, '\n');
2918 *sp = '\0';
2919
2920 fclose(input);
2921
2922 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/desc",
2923 base_cpu, state);
2924 input = fopen(path, "r");
2925 if (input == NULL)
2926 continue;
2927 fgets(desc, sizeof(desc), input);
2928
2929 fprintf(outf, "cpu%d: %s: %s", base_cpu, name_buf, desc);
2930 fclose(input);
2931 }
2932}
2933
Len Brown6574a5d2012-09-21 00:01:31 -04002934
Len Brown889facb2012-11-08 00:48:57 -05002935/*
2936 * print_epb()
2937 * Decode the ENERGY_PERF_BIAS MSR
2938 */
2939int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2940{
2941 unsigned long long msr;
2942 char *epb_string;
2943 int cpu;
2944
2945 if (!has_epb)
2946 return 0;
2947
2948 cpu = t->cpu_id;
2949
2950 /* EPB is per-package */
2951 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2952 return 0;
2953
2954 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002955 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05002956 return -1;
2957 }
2958
2959 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
2960 return 0;
2961
Len Browne9be7dd2015-05-26 12:19:37 -04002962 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05002963 case ENERGY_PERF_BIAS_PERFORMANCE:
2964 epb_string = "performance";
2965 break;
2966 case ENERGY_PERF_BIAS_NORMAL:
2967 epb_string = "balanced";
2968 break;
2969 case ENERGY_PERF_BIAS_POWERSAVE:
2970 epb_string = "powersave";
2971 break;
2972 default:
2973 epb_string = "custom";
2974 break;
2975 }
Len Brownb7d8c142016-02-13 23:36:17 -05002976 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05002977
2978 return 0;
2979}
Len Brown7f5c2582015-12-01 01:36:39 -05002980/*
2981 * print_hwp()
2982 * Decode the MSR_HWP_CAPABILITIES
2983 */
2984int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
2985{
2986 unsigned long long msr;
2987 int cpu;
2988
2989 if (!has_hwp)
2990 return 0;
2991
2992 cpu = t->cpu_id;
2993
2994 /* MSR_HWP_CAPABILITIES is per-package */
2995 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
2996 return 0;
2997
2998 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05002999 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05003000 return -1;
3001 }
3002
3003 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
3004 return 0;
3005
Len Brownb7d8c142016-02-13 23:36:17 -05003006 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003007 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
3008
3009 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
3010 if ((msr & (1 << 0)) == 0)
3011 return 0;
3012
3013 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
3014 return 0;
3015
Len Brownb7d8c142016-02-13 23:36:17 -05003016 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003017 "(high 0x%x guar 0x%x eff 0x%x low 0x%x)\n",
3018 cpu, msr,
3019 (unsigned int)HWP_HIGHEST_PERF(msr),
3020 (unsigned int)HWP_GUARANTEED_PERF(msr),
3021 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
3022 (unsigned int)HWP_LOWEST_PERF(msr));
3023
3024 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
3025 return 0;
3026
Len Brownb7d8c142016-02-13 23:36:17 -05003027 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003028 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x pkg 0x%x)\n",
3029 cpu, msr,
3030 (unsigned int)(((msr) >> 0) & 0xff),
3031 (unsigned int)(((msr) >> 8) & 0xff),
3032 (unsigned int)(((msr) >> 16) & 0xff),
3033 (unsigned int)(((msr) >> 24) & 0xff),
3034 (unsigned int)(((msr) >> 32) & 0xff3),
3035 (unsigned int)(((msr) >> 42) & 0x1));
3036
3037 if (has_hwp_pkg) {
3038 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
3039 return 0;
3040
Len Brownb7d8c142016-02-13 23:36:17 -05003041 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003042 "(min 0x%x max 0x%x des 0x%x epp 0x%x window 0x%x)\n",
3043 cpu, msr,
3044 (unsigned int)(((msr) >> 0) & 0xff),
3045 (unsigned int)(((msr) >> 8) & 0xff),
3046 (unsigned int)(((msr) >> 16) & 0xff),
3047 (unsigned int)(((msr) >> 24) & 0xff),
3048 (unsigned int)(((msr) >> 32) & 0xff3));
3049 }
3050 if (has_hwp_notify) {
3051 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
3052 return 0;
3053
Len Brownb7d8c142016-02-13 23:36:17 -05003054 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003055 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
3056 cpu, msr,
3057 ((msr) & 0x1) ? "EN" : "Dis",
3058 ((msr) & 0x2) ? "EN" : "Dis");
3059 }
3060 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
3061 return 0;
3062
Len Brownb7d8c142016-02-13 23:36:17 -05003063 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003064 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
3065 cpu, msr,
3066 ((msr) & 0x1) ? "" : "No-",
3067 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05003068
3069 return 0;
3070}
3071
Len Brown3a9a9412014-08-15 02:39:52 -04003072/*
3073 * print_perf_limit()
3074 */
3075int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3076{
3077 unsigned long long msr;
3078 int cpu;
3079
3080 cpu = t->cpu_id;
3081
3082 /* per-package */
3083 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3084 return 0;
3085
3086 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003087 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04003088 return -1;
3089 }
3090
3091 if (do_core_perf_limit_reasons) {
3092 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003093 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3094 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04003095 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003096 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003097 (msr & 1 << 13) ? "Transitions, " : "",
3098 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
3099 (msr & 1 << 11) ? "PkgPwrL2, " : "",
3100 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3101 (msr & 1 << 9) ? "CorePwr, " : "",
3102 (msr & 1 << 8) ? "Amps, " : "",
3103 (msr & 1 << 6) ? "VR-Therm, " : "",
3104 (msr & 1 << 5) ? "Auto-HWP, " : "",
3105 (msr & 1 << 4) ? "Graphics, " : "",
3106 (msr & 1 << 2) ? "bit2, " : "",
3107 (msr & 1 << 1) ? "ThermStatus, " : "",
3108 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003109 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 -04003110 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003111 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003112 (msr & 1 << 29) ? "Transitions, " : "",
3113 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
3114 (msr & 1 << 27) ? "PkgPwrL2, " : "",
3115 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3116 (msr & 1 << 25) ? "CorePwr, " : "",
3117 (msr & 1 << 24) ? "Amps, " : "",
3118 (msr & 1 << 22) ? "VR-Therm, " : "",
3119 (msr & 1 << 21) ? "Auto-HWP, " : "",
3120 (msr & 1 << 20) ? "Graphics, " : "",
3121 (msr & 1 << 18) ? "bit18, " : "",
3122 (msr & 1 << 17) ? "ThermStatus, " : "",
3123 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04003124
3125 }
3126 if (do_gfx_perf_limit_reasons) {
3127 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003128 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3129 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003130 (msr & 1 << 0) ? "PROCHOT, " : "",
3131 (msr & 1 << 1) ? "ThermStatus, " : "",
3132 (msr & 1 << 4) ? "Graphics, " : "",
3133 (msr & 1 << 6) ? "VR-Therm, " : "",
3134 (msr & 1 << 8) ? "Amps, " : "",
3135 (msr & 1 << 9) ? "GFXPwr, " : "",
3136 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3137 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003138 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003139 (msr & 1 << 16) ? "PROCHOT, " : "",
3140 (msr & 1 << 17) ? "ThermStatus, " : "",
3141 (msr & 1 << 20) ? "Graphics, " : "",
3142 (msr & 1 << 22) ? "VR-Therm, " : "",
3143 (msr & 1 << 24) ? "Amps, " : "",
3144 (msr & 1 << 25) ? "GFXPwr, " : "",
3145 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3146 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3147 }
3148 if (do_ring_perf_limit_reasons) {
3149 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003150 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3151 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003152 (msr & 1 << 0) ? "PROCHOT, " : "",
3153 (msr & 1 << 1) ? "ThermStatus, " : "",
3154 (msr & 1 << 6) ? "VR-Therm, " : "",
3155 (msr & 1 << 8) ? "Amps, " : "",
3156 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3157 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003158 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003159 (msr & 1 << 16) ? "PROCHOT, " : "",
3160 (msr & 1 << 17) ? "ThermStatus, " : "",
3161 (msr & 1 << 22) ? "VR-Therm, " : "",
3162 (msr & 1 << 24) ? "Amps, " : "",
3163 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3164 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3165 }
3166 return 0;
3167}
3168
Len Brown889facb2012-11-08 00:48:57 -05003169#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
3170#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
3171
Colin Ian King1b693172016-03-02 13:50:25 +00003172double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05003173{
3174 unsigned long long msr;
3175
3176 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003177 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05003178 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
3179
3180 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003181 case INTEL_FAM6_ATOM_SILVERMONT1:
3182 case INTEL_FAM6_ATOM_SILVERMONT2:
Len Brown144b44b2013-11-09 00:30:16 -05003183 return 30.0;
3184 default:
3185 return 135.0;
3186 }
3187}
3188
Andrey Semin40ee8e32014-12-05 00:07:00 -05003189/*
3190 * rapl_dram_energy_units_probe()
3191 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
3192 */
3193static double
3194rapl_dram_energy_units_probe(int model, double rapl_energy_units)
3195{
3196 /* only called for genuine_intel, family 6 */
3197
3198 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003199 case INTEL_FAM6_HASWELL_X: /* HSX */
3200 case INTEL_FAM6_BROADWELL_X: /* BDX */
3201 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3202 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003203 case INTEL_FAM6_XEON_PHI_KNM:
Andrey Semin40ee8e32014-12-05 00:07:00 -05003204 return (rapl_dram_energy_units = 15.3 / 1000000);
3205 default:
3206 return (rapl_energy_units);
3207 }
3208}
3209
Len Brown144b44b2013-11-09 00:30:16 -05003210
Len Brown889facb2012-11-08 00:48:57 -05003211/*
3212 * rapl_probe()
3213 *
Len Brown144b44b2013-11-09 00:30:16 -05003214 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05003215 */
3216void rapl_probe(unsigned int family, unsigned int model)
3217{
3218 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05003219 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05003220 double tdp;
3221
3222 if (!genuine_intel)
3223 return;
3224
3225 if (family != 6)
3226 return;
3227
3228 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003229 case INTEL_FAM6_SANDYBRIDGE:
3230 case INTEL_FAM6_IVYBRIDGE:
3231 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3232 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3233 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3234 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3235 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05003236 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003237 if (rapl_joules) {
3238 BIC_PRESENT(BIC_Pkg_J);
3239 BIC_PRESENT(BIC_Cor_J);
3240 BIC_PRESENT(BIC_GFX_J);
3241 } else {
3242 BIC_PRESENT(BIC_PkgWatt);
3243 BIC_PRESENT(BIC_CorWatt);
3244 BIC_PRESENT(BIC_GFXWatt);
3245 }
Len Brown889facb2012-11-08 00:48:57 -05003246 break;
Len Brown869ce692016-06-16 23:22:37 -04003247 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003248 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne4085d52016-04-06 17:15:56 -04003249 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003250 if (rapl_joules)
3251 BIC_PRESENT(BIC_Pkg_J);
3252 else
3253 BIC_PRESENT(BIC_PkgWatt);
Len Browne4085d52016-04-06 17:15:56 -04003254 break;
Len Brown869ce692016-06-16 23:22:37 -04003255 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3256 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3257 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3258 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04003259 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003260 BIC_PRESENT(BIC_PKG__);
3261 BIC_PRESENT(BIC_RAM__);
3262 if (rapl_joules) {
3263 BIC_PRESENT(BIC_Pkg_J);
3264 BIC_PRESENT(BIC_Cor_J);
3265 BIC_PRESENT(BIC_RAM_J);
3266 } else {
3267 BIC_PRESENT(BIC_PkgWatt);
3268 BIC_PRESENT(BIC_CorWatt);
3269 BIC_PRESENT(BIC_RAMWatt);
3270 }
Len Brown0b2bb692015-03-26 00:50:30 -04003271 break;
Len Brown869ce692016-06-16 23:22:37 -04003272 case INTEL_FAM6_HASWELL_X: /* HSX */
3273 case INTEL_FAM6_BROADWELL_X: /* BDX */
3274 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3275 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3276 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003277 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown0b2bb692015-03-26 00:50:30 -04003278 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003279 BIC_PRESENT(BIC_PKG__);
3280 BIC_PRESENT(BIC_RAM__);
3281 if (rapl_joules) {
3282 BIC_PRESENT(BIC_Pkg_J);
3283 BIC_PRESENT(BIC_RAM_J);
3284 } else {
3285 BIC_PRESENT(BIC_PkgWatt);
3286 BIC_PRESENT(BIC_RAMWatt);
3287 }
Len Browne6f9bb32013-12-03 02:19:19 -05003288 break;
Len Brown869ce692016-06-16 23:22:37 -04003289 case INTEL_FAM6_SANDYBRIDGE_X:
3290 case INTEL_FAM6_IVYBRIDGE_X:
Len Brown0b2bb692015-03-26 00:50:30 -04003291 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 Brown812db3f2017-02-10 00:25:41 -05003292 BIC_PRESENT(BIC_PKG__);
3293 BIC_PRESENT(BIC_RAM__);
3294 if (rapl_joules) {
3295 BIC_PRESENT(BIC_Pkg_J);
3296 BIC_PRESENT(BIC_Cor_J);
3297 BIC_PRESENT(BIC_RAM_J);
3298 } else {
3299 BIC_PRESENT(BIC_PkgWatt);
3300 BIC_PRESENT(BIC_CorWatt);
3301 BIC_PRESENT(BIC_RAMWatt);
3302 }
Len Brown144b44b2013-11-09 00:30:16 -05003303 break;
Len Brown869ce692016-06-16 23:22:37 -04003304 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
3305 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Jacob Pan91484942016-06-16 09:48:20 -07003306 do_rapl = RAPL_PKG | RAPL_CORES;
Len Brown812db3f2017-02-10 00:25:41 -05003307 if (rapl_joules) {
3308 BIC_PRESENT(BIC_Pkg_J);
3309 BIC_PRESENT(BIC_Cor_J);
3310 } else {
3311 BIC_PRESENT(BIC_PkgWatt);
3312 BIC_PRESENT(BIC_CorWatt);
3313 }
Len Brown889facb2012-11-08 00:48:57 -05003314 break;
Len Brown869ce692016-06-16 23:22:37 -04003315 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Jacob Pan0f644902016-06-16 09:48:22 -07003316 do_rapl = RAPL_PKG | RAPL_DRAM | RAPL_DRAM_POWER_INFO | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_PKG_POWER_INFO | RAPL_CORES_ENERGY_STATUS;
Len Brown812db3f2017-02-10 00:25:41 -05003317 BIC_PRESENT(BIC_PKG__);
3318 BIC_PRESENT(BIC_RAM__);
3319 if (rapl_joules) {
3320 BIC_PRESENT(BIC_Pkg_J);
3321 BIC_PRESENT(BIC_Cor_J);
3322 BIC_PRESENT(BIC_RAM_J);
3323 } else {
3324 BIC_PRESENT(BIC_PkgWatt);
3325 BIC_PRESENT(BIC_CorWatt);
3326 BIC_PRESENT(BIC_RAMWatt);
3327 }
Jacob Pan0f644902016-06-16 09:48:22 -07003328 break;
Len Brown889facb2012-11-08 00:48:57 -05003329 default:
3330 return;
3331 }
3332
3333 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003334 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003335 return;
3336
3337 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown869ce692016-06-16 23:22:37 -04003338 if (model == INTEL_FAM6_ATOM_SILVERMONT1)
Len Brown144b44b2013-11-09 00:30:16 -05003339 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
3340 else
3341 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05003342
Andrey Semin40ee8e32014-12-05 00:07:00 -05003343 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
3344
Len Brown144b44b2013-11-09 00:30:16 -05003345 time_unit = msr >> 16 & 0xF;
3346 if (time_unit == 0)
3347 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05003348
Len Brown144b44b2013-11-09 00:30:16 -05003349 rapl_time_units = 1.0 / (1 << (time_unit));
3350
3351 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05003352
3353 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brown96e47152017-01-21 02:26:00 -05003354 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003355 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05003356
3357 return;
3358}
3359
Colin Ian King1b693172016-03-02 13:50:25 +00003360void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04003361{
3362 if (!genuine_intel)
3363 return;
3364
3365 if (family != 6)
3366 return;
3367
3368 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003369 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3370 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3371 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
Len Brown3a9a9412014-08-15 02:39:52 -04003372 do_gfx_perf_limit_reasons = 1;
Len Brown869ce692016-06-16 23:22:37 -04003373 case INTEL_FAM6_HASWELL_X: /* HSX */
Len Brown3a9a9412014-08-15 02:39:52 -04003374 do_core_perf_limit_reasons = 1;
3375 do_ring_perf_limit_reasons = 1;
3376 default:
3377 return;
3378 }
3379}
3380
Len Brown889facb2012-11-08 00:48:57 -05003381int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3382{
3383 unsigned long long msr;
3384 unsigned int dts;
3385 int cpu;
3386
3387 if (!(do_dts || do_ptm))
3388 return 0;
3389
3390 cpu = t->cpu_id;
3391
3392 /* DTS is per-core, no need to print for each thread */
Len Brown388e9c82016-12-22 23:57:55 -05003393 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
Len Brown889facb2012-11-08 00:48:57 -05003394 return 0;
3395
3396 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003397 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003398 return -1;
3399 }
3400
3401 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
3402 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
3403 return 0;
3404
3405 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003406 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003407 cpu, msr, tcc_activation_temp - dts);
3408
3409#ifdef THERM_DEBUG
3410 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
3411 return 0;
3412
3413 dts = (msr >> 16) & 0x7F;
3414 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003415 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003416 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
3417#endif
3418 }
3419
3420
3421 if (do_dts) {
3422 unsigned int resolution;
3423
3424 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
3425 return 0;
3426
3427 dts = (msr >> 16) & 0x7F;
3428 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05003429 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05003430 cpu, msr, tcc_activation_temp - dts, resolution);
3431
3432#ifdef THERM_DEBUG
3433 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
3434 return 0;
3435
3436 dts = (msr >> 16) & 0x7F;
3437 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003438 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003439 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
3440#endif
3441 }
3442
3443 return 0;
3444}
Len Brown36229892016-02-26 20:51:02 -05003445
Len Brown889facb2012-11-08 00:48:57 -05003446void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
3447{
Len Brownb7d8c142016-02-13 23:36:17 -05003448 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003449 cpu, label,
3450 ((msr >> 15) & 1) ? "EN" : "DIS",
3451 ((msr >> 0) & 0x7FFF) * rapl_power_units,
3452 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
3453 (((msr >> 16) & 1) ? "EN" : "DIS"));
3454
3455 return;
3456}
3457
3458int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3459{
3460 unsigned long long msr;
3461 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05003462
3463 if (!do_rapl)
3464 return 0;
3465
3466 /* RAPL counters are per package, so print only for 1st thread/package */
3467 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3468 return 0;
3469
3470 cpu = t->cpu_id;
3471 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003472 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003473 return -1;
3474 }
3475
3476 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
3477 return -1;
3478
Len Brown96e47152017-01-21 02:26:00 -05003479 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx (%f Watts, %f Joules, %f sec.)\n", cpu, msr,
3480 rapl_power_units, rapl_energy_units, rapl_time_units);
3481
Len Brown144b44b2013-11-09 00:30:16 -05003482 if (do_rapl & RAPL_PKG_POWER_INFO) {
3483
Len Brown889facb2012-11-08 00:48:57 -05003484 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
3485 return -5;
3486
3487
Len Brownb7d8c142016-02-13 23:36:17 -05003488 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 -05003489 cpu, msr,
3490 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3491 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3492 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3493 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
3494
Len Brown144b44b2013-11-09 00:30:16 -05003495 }
3496 if (do_rapl & RAPL_PKG) {
3497
Len Brown889facb2012-11-08 00:48:57 -05003498 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
3499 return -9;
3500
Len Brownb7d8c142016-02-13 23:36:17 -05003501 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003502 cpu, msr, (msr >> 63) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003503
3504 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05003505 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003506 cpu,
3507 ((msr >> 47) & 1) ? "EN" : "DIS",
3508 ((msr >> 32) & 0x7FFF) * rapl_power_units,
3509 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
3510 ((msr >> 48) & 1) ? "EN" : "DIS");
3511 }
3512
Len Brown0b2bb692015-03-26 00:50:30 -04003513 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05003514 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
3515 return -6;
3516
Len Brownb7d8c142016-02-13 23:36:17 -05003517 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 -05003518 cpu, msr,
3519 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3520 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3521 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3522 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04003523 }
3524 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05003525 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
3526 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05003527 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003528 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003529
3530 print_power_limit_msr(cpu, msr, "DRAM Limit");
3531 }
Len Brown144b44b2013-11-09 00:30:16 -05003532 if (do_rapl & RAPL_CORE_POLICY) {
Len Brown96e47152017-01-21 02:26:00 -05003533 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
3534 return -7;
Len Brown889facb2012-11-08 00:48:57 -05003535
Len Brown96e47152017-01-21 02:26:00 -05003536 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05003537 }
Jacob Pan91484942016-06-16 09:48:20 -07003538 if (do_rapl & RAPL_CORES_POWER_LIMIT) {
Len Brown96e47152017-01-21 02:26:00 -05003539 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
3540 return -9;
3541 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
3542 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3543 print_power_limit_msr(cpu, msr, "Cores Limit");
Len Brown889facb2012-11-08 00:48:57 -05003544 }
3545 if (do_rapl & RAPL_GFX) {
Len Brown96e47152017-01-21 02:26:00 -05003546 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
3547 return -8;
Len Brown889facb2012-11-08 00:48:57 -05003548
Len Brown96e47152017-01-21 02:26:00 -05003549 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05003550
Len Brown96e47152017-01-21 02:26:00 -05003551 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
3552 return -9;
3553 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
3554 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3555 print_power_limit_msr(cpu, msr, "GFX Limit");
Len Brown889facb2012-11-08 00:48:57 -05003556 }
3557 return 0;
3558}
3559
Len Brownd7899442015-01-23 00:12:33 -05003560/*
3561 * SNB adds support for additional MSRs:
3562 *
3563 * MSR_PKG_C7_RESIDENCY 0x000003fa
3564 * MSR_CORE_C7_RESIDENCY 0x000003fe
3565 * MSR_PKG_C2_RESIDENCY 0x0000060d
3566 */
Len Brown103a8fe2010-10-22 23:53:03 -04003567
Len Brownd7899442015-01-23 00:12:33 -05003568int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04003569{
3570 if (!genuine_intel)
3571 return 0;
3572
3573 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003574 case INTEL_FAM6_SANDYBRIDGE:
3575 case INTEL_FAM6_SANDYBRIDGE_X:
3576 case INTEL_FAM6_IVYBRIDGE: /* IVB */
3577 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
3578 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3579 case INTEL_FAM6_HASWELL_X: /* HSW */
3580 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3581 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3582 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3583 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
3584 case INTEL_FAM6_BROADWELL_X: /* BDX */
3585 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3586 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3587 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3588 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3589 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3590 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3591 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003592 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Xiaolong Wang5bbac262016-09-30 17:53:40 +08003593 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brown103a8fe2010-10-22 23:53:03 -04003594 return 1;
3595 }
3596 return 0;
3597}
3598
Len Brownd7899442015-01-23 00:12:33 -05003599/*
3600 * HSW adds support for additional MSRs:
3601 *
Len Brown5a634262016-04-06 17:15:55 -04003602 * MSR_PKG_C8_RESIDENCY 0x00000630
3603 * MSR_PKG_C9_RESIDENCY 0x00000631
3604 * MSR_PKG_C10_RESIDENCY 0x00000632
3605 *
3606 * MSR_PKGC8_IRTL 0x00000633
3607 * MSR_PKGC9_IRTL 0x00000634
3608 * MSR_PKGC10_IRTL 0x00000635
3609 *
Len Brownd7899442015-01-23 00:12:33 -05003610 */
3611int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003612{
3613 if (!genuine_intel)
3614 return 0;
3615
3616 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003617 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3618 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3619 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3620 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3621 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3622 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3623 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003624 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003625 return 1;
3626 }
3627 return 0;
3628}
3629
Len Brown0b2bb692015-03-26 00:50:30 -04003630/*
3631 * SKL adds support for additional MSRS:
3632 *
3633 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
3634 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
3635 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
3636 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
3637 */
3638int has_skl_msrs(unsigned int family, unsigned int model)
3639{
3640 if (!genuine_intel)
3641 return 0;
3642
3643 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003644 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3645 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3646 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3647 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04003648 return 1;
3649 }
3650 return 0;
3651}
3652
Len Brown144b44b2013-11-09 00:30:16 -05003653int is_slm(unsigned int family, unsigned int model)
3654{
3655 if (!genuine_intel)
3656 return 0;
3657 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003658 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
3659 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brown144b44b2013-11-09 00:30:16 -05003660 return 1;
3661 }
3662 return 0;
3663}
3664
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003665int is_knl(unsigned int family, unsigned int model)
3666{
3667 if (!genuine_intel)
3668 return 0;
3669 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003670 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003671 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003672 return 1;
3673 }
3674 return 0;
3675}
3676
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003677unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3678{
3679 if (is_knl(family, model))
3680 return 1024;
3681 return 1;
3682}
3683
Len Brown144b44b2013-11-09 00:30:16 -05003684#define SLM_BCLK_FREQS 5
3685double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3686
3687double slm_bclk(void)
3688{
3689 unsigned long long msr = 3;
3690 unsigned int i;
3691 double freq;
3692
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003693 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003694 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05003695
3696 i = msr & 0xf;
3697 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05003698 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Colin Ian King0a91e552016-04-25 13:03:15 +01003699 i = 3;
Len Brown144b44b2013-11-09 00:30:16 -05003700 }
3701 freq = slm_freq_table[i];
3702
Len Brown96e47152017-01-21 02:26:00 -05003703 if (!quiet)
Len Brown8f6196c2017-01-07 22:40:23 -05003704 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05003705
3706 return freq;
3707}
3708
Len Brown103a8fe2010-10-22 23:53:03 -04003709double discover_bclk(unsigned int family, unsigned int model)
3710{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01003711 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04003712 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05003713 else if (is_slm(family, model))
3714 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04003715 else
3716 return 133.33;
3717}
3718
Len Brown889facb2012-11-08 00:48:57 -05003719/*
3720 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3721 * the Thermal Control Circuit (TCC) activates.
3722 * This is usually equal to tjMax.
3723 *
3724 * Older processors do not have this MSR, so there we guess,
3725 * but also allow cmdline over-ride with -T.
3726 *
3727 * Several MSR temperature values are in units of degrees-C
3728 * below this value, including the Digital Thermal Sensor (DTS),
3729 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3730 */
3731int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3732{
3733 unsigned long long msr;
3734 unsigned int target_c_local;
3735 int cpu;
3736
3737 /* tcc_activation_temp is used only for dts or ptm */
3738 if (!(do_dts || do_ptm))
3739 return 0;
3740
3741 /* this is a per-package concept */
3742 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3743 return 0;
3744
3745 cpu = t->cpu_id;
3746 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003747 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003748 return -1;
3749 }
3750
3751 if (tcc_activation_temp_override != 0) {
3752 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05003753 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003754 cpu, tcc_activation_temp);
3755 return 0;
3756 }
3757
3758 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05003759 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05003760 goto guess;
3761
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003762 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003763 goto guess;
3764
Jean Delvare34821242014-05-01 11:40:19 +02003765 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05003766
Len Brown96e47152017-01-21 02:26:00 -05003767 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003768 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003769 cpu, msr, target_c_local);
3770
Jean Delvare34821242014-05-01 11:40:19 +02003771 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05003772 goto guess;
3773
3774 tcc_activation_temp = target_c_local;
3775
3776 return 0;
3777
3778guess:
3779 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05003780 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05003781 cpu, tcc_activation_temp);
3782
3783 return 0;
3784}
Len Brown69807a62015-11-21 12:22:47 -05003785
Len Brownaa8d8cc2016-03-11 13:26:03 -05003786void decode_feature_control_msr(void)
3787{
3788 unsigned long long msr;
3789
3790 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3791 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3792 base_cpu, msr,
3793 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3794 msr & (1 << 18) ? "SGX" : "");
3795}
3796
Len Brown69807a62015-11-21 12:22:47 -05003797void decode_misc_enable_msr(void)
3798{
3799 unsigned long long msr;
3800
3801 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Browne6512622017-01-11 23:17:24 -05003802 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%sTCC %sEIST %sMWAIT %sPREFETCH %sTURBO)\n",
Len Brown69807a62015-11-21 12:22:47 -05003803 base_cpu, msr,
Len Browne6512622017-01-11 23:17:24 -05003804 msr & MSR_IA32_MISC_ENABLE_TM1 ? "" : "No-",
3805 msr & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP ? "" : "No-",
3806 msr & MSR_IA32_MISC_ENABLE_MWAIT ? "No-" : "",
3807 msr & MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE ? "No-" : "",
3808 msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ? "No-" : "");
Len Brown69807a62015-11-21 12:22:47 -05003809}
3810
Len Brown33148d62017-01-21 01:26:16 -05003811void decode_misc_feature_control(void)
3812{
3813 unsigned long long msr;
3814
3815 if (!has_misc_feature_control)
3816 return;
3817
3818 if (!get_msr(base_cpu, MSR_MISC_FEATURE_CONTROL, &msr))
3819 fprintf(outf, "cpu%d: MSR_MISC_FEATURE_CONTROL: 0x%08llx (%sL2-Prefetch %sL2-Prefetch-pair %sL1-Prefetch %sL1-IP-Prefetch)\n",
3820 base_cpu, msr,
3821 msr & (0 << 0) ? "No-" : "",
3822 msr & (1 << 0) ? "No-" : "",
3823 msr & (2 << 0) ? "No-" : "",
3824 msr & (3 << 0) ? "No-" : "");
3825}
Len Brownf0057312015-12-03 01:35:36 -05003826/*
3827 * Decode MSR_MISC_PWR_MGMT
3828 *
3829 * Decode the bits according to the Nehalem documentation
3830 * bit[0] seems to continue to have same meaning going forward
3831 * bit[1] less so...
3832 */
3833void decode_misc_pwr_mgmt_msr(void)
3834{
3835 unsigned long long msr;
3836
3837 if (!do_nhm_platform_info)
3838 return;
3839
Len Browncf4cbe52017-01-01 13:08:33 -05003840 if (no_MSR_MISC_PWR_MGMT)
3841 return;
3842
Len Brownf0057312015-12-03 01:35:36 -05003843 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08003844 fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB %sable-OOB)\n",
Len Brownf0057312015-12-03 01:35:36 -05003845 base_cpu, msr,
3846 msr & (1 << 0) ? "DIS" : "EN",
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08003847 msr & (1 << 1) ? "EN" : "DIS",
3848 msr & (1 << 8) ? "EN" : "DIS");
Len Brownf0057312015-12-03 01:35:36 -05003849}
Len Brown71616c82017-01-07 22:37:48 -05003850/*
3851 * Decode MSR_CC6_DEMOTION_POLICY_CONFIG, MSR_MC6_DEMOTION_POLICY_CONFIG
3852 *
3853 * This MSRs are present on Silvermont processors,
3854 * Intel Atom processor E3000 series (Baytrail), and friends.
3855 */
3856void decode_c6_demotion_policy_msr(void)
3857{
3858 unsigned long long msr;
3859
3860 if (!get_msr(base_cpu, MSR_CC6_DEMOTION_POLICY_CONFIG, &msr))
3861 fprintf(outf, "cpu%d: MSR_CC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-CC6-Demotion)\n",
3862 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
3863
3864 if (!get_msr(base_cpu, MSR_MC6_DEMOTION_POLICY_CONFIG, &msr))
3865 fprintf(outf, "cpu%d: MSR_MC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-MC6-Demotion)\n",
3866 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
3867}
Len Brown7f5c2582015-12-01 01:36:39 -05003868
Len Brownfcd17212015-03-23 20:29:09 -04003869void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04003870{
Len Brown61a87ba2015-11-23 02:30:51 -05003871 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04003872 unsigned int fms, family, model, stepping;
Len Brownb3a34e92017-01-21 00:50:08 -05003873 unsigned int has_turbo;
Len Brown103a8fe2010-10-22 23:53:03 -04003874
3875 eax = ebx = ecx = edx = 0;
3876
Len Brown5aea2f72016-03-13 03:14:35 -04003877 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003878
3879 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
3880 genuine_intel = 1;
3881
Len Brown96e47152017-01-21 02:26:00 -05003882 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003883 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04003884 (char *)&ebx, (char *)&edx, (char *)&ecx);
3885
Len Brown5aea2f72016-03-13 03:14:35 -04003886 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003887 family = (fms >> 8) & 0xf;
3888 model = (fms >> 4) & 0xf;
3889 stepping = fms & 0xf;
3890 if (family == 6 || family == 0xf)
3891 model += ((fms >> 16) & 0xf) << 4;
3892
Len Brown96e47152017-01-21 02:26:00 -05003893 if (!quiet) {
Len Brownb7d8c142016-02-13 23:36:17 -05003894 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04003895 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05003896 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05003897 ecx & (1 << 0) ? "SSE3" : "-",
3898 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05003899 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05003900 ecx & (1 << 7) ? "EIST" : "-",
3901 ecx & (1 << 8) ? "TM2" : "-",
3902 edx & (1 << 4) ? "TSC" : "-",
3903 edx & (1 << 5) ? "MSR" : "-",
3904 edx & (1 << 22) ? "ACPI-TM" : "-",
3905 edx & (1 << 29) ? "TM" : "-");
3906 }
Len Brown103a8fe2010-10-22 23:53:03 -04003907
Josh Triplettb2c95d92013-08-20 17:20:18 -07003908 if (!(edx & (1 << 5)))
3909 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04003910
3911 /*
3912 * check max extended function levels of CPUID.
3913 * This is needed to check for invariant TSC.
3914 * This check is valid for both Intel and AMD.
3915 */
3916 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003917 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04003918
Len Brown61a87ba2015-11-23 02:30:51 -05003919 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04003920
Len Brownd7899442015-01-23 00:12:33 -05003921 /*
3922 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
3923 * this check is valid for both Intel and AMD
3924 */
Len Brown5aea2f72016-03-13 03:14:35 -04003925 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05003926 has_invariant_tsc = edx & (1 << 8);
3927 }
Len Brown103a8fe2010-10-22 23:53:03 -04003928
3929 /*
3930 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
3931 * this check is valid for both Intel and AMD
3932 */
3933
Len Brown5aea2f72016-03-13 03:14:35 -04003934 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01003935 has_aperf = ecx & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05003936 if (has_aperf) {
3937 BIC_PRESENT(BIC_Avg_MHz);
3938 BIC_PRESENT(BIC_Busy);
3939 BIC_PRESENT(BIC_Bzy_MHz);
3940 }
Len Brown889facb2012-11-08 00:48:57 -05003941 do_dts = eax & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05003942 if (do_dts)
3943 BIC_PRESENT(BIC_CoreTmp);
Len Brownb3a34e92017-01-21 00:50:08 -05003944 has_turbo = eax & (1 << 1);
Len Brown889facb2012-11-08 00:48:57 -05003945 do_ptm = eax & (1 << 6);
Len Brown812db3f2017-02-10 00:25:41 -05003946 if (do_ptm)
3947 BIC_PRESENT(BIC_PkgTmp);
Len Brown7f5c2582015-12-01 01:36:39 -05003948 has_hwp = eax & (1 << 7);
3949 has_hwp_notify = eax & (1 << 8);
3950 has_hwp_activity_window = eax & (1 << 9);
3951 has_hwp_epp = eax & (1 << 10);
3952 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05003953 has_epb = ecx & (1 << 3);
3954
Len Brown96e47152017-01-21 02:26:00 -05003955 if (!quiet)
Len Brownb3a34e92017-01-21 00:50:08 -05003956 fprintf(outf, "CPUID(6): %sAPERF, %sTURBO, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05003957 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
3958 has_aperf ? "" : "No-",
Len Brownb3a34e92017-01-21 00:50:08 -05003959 has_turbo ? "" : "No-",
Len Brown7f5c2582015-12-01 01:36:39 -05003960 do_dts ? "" : "No-",
3961 do_ptm ? "" : "No-",
3962 has_hwp ? "" : "No-",
3963 has_hwp_notify ? "" : "No-",
3964 has_hwp_activity_window ? "" : "No-",
3965 has_hwp_epp ? "" : "No-",
3966 has_hwp_pkg ? "" : "No-",
3967 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04003968
Len Brown96e47152017-01-21 02:26:00 -05003969 if (!quiet)
Len Brown69807a62015-11-21 12:22:47 -05003970 decode_misc_enable_msr();
3971
Len Brown33148d62017-01-21 01:26:16 -05003972
Len Brown96e47152017-01-21 02:26:00 -05003973 if (max_level >= 0x7 && !quiet) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05003974 int has_sgx;
3975
3976 ecx = 0;
3977
3978 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
3979
3980 has_sgx = ebx & (1 << 2);
3981 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
3982
3983 if (has_sgx)
3984 decode_feature_control_msr();
3985 }
3986
Len Brown61a87ba2015-11-23 02:30:51 -05003987 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04003988 unsigned int eax_crystal;
3989 unsigned int ebx_tsc;
3990
3991 /*
3992 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
3993 */
3994 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04003995 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04003996
3997 if (ebx_tsc != 0) {
3998
Len Brown96e47152017-01-21 02:26:00 -05003999 if (!quiet && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05004000 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004001 eax_crystal, ebx_tsc, crystal_hz);
4002
4003 if (crystal_hz == 0)
4004 switch(model) {
Len Brown869ce692016-06-16 23:22:37 -04004005 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
4006 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
4007 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
4008 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04004009 crystal_hz = 24000000; /* 24.0 MHz */
4010 break;
Len Brown869ce692016-06-16 23:22:37 -04004011 case INTEL_FAM6_SKYLAKE_X: /* SKX */
Len Brown7268d402016-12-01 23:10:39 -05004012 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brownec53e592016-04-06 17:15:58 -04004013 crystal_hz = 25000000; /* 25.0 MHz */
4014 break;
Len Brown869ce692016-06-16 23:22:37 -04004015 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05004016 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne8efbc82016-04-06 17:15:57 -04004017 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04004018 break;
4019 default:
4020 crystal_hz = 0;
4021 }
4022
4023 if (crystal_hz) {
4024 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
Len Brown96e47152017-01-21 02:26:00 -05004025 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004026 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004027 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
4028 }
4029 }
4030 }
Len Brown61a87ba2015-11-23 02:30:51 -05004031 if (max_level >= 0x16) {
4032 unsigned int base_mhz, max_mhz, bus_mhz, edx;
4033
4034 /*
4035 * CPUID 16H Base MHz, Max MHz, Bus MHz
4036 */
4037 base_mhz = max_mhz = bus_mhz = edx = 0;
4038
Len Brown5aea2f72016-03-13 03:14:35 -04004039 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown96e47152017-01-21 02:26:00 -05004040 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004041 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05004042 base_mhz, max_mhz, bus_mhz);
4043 }
Len Brown8a5bdf42015-04-01 21:02:57 -04004044
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02004045 if (has_aperf)
4046 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
4047
Len Brown812db3f2017-02-10 00:25:41 -05004048 BIC_PRESENT(BIC_IRQ);
4049 BIC_PRESENT(BIC_TSC_MHz);
4050
4051 if (probe_nhm_msrs(family, model)) {
4052 do_nhm_platform_info = 1;
4053 BIC_PRESENT(BIC_CPU_c1);
4054 BIC_PRESENT(BIC_CPU_c3);
4055 BIC_PRESENT(BIC_CPU_c6);
4056 BIC_PRESENT(BIC_SMI);
4057 }
Len Brownd7899442015-01-23 00:12:33 -05004058 do_snb_cstates = has_snb_msrs(family, model);
Len Brown812db3f2017-02-10 00:25:41 -05004059
4060 if (do_snb_cstates)
4061 BIC_PRESENT(BIC_CPU_c7);
4062
Len Brown5a634262016-04-06 17:15:55 -04004063 do_irtl_snb = has_snb_msrs(family, model);
Len Brown0f47c082017-01-27 00:50:45 -05004064 if (do_snb_cstates && (pkg_cstate_limit >= PCL__2))
4065 BIC_PRESENT(BIC_Pkgpc2);
4066 if (pkg_cstate_limit >= PCL__3)
4067 BIC_PRESENT(BIC_Pkgpc3);
4068 if (pkg_cstate_limit >= PCL__6)
4069 BIC_PRESENT(BIC_Pkgpc6);
4070 if (do_snb_cstates && (pkg_cstate_limit >= PCL__7))
4071 BIC_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004072 if (has_slv_msrs(family, model)) {
Len Brown0f47c082017-01-27 00:50:45 -05004073 BIC_NOT_PRESENT(BIC_Pkgpc2);
4074 BIC_NOT_PRESENT(BIC_Pkgpc3);
4075 BIC_PRESENT(BIC_Pkgpc6);
4076 BIC_NOT_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004077 BIC_PRESENT(BIC_Mod_c6);
4078 use_c1_residency_msr = 1;
4079 }
Len Brown7170a372017-01-27 02:13:27 -05004080 if (is_dnv(family, model)) {
4081 BIC_PRESENT(BIC_CPU_c1);
4082 BIC_NOT_PRESENT(BIC_CPU_c3);
4083 BIC_NOT_PRESENT(BIC_Pkgpc3);
4084 BIC_NOT_PRESENT(BIC_CPU_c7);
4085 BIC_NOT_PRESENT(BIC_Pkgpc7);
4086 use_c1_residency_msr = 1;
4087 }
Len Brown34c761972017-01-27 02:36:41 -05004088 if (is_skx(family, model)) {
4089 BIC_NOT_PRESENT(BIC_CPU_c3);
4090 BIC_NOT_PRESENT(BIC_Pkgpc3);
4091 BIC_NOT_PRESENT(BIC_CPU_c7);
4092 BIC_NOT_PRESENT(BIC_Pkgpc7);
4093 }
Len Brownade0eba2017-02-10 01:56:47 -05004094 if (is_bdx(family, model)) {
4095 BIC_NOT_PRESENT(BIC_CPU_c7);
4096 BIC_NOT_PRESENT(BIC_Pkgpc7);
4097 }
Len Brown0f47c082017-01-27 00:50:45 -05004098 if (has_hsw_msrs(family, model)) {
4099 BIC_PRESENT(BIC_Pkgpc8);
4100 BIC_PRESENT(BIC_Pkgpc9);
4101 BIC_PRESENT(BIC_Pkgpc10);
4102 }
Len Brown5a634262016-04-06 17:15:55 -04004103 do_irtl_hsw = has_hsw_msrs(family, model);
Len Brown0b2bb692015-03-26 00:50:30 -04004104 do_skl_residency = has_skl_msrs(family, model);
Len Brown144b44b2013-11-09 00:30:16 -05004105 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07004106 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04004107
Len Brown96e47152017-01-21 02:26:00 -05004108 if (!quiet)
Len Brownf0057312015-12-03 01:35:36 -05004109 decode_misc_pwr_mgmt_msr();
4110
Len Brown96e47152017-01-21 02:26:00 -05004111 if (!quiet && has_slv_msrs(family, model))
Len Brown71616c82017-01-07 22:37:48 -05004112 decode_c6_demotion_policy_msr();
4113
Len Brown889facb2012-11-08 00:48:57 -05004114 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04004115 perf_limit_reasons_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05004116
Len Brown96e47152017-01-21 02:26:00 -05004117 if (!quiet)
Colin Ian King1b693172016-03-02 13:50:25 +00004118 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04004119
Len Brown41618e62017-02-09 18:25:22 -05004120 if (!quiet)
4121 dump_sysfs_cstate_config();
4122
Len Browna2b7b742015-09-26 00:12:38 -04004123 if (has_skl_msrs(family, model))
4124 calculate_tsc_tweak();
4125
Len Brown812db3f2017-02-10 00:25:41 -05004126 if (!access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK))
4127 BIC_PRESENT(BIC_GFX_rc6);
Len Brownfdf676e2016-02-27 01:28:12 -05004128
Len Brown812db3f2017-02-10 00:25:41 -05004129 if (!access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK))
4130 BIC_PRESENT(BIC_GFXMHz);
Len Brown27d47352016-02-27 00:37:54 -05004131
Len Brown96e47152017-01-21 02:26:00 -05004132 if (!quiet)
Len Brown33148d62017-01-21 01:26:16 -05004133 decode_misc_feature_control();
4134
Len Brown889facb2012-11-08 00:48:57 -05004135 return;
Len Brown103a8fe2010-10-22 23:53:03 -04004136}
4137
Len Brownd8af6f52015-02-10 01:56:38 -05004138void help()
Len Brown103a8fe2010-10-22 23:53:03 -04004139{
Len Brownb7d8c142016-02-13 23:36:17 -05004140 fprintf(outf,
Len Brownd8af6f52015-02-10 01:56:38 -05004141 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
4142 "\n"
4143 "Turbostat forks the specified COMMAND and prints statistics\n"
4144 "when COMMAND completes.\n"
4145 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
4146 "to print statistics, until interrupted.\n"
Len Brown388e9c82016-12-22 23:57:55 -05004147 "--add add a counter\n"
4148 " eg. --add msr0x10,u64,cpu,delta,MY_TSC\n"
Len Brown1ef7d212017-02-10 23:54:15 -05004149 "--cpu cpu-set limit output to summary plus cpu-set cpu-set\n"
Len Brown96e47152017-01-21 02:26:00 -05004150 "--quiet skip decoding system configuration header\n"
Len Brownd8af6f52015-02-10 01:56:38 -05004151 "--interval sec Override default 5-second measurement interval\n"
4152 "--help print this help message\n"
Len Brownc8ade362017-02-15 17:15:11 -05004153 "--list list column headers only\n"
Len Brownb7d8c142016-02-13 23:36:17 -05004154 "--out file create or truncate \"file\" for all output\n"
Len Brownd8af6f52015-02-10 01:56:38 -05004155 "--version print version information\n"
4156 "\n"
4157 "For more help, run \"man turbostat\"\n");
Len Brown103a8fe2010-10-22 23:53:03 -04004158}
4159
4160
4161/*
4162 * in /dev/cpu/ return success for names that are numbers
4163 * ie. filter out ".", "..", "microcode".
4164 */
4165int dir_filter(const struct dirent *dirp)
4166{
4167 if (isdigit(dirp->d_name[0]))
4168 return 1;
4169 else
4170 return 0;
4171}
4172
4173int open_dev_cpu_msr(int dummy1)
4174{
4175 return 0;
4176}
4177
Len Brownc98d5d92012-06-04 00:56:40 -04004178void topology_probe()
4179{
4180 int i;
4181 int max_core_id = 0;
4182 int max_package_id = 0;
4183 int max_siblings = 0;
4184 struct cpu_topology {
4185 int core_id;
4186 int physical_package_id;
4187 } *cpus;
4188
4189 /* Initialize num_cpus, max_cpu_num */
4190 topo.num_cpus = 0;
4191 topo.max_cpu_num = 0;
4192 for_all_proc_cpus(count_cpus);
4193 if (!summary_only && topo.num_cpus > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004194 BIC_PRESENT(BIC_CPU);
Len Brownc98d5d92012-06-04 00:56:40 -04004195
Len Brownd8af6f52015-02-10 01:56:38 -05004196 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004197 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04004198
4199 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004200 if (cpus == NULL)
4201 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04004202
4203 /*
4204 * Allocate and initialize cpu_present_set
4205 */
4206 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004207 if (cpu_present_set == NULL)
4208 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004209 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4210 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
4211 for_all_proc_cpus(mark_cpu_present);
4212
4213 /*
Len Brown1ef7d212017-02-10 23:54:15 -05004214 * Validate that all cpus in cpu_subset are also in cpu_present_set
4215 */
4216 for (i = 0; i < CPU_SUBSET_MAXCPUS; ++i) {
4217 if (CPU_ISSET_S(i, cpu_subset_size, cpu_subset))
4218 if (!CPU_ISSET_S(i, cpu_present_setsize, cpu_present_set))
4219 err(1, "cpu%d not present", i);
4220 }
4221
4222 /*
Len Brownc98d5d92012-06-04 00:56:40 -04004223 * Allocate and initialize cpu_affinity_set
4224 */
4225 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004226 if (cpu_affinity_set == NULL)
4227 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004228 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4229 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
4230
4231
4232 /*
4233 * For online cpus
4234 * find max_core_id, max_package_id
4235 */
4236 for (i = 0; i <= topo.max_cpu_num; ++i) {
4237 int siblings;
4238
4239 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05004240 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004241 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04004242 continue;
4243 }
4244 cpus[i].core_id = get_core_id(i);
4245 if (cpus[i].core_id > max_core_id)
4246 max_core_id = cpus[i].core_id;
4247
4248 cpus[i].physical_package_id = get_physical_package_id(i);
4249 if (cpus[i].physical_package_id > max_package_id)
4250 max_package_id = cpus[i].physical_package_id;
4251
4252 siblings = get_num_ht_siblings(i);
4253 if (siblings > max_siblings)
4254 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004255 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004256 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004257 i, cpus[i].physical_package_id, cpus[i].core_id);
4258 }
4259 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004260 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004261 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004262 max_core_id, topo.num_cores_per_pkg);
Len Brown0f47c082017-01-27 00:50:45 -05004263 if (!summary_only && topo.num_cores_per_pkg > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004264 BIC_PRESENT(BIC_Core);
Len Brownc98d5d92012-06-04 00:56:40 -04004265
4266 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004267 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004268 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004269 max_package_id, topo.num_packages);
Len Brown1cc21f72015-02-23 00:34:57 -05004270 if (debug && !summary_only && topo.num_packages > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004271 BIC_PRESENT(BIC_Package);
Len Brownc98d5d92012-06-04 00:56:40 -04004272
4273 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004274 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004275 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04004276
4277 free(cpus);
4278}
4279
4280void
4281allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
4282{
4283 int i;
4284
4285 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
Len Brown678a3bd2017-02-09 22:22:13 -05004286 topo.num_packages, sizeof(struct thread_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004287 if (*t == NULL)
4288 goto error;
4289
4290 for (i = 0; i < topo.num_threads_per_core *
4291 topo.num_cores_per_pkg * topo.num_packages; i++)
4292 (*t)[i].cpu_id = -1;
4293
4294 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
Len Brown678a3bd2017-02-09 22:22:13 -05004295 sizeof(struct core_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004296 if (*c == NULL)
4297 goto error;
4298
4299 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
4300 (*c)[i].core_id = -1;
4301
Len Brown678a3bd2017-02-09 22:22:13 -05004302 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004303 if (*p == NULL)
4304 goto error;
4305
4306 for (i = 0; i < topo.num_packages; i++)
4307 (*p)[i].package_id = i;
4308
4309 return;
4310error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07004311 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04004312}
4313/*
4314 * init_counter()
4315 *
4316 * set cpu_id, core_num, pkg_num
4317 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
4318 *
4319 * increment topo.num_cores when 1st core in pkg seen
4320 */
4321void init_counter(struct thread_data *thread_base, struct core_data *core_base,
4322 struct pkg_data *pkg_base, int thread_num, int core_num,
4323 int pkg_num, int cpu_id)
4324{
4325 struct thread_data *t;
4326 struct core_data *c;
4327 struct pkg_data *p;
4328
4329 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
4330 c = GET_CORE(core_base, core_num, pkg_num);
4331 p = GET_PKG(pkg_base, pkg_num);
4332
4333 t->cpu_id = cpu_id;
4334 if (thread_num == 0) {
4335 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
4336 if (cpu_is_first_core_in_package(cpu_id))
4337 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
4338 }
4339
4340 c->core_id = core_num;
4341 p->package_id = pkg_num;
4342}
4343
4344
4345int initialize_counters(int cpu_id)
4346{
4347 int my_thread_id, my_core_id, my_package_id;
4348
4349 my_package_id = get_physical_package_id(cpu_id);
4350 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07004351 my_thread_id = get_cpu_position_in_core(cpu_id);
4352 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04004353 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04004354
4355 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4356 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4357 return 0;
4358}
4359
4360void allocate_output_buffer()
4361{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004362 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04004363 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07004364 if (outp == NULL)
4365 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04004366}
Len Brown36229892016-02-26 20:51:02 -05004367void allocate_fd_percpu(void)
4368{
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004369 fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown36229892016-02-26 20:51:02 -05004370 if (fd_percpu == NULL)
4371 err(-1, "calloc fd_percpu");
4372}
Len Brown562a2d32016-02-26 23:48:05 -05004373void allocate_irq_buffers(void)
4374{
4375 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
4376 if (irq_column_2_cpu == NULL)
4377 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04004378
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004379 irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown562a2d32016-02-26 23:48:05 -05004380 if (irqs_per_cpu == NULL)
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004381 err(-1, "calloc %d", topo.max_cpu_num + 1);
Len Brown562a2d32016-02-26 23:48:05 -05004382}
Len Brownc98d5d92012-06-04 00:56:40 -04004383void setup_all_buffers(void)
4384{
4385 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05004386 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05004387 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04004388 allocate_counters(&thread_even, &core_even, &package_even);
4389 allocate_counters(&thread_odd, &core_odd, &package_odd);
4390 allocate_output_buffer();
4391 for_all_proc_cpus(initialize_counters);
4392}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004393
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004394void set_base_cpu(void)
4395{
4396 base_cpu = sched_getcpu();
4397 if (base_cpu < 0)
4398 err(-ENODEV, "No valid cpus found");
4399
4400 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004401 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004402}
4403
Len Brown103a8fe2010-10-22 23:53:03 -04004404void turbostat_init()
4405{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004406 setup_all_buffers();
4407 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04004408 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04004409 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04004410 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04004411
Len Brown103a8fe2010-10-22 23:53:03 -04004412
Len Brown96e47152017-01-21 02:26:00 -05004413 if (!quiet)
Len Brown7f5c2582015-12-01 01:36:39 -05004414 for_all_cpus(print_hwp, ODD_COUNTERS);
4415
Len Brown96e47152017-01-21 02:26:00 -05004416 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004417 for_all_cpus(print_epb, ODD_COUNTERS);
4418
Len Brown96e47152017-01-21 02:26:00 -05004419 if (!quiet)
Len Brown3a9a9412014-08-15 02:39:52 -04004420 for_all_cpus(print_perf_limit, ODD_COUNTERS);
4421
Len Brown96e47152017-01-21 02:26:00 -05004422 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004423 for_all_cpus(print_rapl, ODD_COUNTERS);
4424
4425 for_all_cpus(set_temperature_target, ODD_COUNTERS);
4426
Len Brown96e47152017-01-21 02:26:00 -05004427 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004428 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04004429
Len Brown96e47152017-01-21 02:26:00 -05004430 if (!quiet && do_irtl_snb)
Len Brown5a634262016-04-06 17:15:55 -04004431 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04004432}
4433
4434int fork_it(char **argv)
4435{
Len Brown103a8fe2010-10-22 23:53:03 -04004436 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04004437 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04004438
Len Brown218f0e82017-02-14 22:07:52 -05004439 snapshot_proc_sysfs_files();
Len Brownd91bb172012-11-01 00:08:19 -04004440 status = for_all_cpus(get_counters, EVEN_COUNTERS);
4441 if (status)
4442 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04004443 /* clear affinity side-effect of get_counters() */
4444 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04004445 gettimeofday(&tv_even, (struct timezone *)NULL);
4446
4447 child_pid = fork();
4448 if (!child_pid) {
4449 /* child */
4450 execvp(argv[0], argv);
4451 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04004452
4453 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07004454 if (child_pid == -1)
4455 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04004456
4457 signal(SIGINT, SIG_IGN);
4458 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07004459 if (waitpid(child_pid, &status, 0) == -1)
4460 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04004461 }
Len Brownc98d5d92012-06-04 00:56:40 -04004462 /*
4463 * n.b. fork_it() does not check for errors from for_all_cpus()
4464 * because re-starting is problematic when forking
4465 */
Len Brown218f0e82017-02-14 22:07:52 -05004466 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04004467 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04004468 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04004469 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04004470 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
4471 fprintf(outf, "%s: Counter reset detected\n", progname);
4472 else {
4473 compute_average(EVEN_COUNTERS);
4474 format_all_counters(EVEN_COUNTERS);
4475 }
Len Brown103a8fe2010-10-22 23:53:03 -04004476
Len Brownb7d8c142016-02-13 23:36:17 -05004477 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
4478
4479 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04004480
Len Brownd91bb172012-11-01 00:08:19 -04004481 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04004482}
4483
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004484int get_and_dump_counters(void)
4485{
4486 int status;
4487
Len Brown218f0e82017-02-14 22:07:52 -05004488 snapshot_proc_sysfs_files();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004489 status = for_all_cpus(get_counters, ODD_COUNTERS);
4490 if (status)
4491 return status;
4492
4493 status = for_all_cpus(dump_counters, ODD_COUNTERS);
4494 if (status)
4495 return status;
4496
Len Brownb7d8c142016-02-13 23:36:17 -05004497 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004498
4499 return status;
4500}
4501
Len Brownd8af6f52015-02-10 01:56:38 -05004502void print_version() {
Len Brown0539ba12017-02-10 00:27:20 -05004503 fprintf(outf, "turbostat version 4.17 10 Jan 2017"
Len Brownd8af6f52015-02-10 01:56:38 -05004504 " - Len Brown <lenb@kernel.org>\n");
4505}
4506
Len Brown495c76542017-02-08 02:41:51 -05004507int add_counter(unsigned int msr_num, char *path, char *name,
4508 unsigned int width, enum counter_scope scope,
Len Brown41618e62017-02-09 18:25:22 -05004509 enum counter_type type, enum counter_format format, int flags)
Len Brown388e9c82016-12-22 23:57:55 -05004510{
4511 struct msr_counter *msrp;
4512
4513 msrp = calloc(1, sizeof(struct msr_counter));
4514 if (msrp == NULL) {
4515 perror("calloc");
4516 exit(1);
4517 }
4518
4519 msrp->msr_num = msr_num;
4520 strncpy(msrp->name, name, NAME_BYTES);
Len Brown495c76542017-02-08 02:41:51 -05004521 if (path)
4522 strncpy(msrp->path, path, PATH_BYTES);
Len Brown388e9c82016-12-22 23:57:55 -05004523 msrp->width = width;
4524 msrp->type = type;
4525 msrp->format = format;
Len Brown41618e62017-02-09 18:25:22 -05004526 msrp->flags = flags;
Len Brown388e9c82016-12-22 23:57:55 -05004527
4528 switch (scope) {
4529
4530 case SCOPE_CPU:
Len Brown388e9c82016-12-22 23:57:55 -05004531 msrp->next = sys.tp;
4532 sys.tp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004533 sys.added_thread_counters++;
4534 if (sys.added_thread_counters > MAX_ADDED_COUNTERS) {
4535 fprintf(stderr, "exceeded max %d added thread counters\n",
4536 MAX_ADDED_COUNTERS);
4537 exit(-1);
4538 }
Len Brown388e9c82016-12-22 23:57:55 -05004539 break;
4540
4541 case SCOPE_CORE:
Len Brown388e9c82016-12-22 23:57:55 -05004542 msrp->next = sys.cp;
4543 sys.cp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004544 sys.added_core_counters++;
4545 if (sys.added_core_counters > MAX_ADDED_COUNTERS) {
4546 fprintf(stderr, "exceeded max %d added core counters\n",
4547 MAX_ADDED_COUNTERS);
4548 exit(-1);
4549 }
Len Brown388e9c82016-12-22 23:57:55 -05004550 break;
4551
4552 case SCOPE_PACKAGE:
Len Brown388e9c82016-12-22 23:57:55 -05004553 msrp->next = sys.pp;
4554 sys.pp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004555 sys.added_package_counters++;
4556 if (sys.added_package_counters > MAX_ADDED_COUNTERS) {
4557 fprintf(stderr, "exceeded max %d added package counters\n",
4558 MAX_ADDED_COUNTERS);
4559 exit(-1);
4560 }
Len Brown388e9c82016-12-22 23:57:55 -05004561 break;
4562 }
4563
4564 return 0;
4565}
4566
4567void parse_add_command(char *add_command)
4568{
4569 int msr_num = 0;
Len Brown495c76542017-02-08 02:41:51 -05004570 char *path = NULL;
Len Brown0f47c082017-01-27 00:50:45 -05004571 char name_buffer[NAME_BYTES] = "";
Len Brown388e9c82016-12-22 23:57:55 -05004572 int width = 64;
4573 int fail = 0;
4574 enum counter_scope scope = SCOPE_CPU;
4575 enum counter_type type = COUNTER_CYCLES;
4576 enum counter_format format = FORMAT_DELTA;
4577
4578 while (add_command) {
4579
4580 if (sscanf(add_command, "msr0x%x", &msr_num) == 1)
4581 goto next;
4582
4583 if (sscanf(add_command, "msr%d", &msr_num) == 1)
4584 goto next;
4585
Len Brown495c76542017-02-08 02:41:51 -05004586 if (*add_command == '/') {
4587 path = add_command;
4588 goto next;
4589 }
4590
Len Brown388e9c82016-12-22 23:57:55 -05004591 if (sscanf(add_command, "u%d", &width) == 1) {
4592 if ((width == 32) || (width == 64))
4593 goto next;
4594 width = 64;
4595 }
4596 if (!strncmp(add_command, "cpu", strlen("cpu"))) {
4597 scope = SCOPE_CPU;
4598 goto next;
4599 }
4600 if (!strncmp(add_command, "core", strlen("core"))) {
4601 scope = SCOPE_CORE;
4602 goto next;
4603 }
4604 if (!strncmp(add_command, "package", strlen("package"))) {
4605 scope = SCOPE_PACKAGE;
4606 goto next;
4607 }
4608 if (!strncmp(add_command, "cycles", strlen("cycles"))) {
4609 type = COUNTER_CYCLES;
4610 goto next;
4611 }
4612 if (!strncmp(add_command, "seconds", strlen("seconds"))) {
4613 type = COUNTER_SECONDS;
4614 goto next;
4615 }
Len Brown41618e62017-02-09 18:25:22 -05004616 if (!strncmp(add_command, "usec", strlen("usec"))) {
4617 type = COUNTER_USEC;
4618 goto next;
4619 }
Len Brown388e9c82016-12-22 23:57:55 -05004620 if (!strncmp(add_command, "raw", strlen("raw"))) {
4621 format = FORMAT_RAW;
4622 goto next;
4623 }
4624 if (!strncmp(add_command, "delta", strlen("delta"))) {
4625 format = FORMAT_DELTA;
4626 goto next;
4627 }
4628 if (!strncmp(add_command, "percent", strlen("percent"))) {
4629 format = FORMAT_PERCENT;
4630 goto next;
4631 }
4632
4633 if (sscanf(add_command, "%18s,%*s", name_buffer) == 1) { /* 18 < NAME_BYTES */
4634 char *eos;
4635
4636 eos = strchr(name_buffer, ',');
4637 if (eos)
4638 *eos = '\0';
4639 goto next;
4640 }
4641
4642next:
4643 add_command = strchr(add_command, ',');
Len Brown495c76542017-02-08 02:41:51 -05004644 if (add_command) {
4645 *add_command = '\0';
Len Brown388e9c82016-12-22 23:57:55 -05004646 add_command++;
Len Brown495c76542017-02-08 02:41:51 -05004647 }
Len Brown388e9c82016-12-22 23:57:55 -05004648
4649 }
Len Brown495c76542017-02-08 02:41:51 -05004650 if ((msr_num == 0) && (path == NULL)) {
4651 fprintf(stderr, "--add: (msrDDD | msr0xXXX | /path_to_counter ) required\n");
Len Brown388e9c82016-12-22 23:57:55 -05004652 fail++;
4653 }
4654
4655 /* generate default column header */
4656 if (*name_buffer == '\0') {
4657 if (format == FORMAT_RAW) {
4658 if (width == 32)
4659 sprintf(name_buffer, "msr%d", msr_num);
4660 else
4661 sprintf(name_buffer, "MSR%d", msr_num);
4662 } else if (format == FORMAT_DELTA) {
4663 if (width == 32)
4664 sprintf(name_buffer, "cnt%d", msr_num);
4665 else
4666 sprintf(name_buffer, "CNT%d", msr_num);
4667 } else if (format == FORMAT_PERCENT) {
4668 if (width == 32)
4669 sprintf(name_buffer, "msr%d%%", msr_num);
4670 else
4671 sprintf(name_buffer, "MSR%d%%", msr_num);
4672 }
4673 }
4674
Len Brown41618e62017-02-09 18:25:22 -05004675 if (add_counter(msr_num, path, name_buffer, width, scope, type, format, 0))
Len Brown388e9c82016-12-22 23:57:55 -05004676 fail++;
4677
4678 if (fail) {
4679 help();
4680 exit(1);
4681 }
4682}
Len Brown41618e62017-02-09 18:25:22 -05004683
4684void probe_sysfs(void)
4685{
4686 char path[64];
4687 char name_buf[16];
4688 FILE *input;
4689 int state;
4690 char *sp;
4691
4692 if (!DO_BIC(BIC_sysfs))
4693 return;
4694
4695 for (state = 10; state > 0; --state) {
4696
4697 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
4698 base_cpu, state);
4699 input = fopen(path, "r");
4700 if (input == NULL)
4701 continue;
4702 fgets(name_buf, sizeof(name_buf), input);
4703
4704 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
4705 sp = strchr(name_buf, '-');
4706 if (!sp)
4707 sp = strchrnul(name_buf, '\n');
4708 *sp = '%';
4709 *(sp + 1) = '\0';
4710
4711 fclose(input);
4712
4713 sprintf(path, "cpuidle/state%d/time", state);
4714
4715 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_USEC,
4716 FORMAT_PERCENT, SYSFS_PERCPU);
4717 }
4718
4719 for (state = 10; state > 0; --state) {
4720
4721 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
4722 base_cpu, state);
4723 input = fopen(path, "r");
4724 if (input == NULL)
4725 continue;
4726 fgets(name_buf, sizeof(name_buf), input);
4727 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
4728 sp = strchr(name_buf, '-');
4729 if (!sp)
4730 sp = strchrnul(name_buf, '\n');
4731 *sp = '\0';
4732 fclose(input);
4733
4734 sprintf(path, "cpuidle/state%d/usage", state);
4735
4736 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_ITEMS,
4737 FORMAT_DELTA, SYSFS_PERCPU);
4738 }
4739
4740}
4741
Len Brown1ef7d212017-02-10 23:54:15 -05004742
4743/*
4744 * parse cpuset with following syntax
4745 * 1,2,4..6,8-10 and set bits in cpu_subset
4746 */
4747void parse_cpu_command(char *optarg)
4748{
4749 unsigned int start, end;
4750 char *next;
4751
4752 cpu_subset = CPU_ALLOC(CPU_SUBSET_MAXCPUS);
4753 if (cpu_subset == NULL)
4754 err(3, "CPU_ALLOC");
4755 cpu_subset_size = CPU_ALLOC_SIZE(CPU_SUBSET_MAXCPUS);
4756
4757 CPU_ZERO_S(cpu_subset_size, cpu_subset);
4758
4759 next = optarg;
4760
4761 while (next && *next) {
4762
4763 if (*next == '-') /* no negative cpu numbers */
4764 goto error;
4765
4766 start = strtoul(next, &next, 10);
4767
4768 if (start >= CPU_SUBSET_MAXCPUS)
4769 goto error;
4770 CPU_SET_S(start, cpu_subset_size, cpu_subset);
4771
4772 if (*next == '\0')
4773 break;
4774
4775 if (*next == ',') {
4776 next += 1;
4777 continue;
4778 }
4779
4780 if (*next == '-') {
4781 next += 1; /* start range */
4782 } else if (*next == '.') {
4783 next += 1;
4784 if (*next == '.')
4785 next += 1; /* start range */
4786 else
4787 goto error;
4788 }
4789
4790 end = strtoul(next, &next, 10);
4791 if (end <= start)
4792 goto error;
4793
4794 while (++start <= end) {
4795 if (start >= CPU_SUBSET_MAXCPUS)
4796 goto error;
4797 CPU_SET_S(start, cpu_subset_size, cpu_subset);
4798 }
4799
4800 if (*next == ',')
4801 next += 1;
4802 else if (*next != '\0')
4803 goto error;
4804 }
4805
4806 return;
4807
4808error:
4809 fprintf(stderr, "'--cpu %s' malformed\n", optarg);
4810 exit(-1);
4811}
4812
Len Brown812db3f2017-02-10 00:25:41 -05004813/*
4814 * HIDE_LIST - hide this list of counters, show the rest [default]
4815 * SHOW_LIST - show this list of counters, hide the rest
4816 */
4817enum show_hide_mode { SHOW_LIST, HIDE_LIST } global_show_hide_mode = HIDE_LIST;
4818
4819int shown;
4820/*
4821 * parse_show_hide() - process cmdline to set default counter action
4822 */
4823void parse_show_hide(char *optarg, enum show_hide_mode new_mode)
4824{
4825 /*
4826 * --show: show only those specified
4827 * The 1st invocation will clear and replace the enabled mask
4828 * subsequent invocations can add to it.
4829 */
4830 if (new_mode == SHOW_LIST) {
4831 if (shown == 0)
4832 bic_enabled = bic_lookup(optarg);
4833 else
4834 bic_enabled |= bic_lookup(optarg);
4835 shown = 1;
4836
4837 return;
4838 }
4839
4840 /*
4841 * --hide: do not show those specified
4842 * multiple invocations simply clear more bits in enabled mask
4843 */
4844 bic_enabled &= ~bic_lookup(optarg);
Len Brown41618e62017-02-09 18:25:22 -05004845
Len Brown812db3f2017-02-10 00:25:41 -05004846}
4847
Len Brown103a8fe2010-10-22 23:53:03 -04004848void cmdline(int argc, char **argv)
4849{
4850 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05004851 int option_index = 0;
4852 static struct option long_options[] = {
Len Brown388e9c82016-12-22 23:57:55 -05004853 {"add", required_argument, 0, 'a'},
Len Brown1ef7d212017-02-10 23:54:15 -05004854 {"cpu", required_argument, 0, 'c'},
Len Brownd8af6f52015-02-10 01:56:38 -05004855 {"Dump", no_argument, 0, 'D'},
Len Brown96e47152017-01-21 02:26:00 -05004856 {"debug", no_argument, 0, 'd'}, /* internal, not documented */
Len Brownd8af6f52015-02-10 01:56:38 -05004857 {"interval", required_argument, 0, 'i'},
4858 {"help", no_argument, 0, 'h'},
Len Brown812db3f2017-02-10 00:25:41 -05004859 {"hide", required_argument, 0, 'H'}, // meh, -h taken by --help
Len Brownd8af6f52015-02-10 01:56:38 -05004860 {"Joules", no_argument, 0, 'J'},
Len Brownc8ade362017-02-15 17:15:11 -05004861 {"list", no_argument, 0, 'l'},
Len Brownb7d8c142016-02-13 23:36:17 -05004862 {"out", required_argument, 0, 'o'},
Len Brownd8af6f52015-02-10 01:56:38 -05004863 {"Package", no_argument, 0, 'p'},
4864 {"processor", no_argument, 0, 'p'},
Len Brown96e47152017-01-21 02:26:00 -05004865 {"quiet", no_argument, 0, 'q'},
Len Brown812db3f2017-02-10 00:25:41 -05004866 {"show", required_argument, 0, 's'},
Len Brownd8af6f52015-02-10 01:56:38 -05004867 {"Summary", no_argument, 0, 'S'},
4868 {"TCC", required_argument, 0, 'T'},
4869 {"version", no_argument, 0, 'v' },
4870 {0, 0, 0, 0 }
4871 };
Len Brown103a8fe2010-10-22 23:53:03 -04004872
4873 progname = argv[0];
4874
Len Brown96e47152017-01-21 02:26:00 -05004875 while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:PpqST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05004876 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04004877 switch (opt) {
Len Brown388e9c82016-12-22 23:57:55 -05004878 case 'a':
4879 parse_add_command(optarg);
4880 break;
Len Brown1ef7d212017-02-10 23:54:15 -05004881 case 'c':
4882 parse_cpu_command(optarg);
4883 break;
Len Brownd8af6f52015-02-10 01:56:38 -05004884 case 'D':
4885 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04004886 break;
Len Brownd8af6f52015-02-10 01:56:38 -05004887 case 'd':
4888 debug++;
Len Brown2f32edf2012-09-21 23:45:46 -04004889 break;
Len Brown812db3f2017-02-10 00:25:41 -05004890 case 'H':
4891 parse_show_hide(optarg, HIDE_LIST);
4892 break;
Len Brownd8af6f52015-02-10 01:56:38 -05004893 case 'h':
4894 default:
4895 help();
4896 exit(1);
4897 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05004898 {
4899 double interval = strtod(optarg, NULL);
4900
4901 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05004902 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05004903 interval);
4904 exit(2);
4905 }
4906
4907 interval_ts.tv_sec = interval;
4908 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
4909 }
Len Brown889facb2012-11-08 00:48:57 -05004910 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08004911 case 'J':
4912 rapl_joules++;
4913 break;
Len Brownc8ade362017-02-15 17:15:11 -05004914 case 'l':
4915 list_header_only++;
4916 quiet++;
4917 break;
Len Brownb7d8c142016-02-13 23:36:17 -05004918 case 'o':
4919 outf = fopen_or_die(optarg, "w");
4920 break;
Len Brownd8af6f52015-02-10 01:56:38 -05004921 case 'P':
4922 show_pkg_only++;
4923 break;
4924 case 'p':
4925 show_core_only++;
4926 break;
Len Brown96e47152017-01-21 02:26:00 -05004927 case 'q':
4928 quiet = 1;
4929 break;
Len Brown812db3f2017-02-10 00:25:41 -05004930 case 's':
4931 parse_show_hide(optarg, SHOW_LIST);
4932 break;
Len Brownd8af6f52015-02-10 01:56:38 -05004933 case 'S':
4934 summary_only++;
4935 break;
4936 case 'T':
4937 tcc_activation_temp_override = atoi(optarg);
4938 break;
4939 case 'v':
4940 print_version();
4941 exit(0);
4942 break;
Len Brown103a8fe2010-10-22 23:53:03 -04004943 }
4944 }
4945}
4946
4947int main(int argc, char **argv)
4948{
Len Brownb7d8c142016-02-13 23:36:17 -05004949 outf = stderr;
4950
Len Brown103a8fe2010-10-22 23:53:03 -04004951 cmdline(argc, argv);
4952
Len Brown96e47152017-01-21 02:26:00 -05004953 if (!quiet)
Len Brownd8af6f52015-02-10 01:56:38 -05004954 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04004955
Len Brown41618e62017-02-09 18:25:22 -05004956 probe_sysfs();
4957
Len Brown103a8fe2010-10-22 23:53:03 -04004958 turbostat_init();
4959
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004960 /* dump counters and exit */
4961 if (dump_only)
4962 return get_and_dump_counters();
4963
Len Brownc8ade362017-02-15 17:15:11 -05004964 /* list header and exit */
4965 if (list_header_only) {
4966 print_header(",");
4967 flush_output_stdout();
4968 return 0;
4969 }
4970
Len Brown103a8fe2010-10-22 23:53:03 -04004971 /*
4972 * if any params left, it must be a command to fork
4973 */
4974 if (argc - optind)
4975 return fork_it(argv + optind);
4976 else
4977 turbostat_loop();
4978
4979 return 0;
4980}