blob: 6f7c64acee236cbd43954ba5d7b0961242740117 [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 Brown144b44b2013-11-09 00:30:16 -050060unsigned int do_slm_cstates;
61unsigned int use_c1_residency_msr;
Len Brown103a8fe2010-10-22 23:53:03 -040062unsigned int has_aperf;
Len Brown889facb2012-11-08 00:48:57 -050063unsigned int has_epb;
Len Brown5a634262016-04-06 17:15:55 -040064unsigned int do_irtl_snb;
65unsigned int do_irtl_hsw;
Len Brownfc04cc62014-02-06 00:55:19 -050066unsigned int units = 1000000; /* MHz etc */
Len Brown103a8fe2010-10-22 23:53:03 -040067unsigned int genuine_intel;
68unsigned int has_invariant_tsc;
Len Brownd7899442015-01-23 00:12:33 -050069unsigned int do_nhm_platform_info;
Len Browncf4cbe52017-01-01 13:08:33 -050070unsigned int no_MSR_MISC_PWR_MGMT;
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +020071unsigned int aperf_mperf_multiplier = 1;
Len Brown103a8fe2010-10-22 23:53:03 -040072double bclk;
Len Browna2b7b742015-09-26 00:12:38 -040073double base_hz;
Len Brown21ed5572015-10-19 22:37:40 -040074unsigned int has_base_hz;
Len Browna2b7b742015-09-26 00:12:38 -040075double tsc_tweak = 1.0;
Len Brownc98d5d92012-06-04 00:56:40 -040076unsigned int show_pkg_only;
77unsigned int show_core_only;
78char *output_buffer, *outp;
Len Brown889facb2012-11-08 00:48:57 -050079unsigned int do_rapl;
80unsigned int do_dts;
81unsigned int do_ptm;
Len Brownfdf676e2016-02-27 01:28:12 -050082unsigned long long gfx_cur_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -050083unsigned int gfx_cur_mhz;
Len Brown889facb2012-11-08 00:48:57 -050084unsigned int tcc_activation_temp;
85unsigned int tcc_activation_temp_override;
Andrey Semin40ee8e32014-12-05 00:07:00 -050086double rapl_power_units, rapl_time_units;
87double rapl_dram_energy_units, rapl_energy_units;
Len Brown889facb2012-11-08 00:48:57 -050088double rapl_joule_counter_range;
Len Brown3a9a9412014-08-15 02:39:52 -040089unsigned int do_core_perf_limit_reasons;
90unsigned int do_gfx_perf_limit_reasons;
91unsigned int do_ring_perf_limit_reasons;
Len Brown8a5bdf42015-04-01 21:02:57 -040092unsigned int crystal_hz;
93unsigned long long tsc_hz;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -040094int base_cpu;
Len Brown21ed5572015-10-19 22:37:40 -040095double discover_bclk(unsigned int family, unsigned int model);
Len Brown7f5c2582015-12-01 01:36:39 -050096unsigned int has_hwp; /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
97 /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
98unsigned int has_hwp_notify; /* IA32_HWP_INTERRUPT */
99unsigned int has_hwp_activity_window; /* IA32_HWP_REQUEST[bits 41:32] */
100unsigned int has_hwp_epp; /* IA32_HWP_REQUEST[bits 31:24] */
101unsigned int has_hwp_pkg; /* IA32_HWP_REQUEST_PKG */
Len Brown33148d62017-01-21 01:26:16 -0500102unsigned int has_misc_feature_control;
Len Brown889facb2012-11-08 00:48:57 -0500103
Len Browne6f9bb32013-12-03 02:19:19 -0500104#define RAPL_PKG (1 << 0)
105 /* 0x610 MSR_PKG_POWER_LIMIT */
106 /* 0x611 MSR_PKG_ENERGY_STATUS */
107#define RAPL_PKG_PERF_STATUS (1 << 1)
108 /* 0x613 MSR_PKG_PERF_STATUS */
109#define RAPL_PKG_POWER_INFO (1 << 2)
110 /* 0x614 MSR_PKG_POWER_INFO */
111
112#define RAPL_DRAM (1 << 3)
113 /* 0x618 MSR_DRAM_POWER_LIMIT */
114 /* 0x619 MSR_DRAM_ENERGY_STATUS */
Len Browne6f9bb32013-12-03 02:19:19 -0500115#define RAPL_DRAM_PERF_STATUS (1 << 4)
116 /* 0x61b MSR_DRAM_PERF_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400117#define RAPL_DRAM_POWER_INFO (1 << 5)
118 /* 0x61c MSR_DRAM_POWER_INFO */
Len Browne6f9bb32013-12-03 02:19:19 -0500119
Jacob Pan91484942016-06-16 09:48:20 -0700120#define RAPL_CORES_POWER_LIMIT (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500121 /* 0x638 MSR_PP0_POWER_LIMIT */
Len Brown0b2bb692015-03-26 00:50:30 -0400122#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500123 /* 0x63a MSR_PP0_POLICY */
124
Len Brown0b2bb692015-03-26 00:50:30 -0400125#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500126 /* 0x640 MSR_PP1_POWER_LIMIT */
127 /* 0x641 MSR_PP1_ENERGY_STATUS */
128 /* 0x642 MSR_PP1_POLICY */
Jacob Pan91484942016-06-16 09:48:20 -0700129
130#define RAPL_CORES_ENERGY_STATUS (1 << 9)
131 /* 0x639 MSR_PP0_ENERGY_STATUS */
132#define RAPL_CORES (RAPL_CORES_ENERGY_STATUS | RAPL_CORES_POWER_LIMIT)
Len Brown889facb2012-11-08 00:48:57 -0500133#define TJMAX_DEFAULT 100
134
135#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400136
Len Brown388e9c82016-12-22 23:57:55 -0500137/*
138 * buffer size used by sscanf() for added column names
139 * Usually truncated to 7 characters, but also handles 18 columns for raw 64-bit counters
140 */
141#define NAME_BYTES 20
Len Brown495c76542017-02-08 02:41:51 -0500142#define PATH_BYTES 128
Len Brown388e9c82016-12-22 23:57:55 -0500143
Len Brown103a8fe2010-10-22 23:53:03 -0400144int backwards_count;
145char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -0400146
Len Brown1ef7d212017-02-10 23:54:15 -0500147#define CPU_SUBSET_MAXCPUS 1024 /* need to use before probe... */
148cpu_set_t *cpu_present_set, *cpu_affinity_set, *cpu_subset;
149size_t cpu_present_setsize, cpu_affinity_setsize, cpu_subset_size;
Len Brown678a3bd2017-02-09 22:22:13 -0500150#define MAX_ADDED_COUNTERS 16
Len Brown103a8fe2010-10-22 23:53:03 -0400151
Len Brownc98d5d92012-06-04 00:56:40 -0400152struct thread_data {
Len Brownf4fdf2b2017-05-27 21:06:55 -0700153 struct timeval tv_begin;
154 struct timeval tv_end;
Len Brownc98d5d92012-06-04 00:56:40 -0400155 unsigned long long tsc;
156 unsigned long long aperf;
157 unsigned long long mperf;
Len Brown144b44b2013-11-09 00:30:16 -0500158 unsigned long long c1;
Len Brown0de6c0d2017-02-15 21:45:40 -0500159 unsigned long long irq_count;
Len Brown1ed51012013-02-10 17:19:24 -0500160 unsigned int smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400161 unsigned int cpu_id;
162 unsigned int flags;
163#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
164#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
Len Brown678a3bd2017-02-09 22:22:13 -0500165 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400166} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400167
Len Brownc98d5d92012-06-04 00:56:40 -0400168struct core_data {
169 unsigned long long c3;
170 unsigned long long c6;
171 unsigned long long c7;
Len Brown0539ba12017-02-10 00:27:20 -0500172 unsigned long long mc6_us; /* duplicate as per-core for now, even though per module */
Len Brown889facb2012-11-08 00:48:57 -0500173 unsigned int core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400174 unsigned int core_id;
Len Brown678a3bd2017-02-09 22:22:13 -0500175 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400176} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400177
Len Brownc98d5d92012-06-04 00:56:40 -0400178struct pkg_data {
179 unsigned long long pc2;
180 unsigned long long pc3;
181 unsigned long long pc6;
182 unsigned long long pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800183 unsigned long long pc8;
184 unsigned long long pc9;
185 unsigned long long pc10;
Len Brown0b2bb692015-03-26 00:50:30 -0400186 unsigned long long pkg_wtd_core_c0;
187 unsigned long long pkg_any_core_c0;
188 unsigned long long pkg_any_gfxe_c0;
189 unsigned long long pkg_both_core_gfxe_c0;
Len Brown9185e982016-04-06 17:16:00 -0400190 long long gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500191 unsigned int gfx_mhz;
Len Brownc98d5d92012-06-04 00:56:40 -0400192 unsigned int package_id;
Len Brown889facb2012-11-08 00:48:57 -0500193 unsigned int energy_pkg; /* MSR_PKG_ENERGY_STATUS */
194 unsigned int energy_dram; /* MSR_DRAM_ENERGY_STATUS */
195 unsigned int energy_cores; /* MSR_PP0_ENERGY_STATUS */
196 unsigned int energy_gfx; /* MSR_PP1_ENERGY_STATUS */
197 unsigned int rapl_pkg_perf_status; /* MSR_PKG_PERF_STATUS */
198 unsigned int rapl_dram_perf_status; /* MSR_DRAM_PERF_STATUS */
199 unsigned int pkg_temp_c;
Len Brown678a3bd2017-02-09 22:22:13 -0500200 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400201} *package_even, *package_odd;
202
203#define ODD_COUNTERS thread_odd, core_odd, package_odd
204#define EVEN_COUNTERS thread_even, core_even, package_even
205
206#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
207 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
208 topo.num_threads_per_core + \
209 (core_no) * topo.num_threads_per_core + (thread_no))
210#define GET_CORE(core_base, core_no, pkg_no) \
211 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
212#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
213
Len Brown388e9c82016-12-22 23:57:55 -0500214enum counter_scope {SCOPE_CPU, SCOPE_CORE, SCOPE_PACKAGE};
Len Brown41618e62017-02-09 18:25:22 -0500215enum counter_type {COUNTER_ITEMS, COUNTER_CYCLES, COUNTER_SECONDS, COUNTER_USEC};
Len Brown388e9c82016-12-22 23:57:55 -0500216enum counter_format {FORMAT_RAW, FORMAT_DELTA, FORMAT_PERCENT};
217
218struct msr_counter {
219 unsigned int msr_num;
220 char name[NAME_BYTES];
Len Brown495c76542017-02-08 02:41:51 -0500221 char path[PATH_BYTES];
Len Brown388e9c82016-12-22 23:57:55 -0500222 unsigned int width;
223 enum counter_type type;
224 enum counter_format format;
225 struct msr_counter *next;
Len Brown812db3f2017-02-10 00:25:41 -0500226 unsigned int flags;
227#define FLAGS_HIDE (1 << 0)
228#define FLAGS_SHOW (1 << 1)
Len Brown41618e62017-02-09 18:25:22 -0500229#define SYSFS_PERCPU (1 << 1)
Len Brown388e9c82016-12-22 23:57:55 -0500230};
231
232struct sys_counters {
Len Brown678a3bd2017-02-09 22:22:13 -0500233 unsigned int added_thread_counters;
234 unsigned int added_core_counters;
235 unsigned int added_package_counters;
Len Brown388e9c82016-12-22 23:57:55 -0500236 struct msr_counter *tp;
237 struct msr_counter *cp;
238 struct msr_counter *pp;
239} sys;
240
Len Brownc98d5d92012-06-04 00:56:40 -0400241struct system_summary {
242 struct thread_data threads;
243 struct core_data cores;
244 struct pkg_data packages;
Len Brown388e9c82016-12-22 23:57:55 -0500245} average;
Len Brownc98d5d92012-06-04 00:56:40 -0400246
247
248struct topo_params {
249 int num_packages;
250 int num_cpus;
251 int num_cores;
252 int max_cpu_num;
253 int num_cores_per_pkg;
254 int num_threads_per_core;
255} topo;
256
257struct timeval tv_even, tv_odd, tv_delta;
258
Len Brown562a2d32016-02-26 23:48:05 -0500259int *irq_column_2_cpu; /* /proc/interrupts column numbers */
260int *irqs_per_cpu; /* indexed by cpu_num */
261
Len Brownc98d5d92012-06-04 00:56:40 -0400262void setup_all_buffers(void);
263
264int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400265{
Len Brownc98d5d92012-06-04 00:56:40 -0400266 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400267}
Len Brown88c32812012-03-29 21:44:40 -0400268/*
Len Brownc98d5d92012-06-04 00:56:40 -0400269 * run func(thread, core, package) in topology order
270 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400271 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400272
Len Brownc98d5d92012-06-04 00:56:40 -0400273int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
274 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400275{
Len Brownc98d5d92012-06-04 00:56:40 -0400276 int retval, pkg_no, core_no, thread_no;
277
278 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
279 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
280 for (thread_no = 0; thread_no <
281 topo.num_threads_per_core; ++thread_no) {
282 struct thread_data *t;
283 struct core_data *c;
284 struct pkg_data *p;
285
286 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
287
288 if (cpu_is_not_present(t->cpu_id))
289 continue;
290
291 c = GET_CORE(core_base, core_no, pkg_no);
292 p = GET_PKG(pkg_base, pkg_no);
293
294 retval = func(t, c, p);
295 if (retval)
296 return retval;
297 }
298 }
299 }
300 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400301}
302
303int cpu_migrate(int cpu)
304{
Len Brownc98d5d92012-06-04 00:56:40 -0400305 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
306 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
307 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400308 return -1;
309 else
310 return 0;
311}
Len Brown36229892016-02-26 20:51:02 -0500312int get_msr_fd(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400313{
Len Brown103a8fe2010-10-22 23:53:03 -0400314 char pathname[32];
315 int fd;
316
Len Brown36229892016-02-26 20:51:02 -0500317 fd = fd_percpu[cpu];
318
319 if (fd)
320 return fd;
321
Len Brown103a8fe2010-10-22 23:53:03 -0400322 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
323 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400324 if (fd < 0)
Len Brown98481e72014-08-15 00:36:50 -0400325 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 -0400326
Len Brown36229892016-02-26 20:51:02 -0500327 fd_percpu[cpu] = fd;
328
329 return fd;
330}
331
332int get_msr(int cpu, off_t offset, unsigned long long *msr)
333{
334 ssize_t retval;
335
336 retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
Len Brown15aaa342012-03-29 22:19:58 -0400337
Len Brown98481e72014-08-15 00:36:50 -0400338 if (retval != sizeof *msr)
Len Browncf4cbe52017-01-01 13:08:33 -0500339 err(-1, "cpu%d: msr offset 0x%llx read failed", cpu, (unsigned long long)offset);
Len Brown15aaa342012-03-29 22:19:58 -0400340
341 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400342}
343
Len Brownfc04cc62014-02-06 00:55:19 -0500344/*
Len Brown812db3f2017-02-10 00:25:41 -0500345 * Each string in this array is compared in --show and --hide cmdline.
346 * Thus, strings that are proper sub-sets must follow their more specific peers.
Len Brownfc04cc62014-02-06 00:55:19 -0500347 */
Len Brown812db3f2017-02-10 00:25:41 -0500348struct msr_counter bic[] = {
349 { 0x0, "Package" },
350 { 0x0, "Avg_MHz" },
351 { 0x0, "Bzy_MHz" },
352 { 0x0, "TSC_MHz" },
353 { 0x0, "IRQ" },
Len Brown495c76542017-02-08 02:41:51 -0500354 { 0x0, "SMI", "", 32, 0, FORMAT_DELTA, NULL},
Len Brown812db3f2017-02-10 00:25:41 -0500355 { 0x0, "Busy%" },
356 { 0x0, "CPU%c1" },
357 { 0x0, "CPU%c3" },
358 { 0x0, "CPU%c6" },
359 { 0x0, "CPU%c7" },
360 { 0x0, "ThreadC" },
361 { 0x0, "CoreTmp" },
362 { 0x0, "CoreCnt" },
363 { 0x0, "PkgTmp" },
364 { 0x0, "GFX%rc6" },
365 { 0x0, "GFXMHz" },
366 { 0x0, "Pkg%pc2" },
367 { 0x0, "Pkg%pc3" },
368 { 0x0, "Pkg%pc6" },
369 { 0x0, "Pkg%pc7" },
Len Brown0f47c082017-01-27 00:50:45 -0500370 { 0x0, "Pkg%pc8" },
371 { 0x0, "Pkg%pc9" },
372 { 0x0, "Pkg%pc10" },
Len Brown812db3f2017-02-10 00:25:41 -0500373 { 0x0, "PkgWatt" },
374 { 0x0, "CorWatt" },
375 { 0x0, "GFXWatt" },
376 { 0x0, "PkgCnt" },
377 { 0x0, "RAMWatt" },
378 { 0x0, "PKG_%" },
379 { 0x0, "RAM_%" },
380 { 0x0, "Pkg_J" },
381 { 0x0, "Cor_J" },
382 { 0x0, "GFX_J" },
383 { 0x0, "RAM_J" },
384 { 0x0, "Core" },
385 { 0x0, "CPU" },
Len Brown0539ba12017-02-10 00:27:20 -0500386 { 0x0, "Mod%c6" },
Len Brown41618e62017-02-09 18:25:22 -0500387 { 0x0, "sysfs" },
Len Browna99d8732017-05-20 20:11:55 -0400388 { 0x0, "Totl%C0" },
389 { 0x0, "Any%C0" },
390 { 0x0, "GFX%C0" },
391 { 0x0, "CPUGFX%" },
Len Brown812db3f2017-02-10 00:25:41 -0500392};
393
Len Browna99d8732017-05-20 20:11:55 -0400394
395
Len Brown812db3f2017-02-10 00:25:41 -0500396#define MAX_BIC (sizeof(bic) / sizeof(struct msr_counter))
397#define BIC_Package (1ULL << 0)
398#define BIC_Avg_MHz (1ULL << 1)
399#define BIC_Bzy_MHz (1ULL << 2)
400#define BIC_TSC_MHz (1ULL << 3)
401#define BIC_IRQ (1ULL << 4)
402#define BIC_SMI (1ULL << 5)
403#define BIC_Busy (1ULL << 6)
404#define BIC_CPU_c1 (1ULL << 7)
405#define BIC_CPU_c3 (1ULL << 8)
406#define BIC_CPU_c6 (1ULL << 9)
407#define BIC_CPU_c7 (1ULL << 10)
408#define BIC_ThreadC (1ULL << 11)
409#define BIC_CoreTmp (1ULL << 12)
410#define BIC_CoreCnt (1ULL << 13)
411#define BIC_PkgTmp (1ULL << 14)
412#define BIC_GFX_rc6 (1ULL << 15)
413#define BIC_GFXMHz (1ULL << 16)
414#define BIC_Pkgpc2 (1ULL << 17)
415#define BIC_Pkgpc3 (1ULL << 18)
416#define BIC_Pkgpc6 (1ULL << 19)
417#define BIC_Pkgpc7 (1ULL << 20)
Len Brown0f47c082017-01-27 00:50:45 -0500418#define BIC_Pkgpc8 (1ULL << 21)
419#define BIC_Pkgpc9 (1ULL << 22)
420#define BIC_Pkgpc10 (1ULL << 23)
421#define BIC_PkgWatt (1ULL << 24)
422#define BIC_CorWatt (1ULL << 25)
423#define BIC_GFXWatt (1ULL << 26)
424#define BIC_PkgCnt (1ULL << 27)
425#define BIC_RAMWatt (1ULL << 28)
426#define BIC_PKG__ (1ULL << 29)
427#define BIC_RAM__ (1ULL << 30)
428#define BIC_Pkg_J (1ULL << 31)
429#define BIC_Cor_J (1ULL << 32)
430#define BIC_GFX_J (1ULL << 33)
431#define BIC_RAM_J (1ULL << 34)
432#define BIC_Core (1ULL << 35)
433#define BIC_CPU (1ULL << 36)
434#define BIC_Mod_c6 (1ULL << 37)
Len Brown41618e62017-02-09 18:25:22 -0500435#define BIC_sysfs (1ULL << 38)
Len Browna99d8732017-05-20 20:11:55 -0400436#define BIC_Totl_c0 (1ULL << 39)
437#define BIC_Any_c0 (1ULL << 40)
438#define BIC_GFX_c0 (1ULL << 41)
439#define BIC_CPUGFX (1ULL << 42)
Len Brown812db3f2017-02-10 00:25:41 -0500440
441unsigned long long bic_enabled = 0xFFFFFFFFFFFFFFFFULL;
Len Brown41618e62017-02-09 18:25:22 -0500442unsigned long long bic_present = BIC_sysfs;
Len Brown812db3f2017-02-10 00:25:41 -0500443
444#define DO_BIC(COUNTER_NAME) (bic_enabled & bic_present & COUNTER_NAME)
445#define BIC_PRESENT(COUNTER_BIT) (bic_present |= COUNTER_BIT)
Len Brown0f47c082017-01-27 00:50:45 -0500446#define BIC_NOT_PRESENT(COUNTER_BIT) (bic_present &= ~COUNTER_BIT)
Len Brown812db3f2017-02-10 00:25:41 -0500447
Len Browndd778a52017-02-21 23:21:13 -0500448#define MAX_DEFERRED 16
449char *deferred_skip_names[MAX_DEFERRED];
450int deferred_skip_index;
451
452/*
453 * HIDE_LIST - hide this list of counters, show the rest [default]
454 * SHOW_LIST - show this list of counters, hide the rest
455 */
456enum show_hide_mode { SHOW_LIST, HIDE_LIST } global_show_hide_mode = HIDE_LIST;
457
458void help(void)
459{
460 fprintf(outf,
461 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
462 "\n"
463 "Turbostat forks the specified COMMAND and prints statistics\n"
464 "when COMMAND completes.\n"
465 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
466 "to print statistics, until interrupted.\n"
467 "--add add a counter\n"
468 " eg. --add msr0x10,u64,cpu,delta,MY_TSC\n"
469 "--cpu cpu-set limit output to summary plus cpu-set:\n"
470 " {core | package | j,k,l..m,n-p }\n"
471 "--quiet skip decoding system configuration header\n"
472 "--interval sec Override default 5-second measurement interval\n"
473 "--help print this help message\n"
474 "--list list column headers only\n"
475 "--out file create or truncate \"file\" for all output\n"
476 "--version print version information\n"
477 "\n"
478 "For more help, run \"man turbostat\"\n");
479}
480
Len Brown812db3f2017-02-10 00:25:41 -0500481/*
482 * bic_lookup
483 * for all the strings in comma separate name_list,
484 * set the approprate bit in return value.
485 */
Len Browndd778a52017-02-21 23:21:13 -0500486unsigned long long bic_lookup(char *name_list, enum show_hide_mode mode)
Len Brown812db3f2017-02-10 00:25:41 -0500487{
488 int i;
489 unsigned long long retval = 0;
490
491 while (name_list) {
492 char *comma;
493
494 comma = strchr(name_list, ',');
495
496 if (comma)
497 *comma = '\0';
498
499 for (i = 0; i < MAX_BIC; ++i) {
500 if (!strcmp(name_list, bic[i].name)) {
501 retval |= (1ULL << i);
502 break;
503 }
504 }
505 if (i == MAX_BIC) {
Len Browndd778a52017-02-21 23:21:13 -0500506 if (mode == SHOW_LIST) {
507 fprintf(stderr, "Invalid counter name: %s\n", name_list);
508 exit(-1);
509 }
510 deferred_skip_names[deferred_skip_index++] = name_list;
511 if (debug)
512 fprintf(stderr, "deferred \"%s\"\n", name_list);
513 if (deferred_skip_index >= MAX_DEFERRED) {
514 fprintf(stderr, "More than max %d un-recognized --skip options '%s'\n",
515 MAX_DEFERRED, name_list);
516 help();
517 exit(1);
518 }
Len Brown812db3f2017-02-10 00:25:41 -0500519 }
520
521 name_list = comma;
522 if (name_list)
523 name_list++;
524
525 }
526 return retval;
527}
Len Brownfc04cc62014-02-06 00:55:19 -0500528
Len Browndd778a52017-02-21 23:21:13 -0500529
Len Brownc8ade362017-02-15 17:15:11 -0500530void print_header(char *delim)
Len Brown103a8fe2010-10-22 23:53:03 -0400531{
Len Brown388e9c82016-12-22 23:57:55 -0500532 struct msr_counter *mp;
Len Brown6168c2e2017-02-16 23:07:51 -0500533 int printed = 0;
Len Brown388e9c82016-12-22 23:57:55 -0500534
Len Brownf4fdf2b2017-05-27 21:06:55 -0700535 if (debug)
536 outp += sprintf(outp, "usec %s", delim);
Len Brown812db3f2017-02-10 00:25:41 -0500537 if (DO_BIC(BIC_Package))
Len Brown6168c2e2017-02-16 23:07:51 -0500538 outp += sprintf(outp, "%sPackage", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500539 if (DO_BIC(BIC_Core))
Len Brown6168c2e2017-02-16 23:07:51 -0500540 outp += sprintf(outp, "%sCore", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500541 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500542 outp += sprintf(outp, "%sCPU", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500543 if (DO_BIC(BIC_Avg_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500544 outp += sprintf(outp, "%sAvg_MHz", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500545 if (DO_BIC(BIC_Busy))
Len Brown6168c2e2017-02-16 23:07:51 -0500546 outp += sprintf(outp, "%sBusy%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500547 if (DO_BIC(BIC_Bzy_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500548 outp += sprintf(outp, "%sBzy_MHz", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500549 if (DO_BIC(BIC_TSC_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500550 outp += sprintf(outp, "%sTSC_MHz", (printed++ ? delim : ""));
Len Brown1cc21f72015-02-23 00:34:57 -0500551
Len Brown0de6c0d2017-02-15 21:45:40 -0500552 if (DO_BIC(BIC_IRQ)) {
553 if (sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500554 outp += sprintf(outp, "%s IRQ", (printed++ ? delim : ""));
Len Brown0de6c0d2017-02-15 21:45:40 -0500555 else
Len Brown6168c2e2017-02-16 23:07:51 -0500556 outp += sprintf(outp, "%sIRQ", (printed++ ? delim : ""));
Len Brown0de6c0d2017-02-15 21:45:40 -0500557 }
558
Len Brown812db3f2017-02-10 00:25:41 -0500559 if (DO_BIC(BIC_SMI))
Len Brown6168c2e2017-02-16 23:07:51 -0500560 outp += sprintf(outp, "%sSMI", (printed++ ? delim : ""));
Len Brown1cc21f72015-02-23 00:34:57 -0500561
Len Brown388e9c82016-12-22 23:57:55 -0500562 for (mp = sys.tp; mp; mp = mp->next) {
Len Browndd778a52017-02-21 23:21:13 -0500563
Len Brown388e9c82016-12-22 23:57:55 -0500564 if (mp->format == FORMAT_RAW) {
565 if (mp->width == 64)
Len Browndd778a52017-02-21 23:21:13 -0500566 outp += sprintf(outp, "%s%18.18s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500567 else
Len Browndd778a52017-02-21 23:21:13 -0500568 outp += sprintf(outp, "%s%10.10s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500569 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500570 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Browndd778a52017-02-21 23:21:13 -0500571 outp += sprintf(outp, "%s%8s", (printed++ ? delim : ""), mp->name);
Len Brown0de6c0d2017-02-15 21:45:40 -0500572 else
Len Browndd778a52017-02-21 23:21:13 -0500573 outp += sprintf(outp, "%s%s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500574 }
575 }
576
Len Brown41618e62017-02-09 18:25:22 -0500577 if (DO_BIC(BIC_CPU_c1))
Len Brown6168c2e2017-02-16 23:07:51 -0500578 outp += sprintf(outp, "%sCPU%%c1", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500579 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brown6168c2e2017-02-16 23:07:51 -0500580 outp += sprintf(outp, "%sCPU%%c3", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500581 if (DO_BIC(BIC_CPU_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500582 outp += sprintf(outp, "%sCPU%%c6", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500583 if (DO_BIC(BIC_CPU_c7))
Len Brown6168c2e2017-02-16 23:07:51 -0500584 outp += sprintf(outp, "%sCPU%%c7", (printed++ ? delim : ""));
Len Brown678a3bd2017-02-09 22:22:13 -0500585
Len Brown0539ba12017-02-10 00:27:20 -0500586 if (DO_BIC(BIC_Mod_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500587 outp += sprintf(outp, "%sMod%%c6", (printed++ ? delim : ""));
Len Brown678a3bd2017-02-09 22:22:13 -0500588
Len Brown812db3f2017-02-10 00:25:41 -0500589 if (DO_BIC(BIC_CoreTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500590 outp += sprintf(outp, "%sCoreTmp", (printed++ ? delim : ""));
Len Brown388e9c82016-12-22 23:57:55 -0500591
592 for (mp = sys.cp; mp; mp = mp->next) {
593 if (mp->format == FORMAT_RAW) {
594 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500595 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500596 else
Len Brownc8ade362017-02-15 17:15:11 -0500597 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500598 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500599 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
600 outp += sprintf(outp, "%s%8s", delim, mp->name);
601 else
602 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500603 }
604 }
605
Len Brown812db3f2017-02-10 00:25:41 -0500606 if (DO_BIC(BIC_PkgTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500607 outp += sprintf(outp, "%sPkgTmp", (printed++ ? delim : ""));
Len Brown889facb2012-11-08 00:48:57 -0500608
Len Brown812db3f2017-02-10 00:25:41 -0500609 if (DO_BIC(BIC_GFX_rc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500610 outp += sprintf(outp, "%sGFX%%rc6", (printed++ ? delim : ""));
Len Brownfdf676e2016-02-27 01:28:12 -0500611
Len Brown812db3f2017-02-10 00:25:41 -0500612 if (DO_BIC(BIC_GFXMHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500613 outp += sprintf(outp, "%sGFXMHz", (printed++ ? delim : ""));
Len Brown27d47352016-02-27 00:37:54 -0500614
Len Browna99d8732017-05-20 20:11:55 -0400615 if (DO_BIC(BIC_Totl_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500616 outp += sprintf(outp, "%sTotl%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400617 if (DO_BIC(BIC_Any_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500618 outp += sprintf(outp, "%sAny%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400619 if (DO_BIC(BIC_GFX_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500620 outp += sprintf(outp, "%sGFX%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400621 if (DO_BIC(BIC_CPUGFX))
Len Brown6168c2e2017-02-16 23:07:51 -0500622 outp += sprintf(outp, "%sCPUGFX%%", (printed++ ? delim : ""));
Len Brown0b2bb692015-03-26 00:50:30 -0400623
Len Brown0f47c082017-01-27 00:50:45 -0500624 if (DO_BIC(BIC_Pkgpc2))
Len Brown6168c2e2017-02-16 23:07:51 -0500625 outp += sprintf(outp, "%sPkg%%pc2", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500626 if (DO_BIC(BIC_Pkgpc3))
Len Brown6168c2e2017-02-16 23:07:51 -0500627 outp += sprintf(outp, "%sPkg%%pc3", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500628 if (DO_BIC(BIC_Pkgpc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500629 outp += sprintf(outp, "%sPkg%%pc6", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500630 if (DO_BIC(BIC_Pkgpc7))
Len Brown6168c2e2017-02-16 23:07:51 -0500631 outp += sprintf(outp, "%sPkg%%pc7", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500632 if (DO_BIC(BIC_Pkgpc8))
Len Brown6168c2e2017-02-16 23:07:51 -0500633 outp += sprintf(outp, "%sPkg%%pc8", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500634 if (DO_BIC(BIC_Pkgpc9))
Len Brown6168c2e2017-02-16 23:07:51 -0500635 outp += sprintf(outp, "%sPkg%%pc9", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500636 if (DO_BIC(BIC_Pkgpc10))
Len Brown6168c2e2017-02-16 23:07:51 -0500637 outp += sprintf(outp, "%sPk%%pc10", (printed++ ? delim : ""));
Len Brown103a8fe2010-10-22 23:53:03 -0400638
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800639 if (do_rapl && !rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500640 if (DO_BIC(BIC_PkgWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500641 outp += sprintf(outp, "%sPkgWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500642 if (DO_BIC(BIC_CorWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500643 outp += sprintf(outp, "%sCorWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500644 if (DO_BIC(BIC_GFXWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500645 outp += sprintf(outp, "%sGFXWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500646 if (DO_BIC(BIC_RAMWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500647 outp += sprintf(outp, "%sRAMWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500648 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -0500649 outp += sprintf(outp, "%sPKG_%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500650 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -0500651 outp += sprintf(outp, "%sRAM_%%", (printed++ ? delim : ""));
Len Brownd7899442015-01-23 00:12:33 -0500652 } else if (do_rapl && rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500653 if (DO_BIC(BIC_Pkg_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500654 outp += sprintf(outp, "%sPkg_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500655 if (DO_BIC(BIC_Cor_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500656 outp += sprintf(outp, "%sCor_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500657 if (DO_BIC(BIC_GFX_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500658 outp += sprintf(outp, "%sGFX_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500659 if (DO_BIC(BIC_RAM_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500660 outp += sprintf(outp, "%sRAM_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500661 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -0500662 outp += sprintf(outp, "%sPKG_%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500663 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -0500664 outp += sprintf(outp, "%sRAM_%%", (printed++ ? delim : ""));
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800665 }
Len Brown388e9c82016-12-22 23:57:55 -0500666 for (mp = sys.pp; mp; mp = mp->next) {
667 if (mp->format == FORMAT_RAW) {
668 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500669 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500670 else
Len Brownc8ade362017-02-15 17:15:11 -0500671 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500672 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500673 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
674 outp += sprintf(outp, "%s%8s", delim, mp->name);
675 else
676 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500677 }
678 }
679
Len Brownc98d5d92012-06-04 00:56:40 -0400680 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400681}
682
Len Brownc98d5d92012-06-04 00:56:40 -0400683int dump_counters(struct thread_data *t, struct core_data *c,
684 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400685{
Len Brown388e9c82016-12-22 23:57:55 -0500686 int i;
687 struct msr_counter *mp;
688
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200689 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400690
Len Brownc98d5d92012-06-04 00:56:40 -0400691 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200692 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
693 t->cpu_id, t->flags);
694 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
695 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
696 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
697 outp += sprintf(outp, "c1: %016llX\n", t->c1);
Len Brown6886fee2016-12-24 15:18:37 -0500698
Len Brown812db3f2017-02-10 00:25:41 -0500699 if (DO_BIC(BIC_IRQ))
Len Brown0de6c0d2017-02-15 21:45:40 -0500700 outp += sprintf(outp, "IRQ: %lld\n", t->irq_count);
Len Brown812db3f2017-02-10 00:25:41 -0500701 if (DO_BIC(BIC_SMI))
Len Brown218f0e82017-02-14 22:07:52 -0500702 outp += sprintf(outp, "SMI: %d\n", t->smi_count);
Len Brown388e9c82016-12-22 23:57:55 -0500703
704 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
705 outp += sprintf(outp, "tADDED [%d] msr0x%x: %08llX\n",
706 i, mp->msr_num, t->counter[i]);
707 }
Len Brownc98d5d92012-06-04 00:56:40 -0400708 }
Len Brown103a8fe2010-10-22 23:53:03 -0400709
Len Brownc98d5d92012-06-04 00:56:40 -0400710 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200711 outp += sprintf(outp, "core: %d\n", c->core_id);
712 outp += sprintf(outp, "c3: %016llX\n", c->c3);
713 outp += sprintf(outp, "c6: %016llX\n", c->c6);
714 outp += sprintf(outp, "c7: %016llX\n", c->c7);
715 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500716
717 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
718 outp += sprintf(outp, "cADDED [%d] msr0x%x: %08llX\n",
719 i, mp->msr_num, c->counter[i]);
720 }
Len Brown0539ba12017-02-10 00:27:20 -0500721 outp += sprintf(outp, "mc6_us: %016llX\n", c->mc6_us);
Len Brownc98d5d92012-06-04 00:56:40 -0400722 }
723
724 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200725 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400726
727 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
728 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
729 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
730 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
731
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200732 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brown0f47c082017-01-27 00:50:45 -0500733 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -0500734 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
Len Brown0f47c082017-01-27 00:50:45 -0500735 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -0500736 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
Len Brown0f47c082017-01-27 00:50:45 -0500737 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -0500738 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200739 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
740 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
741 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
742 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
743 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
744 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
745 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
746 outp += sprintf(outp, "Throttle PKG: %0X\n",
747 p->rapl_pkg_perf_status);
748 outp += sprintf(outp, "Throttle RAM: %0X\n",
749 p->rapl_dram_perf_status);
750 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500751
752 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
753 outp += sprintf(outp, "pADDED [%d] msr0x%x: %08llX\n",
754 i, mp->msr_num, p->counter[i]);
755 }
Len Brownc98d5d92012-06-04 00:56:40 -0400756 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200757
758 outp += sprintf(outp, "\n");
759
Len Brownc98d5d92012-06-04 00:56:40 -0400760 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400761}
762
Len Browne23da032012-02-06 18:37:16 -0500763/*
764 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500765 */
Len Brownc98d5d92012-06-04 00:56:40 -0400766int format_counters(struct thread_data *t, struct core_data *c,
767 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400768{
Len Brown008d396e2017-02-10 00:29:51 -0500769 double interval_float, tsc;
Len Brownfc04cc62014-02-06 00:55:19 -0500770 char *fmt8;
Len Brown388e9c82016-12-22 23:57:55 -0500771 int i;
772 struct msr_counter *mp;
Len Brown6168c2e2017-02-16 23:07:51 -0500773 char *delim = "\t";
774 int printed = 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400775
Len Brownc98d5d92012-06-04 00:56:40 -0400776 /* if showing only 1st thread in core and this isn't one, bail out */
777 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
778 return 0;
779
780 /* if showing only 1st thread in pkg and this isn't one, bail out */
781 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
782 return 0;
783
Len Brown1ef7d212017-02-10 23:54:15 -0500784 /*if not summary line and --cpu is used */
785 if ((t != &average.threads) &&
786 (cpu_subset && !CPU_ISSET_S(t->cpu_id, cpu_subset_size, cpu_subset)))
787 return 0;
788
Len Brownf4fdf2b2017-05-27 21:06:55 -0700789 if (debug) {
790 /* on each row, print how many usec each timestamp took to gather */
791 struct timeval tv;
792
793 timersub(&t->tv_end, &t->tv_begin, &tv);
794 outp += sprintf(outp, "%5ld\t", tv.tv_sec * 1000000 + tv.tv_usec);
795 }
796
Len Brown103a8fe2010-10-22 23:53:03 -0400797 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
798
Len Brown008d396e2017-02-10 00:29:51 -0500799 tsc = t->tsc * tsc_tweak;
800
Len Brownc98d5d92012-06-04 00:56:40 -0400801 /* topo columns, print blanks on 1st (average) line */
802 if (t == &average.threads) {
Len Brown812db3f2017-02-10 00:25:41 -0500803 if (DO_BIC(BIC_Package))
Len Brown6168c2e2017-02-16 23:07:51 -0500804 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500805 if (DO_BIC(BIC_Core))
Len Brown6168c2e2017-02-16 23:07:51 -0500806 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500807 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500808 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown103a8fe2010-10-22 23:53:03 -0400809 } else {
Len Brown812db3f2017-02-10 00:25:41 -0500810 if (DO_BIC(BIC_Package)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400811 if (p)
Len Brown6168c2e2017-02-16 23:07:51 -0500812 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400813 else
Len Brown6168c2e2017-02-16 23:07:51 -0500814 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brownc98d5d92012-06-04 00:56:40 -0400815 }
Len Brown812db3f2017-02-10 00:25:41 -0500816 if (DO_BIC(BIC_Core)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400817 if (c)
Len Brown6168c2e2017-02-16 23:07:51 -0500818 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400819 else
Len Brown6168c2e2017-02-16 23:07:51 -0500820 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brownc98d5d92012-06-04 00:56:40 -0400821 }
Len Brown812db3f2017-02-10 00:25:41 -0500822 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500823 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400824 }
Len Brownfc04cc62014-02-06 00:55:19 -0500825
Len Brown812db3f2017-02-10 00:25:41 -0500826 if (DO_BIC(BIC_Avg_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500827 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""),
Len Brownfc04cc62014-02-06 00:55:19 -0500828 1.0 / units * t->aperf / interval_float);
829
Len Brown812db3f2017-02-10 00:25:41 -0500830 if (DO_BIC(BIC_Busy))
Len Brown6168c2e2017-02-16 23:07:51 -0500831 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->mperf/tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400832
Len Brown812db3f2017-02-10 00:25:41 -0500833 if (DO_BIC(BIC_Bzy_MHz)) {
Len Brown21ed5572015-10-19 22:37:40 -0400834 if (has_base_hz)
Len Brown6168c2e2017-02-16 23:07:51 -0500835 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""), base_hz / units * t->aperf / t->mperf);
Len Brown21ed5572015-10-19 22:37:40 -0400836 else
Len Brown6168c2e2017-02-16 23:07:51 -0500837 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""),
Len Brown008d396e2017-02-10 00:29:51 -0500838 tsc / units * t->aperf / t->mperf / interval_float);
Len Brown21ed5572015-10-19 22:37:40 -0400839 }
Len Brown103a8fe2010-10-22 23:53:03 -0400840
Len Brown812db3f2017-02-10 00:25:41 -0500841 if (DO_BIC(BIC_TSC_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500842 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""), 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400843
Len Brown562a2d32016-02-26 23:48:05 -0500844 /* IRQ */
Len Brown0de6c0d2017-02-15 21:45:40 -0500845 if (DO_BIC(BIC_IRQ)) {
846 if (sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500847 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), t->irq_count);
Len Brown0de6c0d2017-02-15 21:45:40 -0500848 else
Len Brown6168c2e2017-02-16 23:07:51 -0500849 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), t->irq_count);
Len Brown0de6c0d2017-02-15 21:45:40 -0500850 }
Len Brown562a2d32016-02-26 23:48:05 -0500851
Len Brown1cc21f72015-02-23 00:34:57 -0500852 /* SMI */
Len Brown812db3f2017-02-10 00:25:41 -0500853 if (DO_BIC(BIC_SMI))
Len Brown6168c2e2017-02-16 23:07:51 -0500854 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), t->smi_count);
Len Brown1cc21f72015-02-23 00:34:57 -0500855
Len Brown678a3bd2017-02-09 22:22:13 -0500856 /* Added counters */
857 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
858 if (mp->format == FORMAT_RAW) {
859 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -0500860 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500861 else
Len Brown6168c2e2017-02-16 23:07:51 -0500862 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500863 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500864 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500865 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), t->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -0500866 else
Len Brown6168c2e2017-02-16 23:07:51 -0500867 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500868 } else if (mp->format == FORMAT_PERCENT) {
Len Brown41618e62017-02-09 18:25:22 -0500869 if (mp->type == COUNTER_USEC)
Len Brown6168c2e2017-02-16 23:07:51 -0500870 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), t->counter[i]/interval_float/10000);
Len Brown41618e62017-02-09 18:25:22 -0500871 else
Len Brown6168c2e2017-02-16 23:07:51 -0500872 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->counter[i]/tsc);
Len Brown678a3bd2017-02-09 22:22:13 -0500873 }
874 }
875
Len Brown41618e62017-02-09 18:25:22 -0500876 /* C1 */
877 if (DO_BIC(BIC_CPU_c1))
Len Brown6168c2e2017-02-16 23:07:51 -0500878 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->c1/tsc);
Len Brown41618e62017-02-09 18:25:22 -0500879
880
Len Brownc98d5d92012-06-04 00:56:40 -0400881 /* print per-core data only for 1st thread in core */
882 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
883 goto done;
884
Len Brown812db3f2017-02-10 00:25:41 -0500885 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brown6168c2e2017-02-16 23:07:51 -0500886 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c3/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500887 if (DO_BIC(BIC_CPU_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500888 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c6/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500889 if (DO_BIC(BIC_CPU_c7))
Len Brown6168c2e2017-02-16 23:07:51 -0500890 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c7/tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400891
Len Brown0539ba12017-02-10 00:27:20 -0500892 /* Mod%c6 */
893 if (DO_BIC(BIC_Mod_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500894 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->mc6_us / tsc);
Len Brown0539ba12017-02-10 00:27:20 -0500895
Len Brown812db3f2017-02-10 00:25:41 -0500896 if (DO_BIC(BIC_CoreTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500897 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500898
Len Brown388e9c82016-12-22 23:57:55 -0500899 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
900 if (mp->format == FORMAT_RAW) {
901 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -0500902 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500903 else
Len Brown6168c2e2017-02-16 23:07:51 -0500904 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500905 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500906 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500907 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), c->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -0500908 else
Len Brown6168c2e2017-02-16 23:07:51 -0500909 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500910 } else if (mp->format == FORMAT_PERCENT) {
Len Brown6168c2e2017-02-16 23:07:51 -0500911 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -0500912 }
913 }
914
Len Brownc98d5d92012-06-04 00:56:40 -0400915 /* print per-package data only for 1st core in package */
916 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
917 goto done;
918
Len Brown0b2bb692015-03-26 00:50:30 -0400919 /* PkgTmp */
Len Brown812db3f2017-02-10 00:25:41 -0500920 if (DO_BIC(BIC_PkgTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500921 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500922
Len Brownfdf676e2016-02-27 01:28:12 -0500923 /* GFXrc6 */
Len Brown812db3f2017-02-10 00:25:41 -0500924 if (DO_BIC(BIC_GFX_rc6)) {
Len Brownba3dec92016-04-22 20:31:46 -0400925 if (p->gfx_rc6_ms == -1) { /* detect GFX counter reset */
Len Brown6168c2e2017-02-16 23:07:51 -0500926 outp += sprintf(outp, "%s**.**", (printed++ ? delim : ""));
Len Brown9185e982016-04-06 17:16:00 -0400927 } else {
Len Brown6168c2e2017-02-16 23:07:51 -0500928 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""),
Len Brown9185e982016-04-06 17:16:00 -0400929 p->gfx_rc6_ms / 10.0 / interval_float);
930 }
931 }
Len Brownfdf676e2016-02-27 01:28:12 -0500932
Len Brown27d47352016-02-27 00:37:54 -0500933 /* GFXMHz */
Len Brown812db3f2017-02-10 00:25:41 -0500934 if (DO_BIC(BIC_GFXMHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500935 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->gfx_mhz);
Len Brown27d47352016-02-27 00:37:54 -0500936
Len Brown0b2bb692015-03-26 00:50:30 -0400937 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
Len Browna99d8732017-05-20 20:11:55 -0400938 if (DO_BIC(BIC_Totl_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500939 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_wtd_core_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400940 if (DO_BIC(BIC_Any_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500941 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_any_core_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400942 if (DO_BIC(BIC_GFX_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500943 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_any_gfxe_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400944 if (DO_BIC(BIC_CPUGFX))
Len Brown6168c2e2017-02-16 23:07:51 -0500945 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_both_core_gfxe_c0/tsc);
Len Brown0b2bb692015-03-26 00:50:30 -0400946
Len Brown0f47c082017-01-27 00:50:45 -0500947 if (DO_BIC(BIC_Pkgpc2))
Len Brown6168c2e2017-02-16 23:07:51 -0500948 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc2/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500949 if (DO_BIC(BIC_Pkgpc3))
Len Brown6168c2e2017-02-16 23:07:51 -0500950 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc3/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500951 if (DO_BIC(BIC_Pkgpc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500952 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc6/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500953 if (DO_BIC(BIC_Pkgpc7))
Len Brown6168c2e2017-02-16 23:07:51 -0500954 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc7/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500955 if (DO_BIC(BIC_Pkgpc8))
Len Brown6168c2e2017-02-16 23:07:51 -0500956 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc8/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500957 if (DO_BIC(BIC_Pkgpc9))
Len Brown6168c2e2017-02-16 23:07:51 -0500958 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc9/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500959 if (DO_BIC(BIC_Pkgpc10))
Len Brown6168c2e2017-02-16 23:07:51 -0500960 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc10/tsc);
Len Brown889facb2012-11-08 00:48:57 -0500961
962 /*
963 * If measurement interval exceeds minimum RAPL Joule Counter range,
964 * indicate that results are suspect by printing "**" in fraction place.
965 */
Len Brownfc04cc62014-02-06 00:55:19 -0500966 if (interval_float < rapl_joule_counter_range)
Len Brown6168c2e2017-02-16 23:07:51 -0500967 fmt8 = "%s%.2f";
Len Brownfc04cc62014-02-06 00:55:19 -0500968 else
Len Browne975db52016-04-06 23:56:02 -0400969 fmt8 = "%6.0f**";
Len Brown889facb2012-11-08 00:48:57 -0500970
Len Brown812db3f2017-02-10 00:25:41 -0500971 if (DO_BIC(BIC_PkgWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500972 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_pkg * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500973 if (DO_BIC(BIC_CorWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500974 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_cores * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500975 if (DO_BIC(BIC_GFXWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500976 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_gfx * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500977 if (DO_BIC(BIC_RAMWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500978 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_dram * rapl_dram_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500979 if (DO_BIC(BIC_Pkg_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500980 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_pkg * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -0500981 if (DO_BIC(BIC_Cor_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500982 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_cores * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -0500983 if (DO_BIC(BIC_GFX_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500984 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_gfx * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -0500985 if (DO_BIC(BIC_RAM_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500986 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_dram * rapl_dram_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -0500987 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -0500988 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), 100.0 * p->rapl_pkg_perf_status * rapl_time_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500989 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -0500990 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), 100.0 * p->rapl_dram_perf_status * rapl_time_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -0500991
Len Brown388e9c82016-12-22 23:57:55 -0500992 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
993 if (mp->format == FORMAT_RAW) {
994 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -0500995 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500996 else
Len Brown6168c2e2017-02-16 23:07:51 -0500997 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500998 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500999 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -05001000 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), p->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -05001001 else
Len Brown6168c2e2017-02-16 23:07:51 -05001002 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -05001003 } else if (mp->format == FORMAT_PERCENT) {
Len Brown6168c2e2017-02-16 23:07:51 -05001004 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -05001005 }
1006 }
1007
Len Brownc98d5d92012-06-04 00:56:40 -04001008done:
Len Brownc98d5d92012-06-04 00:56:40 -04001009 outp += sprintf(outp, "\n");
1010
1011 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001012}
1013
Len Brownb7d8c142016-02-13 23:36:17 -05001014void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001015{
Len Brownb7d8c142016-02-13 23:36:17 -05001016 FILE *filep;
1017
1018 if (outf == stderr)
1019 filep = stdout;
1020 else
1021 filep = outf;
1022
1023 fputs(output_buffer, filep);
1024 fflush(filep);
1025
Len Brownc98d5d92012-06-04 00:56:40 -04001026 outp = output_buffer;
1027}
Len Brownb7d8c142016-02-13 23:36:17 -05001028void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -04001029{
Len Brownb7d8c142016-02-13 23:36:17 -05001030 fputs(output_buffer, outf);
1031 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -04001032 outp = output_buffer;
1033}
1034void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1035{
Len Browne23da032012-02-06 18:37:16 -05001036 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -04001037
Len Browne23da032012-02-06 18:37:16 -05001038 if (!printed || !summary_only)
Len Brownc8ade362017-02-15 17:15:11 -05001039 print_header("\t");
Len Brown103a8fe2010-10-22 23:53:03 -04001040
Len Brownc98d5d92012-06-04 00:56:40 -04001041 if (topo.num_cpus > 1)
1042 format_counters(&average.threads, &average.cores,
1043 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -04001044
Len Browne23da032012-02-06 18:37:16 -05001045 printed = 1;
1046
1047 if (summary_only)
1048 return;
1049
Len Brownc98d5d92012-06-04 00:56:40 -04001050 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -04001051}
1052
Len Brown889facb2012-11-08 00:48:57 -05001053#define DELTA_WRAP32(new, old) \
1054 if (new > old) { \
1055 old = new - old; \
1056 } else { \
1057 old = 0x100000000 + new - old; \
1058 }
1059
Len Brownba3dec92016-04-22 20:31:46 -04001060int
Len Brownc98d5d92012-06-04 00:56:40 -04001061delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -04001062{
Len Brown388e9c82016-12-22 23:57:55 -05001063 int i;
1064 struct msr_counter *mp;
Len Brown0b2bb692015-03-26 00:50:30 -04001065
Len Browna99d8732017-05-20 20:11:55 -04001066
1067 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001068 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001069 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001070 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001071 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001072 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
Len Browna99d8732017-05-20 20:11:55 -04001073 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001074 old->pkg_both_core_gfxe_c0 = new->pkg_both_core_gfxe_c0 - old->pkg_both_core_gfxe_c0;
Len Browna99d8732017-05-20 20:11:55 -04001075
Len Brownc98d5d92012-06-04 00:56:40 -04001076 old->pc2 = new->pc2 - old->pc2;
Len Brown0f47c082017-01-27 00:50:45 -05001077 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001078 old->pc3 = new->pc3 - old->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001079 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001080 old->pc6 = new->pc6 - old->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001081 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001082 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001083 old->pc8 = new->pc8 - old->pc8;
1084 old->pc9 = new->pc9 - old->pc9;
1085 old->pc10 = new->pc10 - old->pc10;
Len Brown889facb2012-11-08 00:48:57 -05001086 old->pkg_temp_c = new->pkg_temp_c;
1087
Len Brown9185e982016-04-06 17:16:00 -04001088 /* flag an error when rc6 counter resets/wraps */
1089 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
1090 old->gfx_rc6_ms = -1;
1091 else
1092 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
1093
Len Brown27d47352016-02-27 00:37:54 -05001094 old->gfx_mhz = new->gfx_mhz;
1095
Len Brown889facb2012-11-08 00:48:57 -05001096 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
1097 DELTA_WRAP32(new->energy_cores, old->energy_cores);
1098 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
1099 DELTA_WRAP32(new->energy_dram, old->energy_dram);
1100 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
1101 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownba3dec92016-04-22 20:31:46 -04001102
Len Brown388e9c82016-12-22 23:57:55 -05001103 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1104 if (mp->format == FORMAT_RAW)
1105 old->counter[i] = new->counter[i];
1106 else
1107 old->counter[i] = new->counter[i] - old->counter[i];
1108 }
1109
Len Brownba3dec92016-04-22 20:31:46 -04001110 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001111}
Len Brown103a8fe2010-10-22 23:53:03 -04001112
Len Brownc98d5d92012-06-04 00:56:40 -04001113void
1114delta_core(struct core_data *new, struct core_data *old)
1115{
Len Brown388e9c82016-12-22 23:57:55 -05001116 int i;
1117 struct msr_counter *mp;
1118
Len Brownc98d5d92012-06-04 00:56:40 -04001119 old->c3 = new->c3 - old->c3;
1120 old->c6 = new->c6 - old->c6;
1121 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -05001122 old->core_temp_c = new->core_temp_c;
Len Brown0539ba12017-02-10 00:27:20 -05001123 old->mc6_us = new->mc6_us - old->mc6_us;
Len Brown388e9c82016-12-22 23:57:55 -05001124
1125 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1126 if (mp->format == FORMAT_RAW)
1127 old->counter[i] = new->counter[i];
1128 else
1129 old->counter[i] = new->counter[i] - old->counter[i];
1130 }
Len Brownc98d5d92012-06-04 00:56:40 -04001131}
Len Brown103a8fe2010-10-22 23:53:03 -04001132
Len Brownc3ae3312012-06-13 21:31:46 -04001133/*
1134 * old = new - old
1135 */
Len Brownba3dec92016-04-22 20:31:46 -04001136int
Len Brownc98d5d92012-06-04 00:56:40 -04001137delta_thread(struct thread_data *new, struct thread_data *old,
1138 struct core_data *core_delta)
1139{
Len Brown388e9c82016-12-22 23:57:55 -05001140 int i;
1141 struct msr_counter *mp;
1142
Len Brownc98d5d92012-06-04 00:56:40 -04001143 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -04001144
Len Brownc98d5d92012-06-04 00:56:40 -04001145 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -07001146 if (old->tsc < (1000 * 1000))
1147 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
1148 "You can disable all c-states by booting with \"idle=poll\"\n"
1149 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -04001150
Len Brownc98d5d92012-06-04 00:56:40 -04001151 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -04001152
Len Brown812db3f2017-02-10 00:25:41 -05001153 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Browna7296172015-01-23 01:33:58 -05001154 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
1155 old->aperf = new->aperf - old->aperf;
1156 old->mperf = new->mperf - old->mperf;
1157 } else {
Len Brownba3dec92016-04-22 20:31:46 -04001158 return -1;
Len Brownc98d5d92012-06-04 00:56:40 -04001159 }
Len Brownc98d5d92012-06-04 00:56:40 -04001160 }
Len Brown103a8fe2010-10-22 23:53:03 -04001161
Len Brown103a8fe2010-10-22 23:53:03 -04001162
Len Brown144b44b2013-11-09 00:30:16 -05001163 if (use_c1_residency_msr) {
1164 /*
1165 * Some models have a dedicated C1 residency MSR,
1166 * which should be more accurate than the derivation below.
1167 */
1168 } else {
1169 /*
1170 * As counter collection is not atomic,
1171 * it is possible for mperf's non-halted cycles + idle states
1172 * to exceed TSC's all cycles: show c1 = 0% in that case.
1173 */
Len Brown95149362017-04-12 19:44:51 -04001174 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > (old->tsc * tsc_tweak))
Len Brown144b44b2013-11-09 00:30:16 -05001175 old->c1 = 0;
1176 else {
1177 /* normal case, derive c1 */
Len Brown008d396e2017-02-10 00:29:51 -05001178 old->c1 = (old->tsc * tsc_tweak) - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -04001179 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -05001180 }
Len Brownc98d5d92012-06-04 00:56:40 -04001181 }
Len Brownc3ae3312012-06-13 21:31:46 -04001182
Len Brownc98d5d92012-06-04 00:56:40 -04001183 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -05001184 if (debug > 1)
1185 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -04001186 old->mperf = 1; /* divide by 0 protection */
1187 }
1188
Len Brown812db3f2017-02-10 00:25:41 -05001189 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001190 old->irq_count = new->irq_count - old->irq_count;
1191
Len Brown812db3f2017-02-10 00:25:41 -05001192 if (DO_BIC(BIC_SMI))
Len Brown1ed51012013-02-10 17:19:24 -05001193 old->smi_count = new->smi_count - old->smi_count;
Len Brownba3dec92016-04-22 20:31:46 -04001194
Len Brown388e9c82016-12-22 23:57:55 -05001195 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1196 if (mp->format == FORMAT_RAW)
1197 old->counter[i] = new->counter[i];
1198 else
1199 old->counter[i] = new->counter[i] - old->counter[i];
1200 }
Len Brownba3dec92016-04-22 20:31:46 -04001201 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001202}
1203
1204int delta_cpu(struct thread_data *t, struct core_data *c,
1205 struct pkg_data *p, struct thread_data *t2,
1206 struct core_data *c2, struct pkg_data *p2)
1207{
Len Brownba3dec92016-04-22 20:31:46 -04001208 int retval = 0;
1209
Len Brownc98d5d92012-06-04 00:56:40 -04001210 /* calculate core delta only for 1st thread in core */
1211 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
1212 delta_core(c, c2);
1213
1214 /* always calculate thread delta */
Len Brownba3dec92016-04-22 20:31:46 -04001215 retval = delta_thread(t, t2, c2); /* c2 is core delta */
1216 if (retval)
1217 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001218
1219 /* calculate package delta only for 1st core in package */
1220 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
Len Brownba3dec92016-04-22 20:31:46 -04001221 retval = delta_package(p, p2);
Len Brownc98d5d92012-06-04 00:56:40 -04001222
Len Brownba3dec92016-04-22 20:31:46 -04001223 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001224}
1225
1226void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1227{
Len Brown388e9c82016-12-22 23:57:55 -05001228 int i;
1229 struct msr_counter *mp;
1230
Len Brownc98d5d92012-06-04 00:56:40 -04001231 t->tsc = 0;
1232 t->aperf = 0;
1233 t->mperf = 0;
1234 t->c1 = 0;
1235
Len Brown562a2d32016-02-26 23:48:05 -05001236 t->irq_count = 0;
1237 t->smi_count = 0;
1238
Len Brownc98d5d92012-06-04 00:56:40 -04001239 /* tells format_counters to dump all fields from this set */
1240 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
1241
1242 c->c3 = 0;
1243 c->c6 = 0;
1244 c->c7 = 0;
Len Brown0539ba12017-02-10 00:27:20 -05001245 c->mc6_us = 0;
Len Brown889facb2012-11-08 00:48:57 -05001246 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001247
Len Brown0b2bb692015-03-26 00:50:30 -04001248 p->pkg_wtd_core_c0 = 0;
1249 p->pkg_any_core_c0 = 0;
1250 p->pkg_any_gfxe_c0 = 0;
1251 p->pkg_both_core_gfxe_c0 = 0;
1252
Len Brownc98d5d92012-06-04 00:56:40 -04001253 p->pc2 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001254 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001255 p->pc3 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001256 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001257 p->pc6 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001258 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001259 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001260 p->pc8 = 0;
1261 p->pc9 = 0;
1262 p->pc10 = 0;
Len Brown889facb2012-11-08 00:48:57 -05001263
1264 p->energy_pkg = 0;
1265 p->energy_dram = 0;
1266 p->energy_cores = 0;
1267 p->energy_gfx = 0;
1268 p->rapl_pkg_perf_status = 0;
1269 p->rapl_dram_perf_status = 0;
1270 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -05001271
Len Brownfdf676e2016-02-27 01:28:12 -05001272 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -05001273 p->gfx_mhz = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001274 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next)
1275 t->counter[i] = 0;
1276
1277 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next)
1278 c->counter[i] = 0;
1279
1280 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next)
1281 p->counter[i] = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001282}
1283int sum_counters(struct thread_data *t, struct core_data *c,
1284 struct pkg_data *p)
1285{
Len Brown388e9c82016-12-22 23:57:55 -05001286 int i;
1287 struct msr_counter *mp;
1288
Len Brownc98d5d92012-06-04 00:56:40 -04001289 average.threads.tsc += t->tsc;
1290 average.threads.aperf += t->aperf;
1291 average.threads.mperf += t->mperf;
1292 average.threads.c1 += t->c1;
1293
Len Brown562a2d32016-02-26 23:48:05 -05001294 average.threads.irq_count += t->irq_count;
1295 average.threads.smi_count += t->smi_count;
1296
Len Brown388e9c82016-12-22 23:57:55 -05001297 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1298 if (mp->format == FORMAT_RAW)
1299 continue;
1300 average.threads.counter[i] += t->counter[i];
1301 }
1302
Len Brownc98d5d92012-06-04 00:56:40 -04001303 /* sum per-core values only for 1st thread in core */
1304 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1305 return 0;
1306
1307 average.cores.c3 += c->c3;
1308 average.cores.c6 += c->c6;
1309 average.cores.c7 += c->c7;
Len Brown0539ba12017-02-10 00:27:20 -05001310 average.cores.mc6_us += c->mc6_us;
Len Brownc98d5d92012-06-04 00:56:40 -04001311
Len Brown889facb2012-11-08 00:48:57 -05001312 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
1313
Len Brown388e9c82016-12-22 23:57:55 -05001314 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1315 if (mp->format == FORMAT_RAW)
1316 continue;
1317 average.cores.counter[i] += c->counter[i];
1318 }
1319
Len Brownc98d5d92012-06-04 00:56:40 -04001320 /* sum per-pkg values only for 1st core in pkg */
1321 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1322 return 0;
1323
Len Browna99d8732017-05-20 20:11:55 -04001324 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001325 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001326 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001327 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001328 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001329 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
Len Browna99d8732017-05-20 20:11:55 -04001330 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001331 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
Len Brown0b2bb692015-03-26 00:50:30 -04001332
Len Brownc98d5d92012-06-04 00:56:40 -04001333 average.packages.pc2 += p->pc2;
Len Brown0f47c082017-01-27 00:50:45 -05001334 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001335 average.packages.pc3 += p->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001336 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001337 average.packages.pc6 += p->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001338 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001339 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001340 average.packages.pc8 += p->pc8;
1341 average.packages.pc9 += p->pc9;
1342 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -04001343
Len Brown889facb2012-11-08 00:48:57 -05001344 average.packages.energy_pkg += p->energy_pkg;
1345 average.packages.energy_dram += p->energy_dram;
1346 average.packages.energy_cores += p->energy_cores;
1347 average.packages.energy_gfx += p->energy_gfx;
1348
Len Brownfdf676e2016-02-27 01:28:12 -05001349 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -05001350 average.packages.gfx_mhz = p->gfx_mhz;
1351
Len Brown889facb2012-11-08 00:48:57 -05001352 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
1353
1354 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
1355 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brown388e9c82016-12-22 23:57:55 -05001356
1357 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1358 if (mp->format == FORMAT_RAW)
1359 continue;
1360 average.packages.counter[i] += p->counter[i];
1361 }
Len Brownc98d5d92012-06-04 00:56:40 -04001362 return 0;
1363}
1364/*
1365 * sum the counters for all cpus in the system
1366 * compute the weighted average
1367 */
1368void compute_average(struct thread_data *t, struct core_data *c,
1369 struct pkg_data *p)
1370{
Len Brown388e9c82016-12-22 23:57:55 -05001371 int i;
1372 struct msr_counter *mp;
1373
Len Brownc98d5d92012-06-04 00:56:40 -04001374 clear_counters(&average.threads, &average.cores, &average.packages);
1375
1376 for_all_cpus(sum_counters, t, c, p);
1377
1378 average.threads.tsc /= topo.num_cpus;
1379 average.threads.aperf /= topo.num_cpus;
1380 average.threads.mperf /= topo.num_cpus;
1381 average.threads.c1 /= topo.num_cpus;
1382
Len Brown0de6c0d2017-02-15 21:45:40 -05001383 if (average.threads.irq_count > 9999999)
1384 sums_need_wide_columns = 1;
1385
Len Brownc98d5d92012-06-04 00:56:40 -04001386 average.cores.c3 /= topo.num_cores;
1387 average.cores.c6 /= topo.num_cores;
1388 average.cores.c7 /= topo.num_cores;
Len Brown0539ba12017-02-10 00:27:20 -05001389 average.cores.mc6_us /= topo.num_cores;
Len Brownc98d5d92012-06-04 00:56:40 -04001390
Len Browna99d8732017-05-20 20:11:55 -04001391 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001392 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001393 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001394 average.packages.pkg_any_core_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001395 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001396 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001397 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001398 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
Len Brown0b2bb692015-03-26 00:50:30 -04001399
Len Brownc98d5d92012-06-04 00:56:40 -04001400 average.packages.pc2 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001401 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001402 average.packages.pc3 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001403 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001404 average.packages.pc6 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001405 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001406 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001407
1408 average.packages.pc8 /= topo.num_packages;
1409 average.packages.pc9 /= topo.num_packages;
1410 average.packages.pc10 /= topo.num_packages;
Len Brown388e9c82016-12-22 23:57:55 -05001411
1412 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1413 if (mp->format == FORMAT_RAW)
1414 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001415 if (mp->type == COUNTER_ITEMS) {
1416 if (average.threads.counter[i] > 9999999)
1417 sums_need_wide_columns = 1;
Len Brown41618e62017-02-09 18:25:22 -05001418 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001419 }
Len Brown388e9c82016-12-22 23:57:55 -05001420 average.threads.counter[i] /= topo.num_cpus;
1421 }
1422 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1423 if (mp->format == FORMAT_RAW)
1424 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001425 if (mp->type == COUNTER_ITEMS) {
1426 if (average.cores.counter[i] > 9999999)
1427 sums_need_wide_columns = 1;
1428 }
Len Brown388e9c82016-12-22 23:57:55 -05001429 average.cores.counter[i] /= topo.num_cores;
1430 }
1431 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1432 if (mp->format == FORMAT_RAW)
1433 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001434 if (mp->type == COUNTER_ITEMS) {
1435 if (average.packages.counter[i] > 9999999)
1436 sums_need_wide_columns = 1;
1437 }
Len Brown388e9c82016-12-22 23:57:55 -05001438 average.packages.counter[i] /= topo.num_packages;
1439 }
Len Brownc98d5d92012-06-04 00:56:40 -04001440}
1441
1442static unsigned long long rdtsc(void)
1443{
1444 unsigned int low, high;
1445
1446 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1447
1448 return low | ((unsigned long long)high) << 32;
1449}
1450
Len Brownc98d5d92012-06-04 00:56:40 -04001451/*
Len Brown495c76542017-02-08 02:41:51 -05001452 * Open a file, and exit on failure
1453 */
1454FILE *fopen_or_die(const char *path, const char *mode)
1455{
1456 FILE *filep = fopen(path, mode);
1457
1458 if (!filep)
1459 err(1, "%s: open failed", path);
1460 return filep;
1461}
1462/*
1463 * snapshot_sysfs_counter()
1464 *
1465 * return snapshot of given counter
1466 */
1467unsigned long long snapshot_sysfs_counter(char *path)
1468{
1469 FILE *fp;
1470 int retval;
1471 unsigned long long counter;
1472
1473 fp = fopen_or_die(path, "r");
1474
1475 retval = fscanf(fp, "%lld", &counter);
1476 if (retval != 1)
1477 err(1, "snapshot_sysfs_counter(%s)", path);
1478
1479 fclose(fp);
1480
1481 return counter;
1482}
1483
1484int get_mp(int cpu, struct msr_counter *mp, unsigned long long *counterp)
1485{
1486 if (mp->msr_num != 0) {
1487 if (get_msr(cpu, mp->msr_num, counterp))
1488 return -1;
1489 } else {
Len Brown41618e62017-02-09 18:25:22 -05001490 char path[128];
1491
1492 if (mp->flags & SYSFS_PERCPU) {
1493 sprintf(path, "/sys/devices/system/cpu/cpu%d/%s",
1494 cpu, mp->path);
1495
1496 *counterp = snapshot_sysfs_counter(path);
1497 } else {
1498 *counterp = snapshot_sysfs_counter(mp->path);
1499 }
Len Brown495c76542017-02-08 02:41:51 -05001500 }
1501
1502 return 0;
1503}
1504
1505/*
Len Brownc98d5d92012-06-04 00:56:40 -04001506 * get_counters(...)
1507 * migrate to cpu
1508 * acquire and record local counters for that cpu
1509 */
1510int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1511{
1512 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001513 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001514 int aperf_mperf_retry_count = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001515 struct msr_counter *mp;
1516 int i;
Len Brownc98d5d92012-06-04 00:56:40 -04001517
Len Brownf4fdf2b2017-05-27 21:06:55 -07001518
1519 gettimeofday(&t->tv_begin, (struct timezone *)NULL);
1520
Len Browne52966c2012-11-08 22:38:05 -05001521 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001522 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001523 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001524 }
Len Brownc98d5d92012-06-04 00:56:40 -04001525
Len Brown0102b062016-02-27 03:11:29 -05001526retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001527 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1528
Len Brown812db3f2017-02-10 00:25:41 -05001529 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Brown0102b062016-02-27 03:11:29 -05001530 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1531
1532 /*
1533 * The TSC, APERF and MPERF must be read together for
1534 * APERF/MPERF and MPERF/TSC to give accurate results.
1535 *
1536 * Unfortunately, APERF and MPERF are read by
1537 * individual system call, so delays may occur
1538 * between them. If the time to read them
1539 * varies by a large amount, we re-read them.
1540 */
1541
1542 /*
1543 * This initial dummy APERF read has been seen to
1544 * reduce jitter in the subsequent reads.
1545 */
1546
Len Brown9c63a652012-10-31 01:29:52 -04001547 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001548 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001549
1550 t->tsc = rdtsc(); /* re-read close to APERF */
1551
1552 tsc_before = t->tsc;
1553
1554 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1555 return -3;
1556
1557 tsc_between = rdtsc();
1558
Len Brown9c63a652012-10-31 01:29:52 -04001559 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001560 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001561
1562 tsc_after = rdtsc();
1563
1564 aperf_time = tsc_between - tsc_before;
1565 mperf_time = tsc_after - tsc_between;
1566
1567 /*
1568 * If the system call latency to read APERF and MPERF
1569 * differ by more than 2x, then try again.
1570 */
1571 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1572 aperf_mperf_retry_count++;
1573 if (aperf_mperf_retry_count < 5)
1574 goto retry;
1575 else
1576 warnx("cpu%d jitter %lld %lld",
1577 cpu, aperf_time, mperf_time);
1578 }
1579 aperf_mperf_retry_count = 0;
1580
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001581 t->aperf = t->aperf * aperf_mperf_multiplier;
1582 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001583 }
1584
Len Brown812db3f2017-02-10 00:25:41 -05001585 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001586 t->irq_count = irqs_per_cpu[cpu];
Len Brown812db3f2017-02-10 00:25:41 -05001587 if (DO_BIC(BIC_SMI)) {
Len Brown1ed51012013-02-10 17:19:24 -05001588 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1589 return -5;
1590 t->smi_count = msr & 0xFFFFFFFF;
1591 }
Len Brown0539ba12017-02-10 00:27:20 -05001592 if (DO_BIC(BIC_CPU_c1) && use_c1_residency_msr) {
Len Brown144b44b2013-11-09 00:30:16 -05001593 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1594 return -6;
1595 }
1596
Len Brown388e9c82016-12-22 23:57:55 -05001597 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001598 if (get_mp(cpu, mp, &t->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001599 return -10;
1600 }
1601
Len Brownc98d5d92012-06-04 00:56:40 -04001602 /* collect core counters only for 1st thread in core */
1603 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
Len Brownf4fdf2b2017-05-27 21:06:55 -07001604 goto done;
Len Brownc98d5d92012-06-04 00:56:40 -04001605
Len Brown812db3f2017-02-10 00:25:41 -05001606 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001607 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1608 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001609 }
1610
Len Brown812db3f2017-02-10 00:25:41 -05001611 if (DO_BIC(BIC_CPU_c6) && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001612 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1613 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001614 } else if (do_knl_cstates) {
1615 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1616 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001617 }
1618
Len Brown812db3f2017-02-10 00:25:41 -05001619 if (DO_BIC(BIC_CPU_c7))
Len Brownc98d5d92012-06-04 00:56:40 -04001620 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1621 return -8;
1622
Len Brown0539ba12017-02-10 00:27:20 -05001623 if (DO_BIC(BIC_Mod_c6))
1624 if (get_msr(cpu, MSR_MODULE_C6_RES_MS, &c->mc6_us))
1625 return -8;
1626
Len Brown812db3f2017-02-10 00:25:41 -05001627 if (DO_BIC(BIC_CoreTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001628 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1629 return -9;
1630 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1631 }
1632
Len Brown388e9c82016-12-22 23:57:55 -05001633 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001634 if (get_mp(cpu, mp, &c->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001635 return -10;
1636 }
Len Brown889facb2012-11-08 00:48:57 -05001637
Len Brownc98d5d92012-06-04 00:56:40 -04001638 /* collect package counters only for 1st core in package */
1639 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
Len Brownf4fdf2b2017-05-27 21:06:55 -07001640 goto done;
Len Brownc98d5d92012-06-04 00:56:40 -04001641
Len Browna99d8732017-05-20 20:11:55 -04001642 if (DO_BIC(BIC_Totl_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001643 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1644 return -10;
Len Browna99d8732017-05-20 20:11:55 -04001645 }
1646 if (DO_BIC(BIC_Any_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001647 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1648 return -11;
Len Browna99d8732017-05-20 20:11:55 -04001649 }
1650 if (DO_BIC(BIC_GFX_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001651 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1652 return -12;
Len Browna99d8732017-05-20 20:11:55 -04001653 }
1654 if (DO_BIC(BIC_CPUGFX)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001655 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1656 return -13;
1657 }
Len Brown0f47c082017-01-27 00:50:45 -05001658 if (DO_BIC(BIC_Pkgpc3))
Len Brownc98d5d92012-06-04 00:56:40 -04001659 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1660 return -9;
Len Brown0f47c082017-01-27 00:50:45 -05001661 if (DO_BIC(BIC_Pkgpc6)) {
Len Brown0539ba12017-02-10 00:27:20 -05001662 if (do_slm_cstates) {
1663 if (get_msr(cpu, MSR_ATOM_PKG_C6_RESIDENCY, &p->pc6))
1664 return -10;
1665 } else {
1666 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1667 return -10;
1668 }
1669 }
1670
Len Brown0f47c082017-01-27 00:50:45 -05001671 if (DO_BIC(BIC_Pkgpc2))
Len Brownc98d5d92012-06-04 00:56:40 -04001672 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1673 return -11;
Len Brown0f47c082017-01-27 00:50:45 -05001674 if (DO_BIC(BIC_Pkgpc7))
Len Brownc98d5d92012-06-04 00:56:40 -04001675 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1676 return -12;
Len Brown0f47c082017-01-27 00:50:45 -05001677 if (DO_BIC(BIC_Pkgpc8))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001678 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1679 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001680 if (DO_BIC(BIC_Pkgpc9))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001681 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1682 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001683 if (DO_BIC(BIC_Pkgpc10))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001684 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1685 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001686
Len Brown889facb2012-11-08 00:48:57 -05001687 if (do_rapl & RAPL_PKG) {
1688 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1689 return -13;
1690 p->energy_pkg = msr & 0xFFFFFFFF;
1691 }
Jacob Pan91484942016-06-16 09:48:20 -07001692 if (do_rapl & RAPL_CORES_ENERGY_STATUS) {
Len Brown889facb2012-11-08 00:48:57 -05001693 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1694 return -14;
1695 p->energy_cores = msr & 0xFFFFFFFF;
1696 }
1697 if (do_rapl & RAPL_DRAM) {
1698 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1699 return -15;
1700 p->energy_dram = msr & 0xFFFFFFFF;
1701 }
1702 if (do_rapl & RAPL_GFX) {
1703 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1704 return -16;
1705 p->energy_gfx = msr & 0xFFFFFFFF;
1706 }
1707 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1708 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1709 return -16;
1710 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1711 }
1712 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1713 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1714 return -16;
1715 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1716 }
Len Brown812db3f2017-02-10 00:25:41 -05001717 if (DO_BIC(BIC_PkgTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001718 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1719 return -17;
1720 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1721 }
Len Brownfdf676e2016-02-27 01:28:12 -05001722
Len Brown812db3f2017-02-10 00:25:41 -05001723 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05001724 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1725
Len Brown812db3f2017-02-10 00:25:41 -05001726 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05001727 p->gfx_mhz = gfx_cur_mhz;
1728
Len Brown388e9c82016-12-22 23:57:55 -05001729 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001730 if (get_mp(cpu, mp, &p->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001731 return -10;
1732 }
Len Brownf4fdf2b2017-05-27 21:06:55 -07001733done:
1734 gettimeofday(&t->tv_end, (struct timezone *)NULL);
Len Brown388e9c82016-12-22 23:57:55 -05001735
Len Brown103a8fe2010-10-22 23:53:03 -04001736 return 0;
1737}
1738
Len Brownee7e38e2015-02-09 23:39:45 -05001739/*
1740 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1741 * If you change the values, note they are used both in comparisons
1742 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1743 */
1744
1745#define PCLUKN 0 /* Unknown */
1746#define PCLRSV 1 /* Reserved */
1747#define PCL__0 2 /* PC0 */
1748#define PCL__1 3 /* PC1 */
1749#define PCL__2 4 /* PC2 */
1750#define PCL__3 5 /* PC3 */
1751#define PCL__4 6 /* PC4 */
1752#define PCL__6 7 /* PC6 */
1753#define PCL_6N 8 /* PC6 No Retention */
1754#define PCL_6R 9 /* PC6 Retention */
1755#define PCL__7 10 /* PC7 */
1756#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001757#define PCL__8 12 /* PC8 */
1758#define PCL__9 13 /* PC9 */
1759#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001760
1761int pkg_cstate_limit = PCLUKN;
1762char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001763 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001764
Len Browne9257f52015-04-01 21:02:57 -04001765int 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};
1766int 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};
1767int 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 -05001768int 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 -05001769int 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 -04001770int 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 -04001771int 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 -05001772int 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 -05001773
Len Browna2b7b742015-09-26 00:12:38 -04001774
1775static void
1776calculate_tsc_tweak()
1777{
Len Browna2b7b742015-09-26 00:12:38 -04001778 tsc_tweak = base_hz / tsc_hz;
1779}
1780
Len Brownfcd17212015-03-23 20:29:09 -04001781static void
1782dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001783{
1784 unsigned long long msr;
1785 unsigned int ratio;
1786
Len Brownec0adc52015-11-12 02:42:31 -05001787 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001788
Len Brownb7d8c142016-02-13 23:36:17 -05001789 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001790
Len Brown103a8fe2010-10-22 23:53:03 -04001791 ratio = (msr >> 40) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001792 fprintf(outf, "%d * %.1f = %.1f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001793 ratio, bclk, ratio * bclk);
1794
1795 ratio = (msr >> 8) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001796 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001797 ratio, bclk, ratio * bclk);
1798
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001799 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001800 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001801 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001802
Len Brownfcd17212015-03-23 20:29:09 -04001803 return;
1804}
1805
1806static void
1807dump_hsw_turbo_ratio_limits(void)
1808{
1809 unsigned long long msr;
1810 unsigned int ratio;
1811
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001812 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001813
Len Brownb7d8c142016-02-13 23:36:17 -05001814 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001815
1816 ratio = (msr >> 8) & 0xFF;
1817 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001818 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001819 ratio, bclk, ratio * bclk);
1820
1821 ratio = (msr >> 0) & 0xFF;
1822 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001823 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001824 ratio, bclk, ratio * bclk);
1825 return;
1826}
1827
1828static void
1829dump_ivt_turbo_ratio_limits(void)
1830{
1831 unsigned long long msr;
1832 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001833
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001834 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001835
Len Brownb7d8c142016-02-13 23:36:17 -05001836 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001837
1838 ratio = (msr >> 56) & 0xFF;
1839 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001840 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001841 ratio, bclk, ratio * bclk);
1842
1843 ratio = (msr >> 48) & 0xFF;
1844 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001845 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001846 ratio, bclk, ratio * bclk);
1847
1848 ratio = (msr >> 40) & 0xFF;
1849 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001850 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001851 ratio, bclk, ratio * bclk);
1852
1853 ratio = (msr >> 32) & 0xFF;
1854 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001855 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001856 ratio, bclk, ratio * bclk);
1857
1858 ratio = (msr >> 24) & 0xFF;
1859 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001860 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001861 ratio, bclk, ratio * bclk);
1862
1863 ratio = (msr >> 16) & 0xFF;
1864 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001865 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001866 ratio, bclk, ratio * bclk);
1867
1868 ratio = (msr >> 8) & 0xFF;
1869 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001870 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001871 ratio, bclk, ratio * bclk);
1872
1873 ratio = (msr >> 0) & 0xFF;
1874 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001875 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001876 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001877 return;
1878}
Len Brown31e07522017-01-31 23:07:49 -05001879int has_turbo_ratio_group_limits(int family, int model)
1880{
1881
1882 if (!genuine_intel)
1883 return 0;
1884
1885 switch (model) {
1886 case INTEL_FAM6_ATOM_GOLDMONT:
1887 case INTEL_FAM6_SKYLAKE_X:
1888 case INTEL_FAM6_ATOM_DENVERTON:
1889 return 1;
1890 }
1891 return 0;
1892}
Len Brown6574a5d2012-09-21 00:01:31 -04001893
Len Brownfcd17212015-03-23 20:29:09 -04001894static void
Len Brown31e07522017-01-31 23:07:49 -05001895dump_turbo_ratio_limits(int family, int model)
Len Brownfcd17212015-03-23 20:29:09 -04001896{
Len Brown31e07522017-01-31 23:07:49 -05001897 unsigned long long msr, core_counts;
1898 unsigned int ratio, group_size;
Len Brown103a8fe2010-10-22 23:53:03 -04001899
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001900 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001901 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001902
Len Brown31e07522017-01-31 23:07:49 -05001903 if (has_turbo_ratio_group_limits(family, model)) {
1904 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &core_counts);
1905 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, core_counts);
1906 } else {
1907 core_counts = 0x0807060504030201;
1908 }
1909
Len Brown6574a5d2012-09-21 00:01:31 -04001910 ratio = (msr >> 56) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001911 group_size = (core_counts >> 56) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001912 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001913 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1914 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001915
1916 ratio = (msr >> 48) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001917 group_size = (core_counts >> 48) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001918 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001919 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1920 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001921
1922 ratio = (msr >> 40) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001923 group_size = (core_counts >> 40) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001924 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001925 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1926 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001927
1928 ratio = (msr >> 32) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001929 group_size = (core_counts >> 32) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001930 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001931 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1932 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001933
Len Brown103a8fe2010-10-22 23:53:03 -04001934 ratio = (msr >> 24) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001935 group_size = (core_counts >> 24) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001936 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001937 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1938 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001939
1940 ratio = (msr >> 16) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001941 group_size = (core_counts >> 16) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001942 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001943 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1944 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001945
1946 ratio = (msr >> 8) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001947 group_size = (core_counts >> 8) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001948 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001949 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1950 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04001951
1952 ratio = (msr >> 0) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001953 group_size = (core_counts >> 0) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04001954 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001955 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1956 ratio, bclk, ratio * bclk, group_size);
Len Brownfcd17212015-03-23 20:29:09 -04001957 return;
1958}
Len Brown3a9a9412014-08-15 02:39:52 -04001959
Len Brownfcd17212015-03-23 20:29:09 -04001960static void
Len Brown0f7887c2017-01-12 23:49:18 -05001961dump_atom_turbo_ratio_limits(void)
1962{
1963 unsigned long long msr;
1964 unsigned int ratio;
1965
1966 get_msr(base_cpu, MSR_ATOM_CORE_RATIOS, &msr);
1967 fprintf(outf, "cpu%d: MSR_ATOM_CORE_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
1968
1969 ratio = (msr >> 0) & 0x3F;
1970 if (ratio)
1971 fprintf(outf, "%d * %.1f = %.1f MHz minimum operating frequency\n",
1972 ratio, bclk, ratio * bclk);
1973
1974 ratio = (msr >> 8) & 0x3F;
1975 if (ratio)
1976 fprintf(outf, "%d * %.1f = %.1f MHz low frequency mode (LFM)\n",
1977 ratio, bclk, ratio * bclk);
1978
1979 ratio = (msr >> 16) & 0x3F;
1980 if (ratio)
1981 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
1982 ratio, bclk, ratio * bclk);
1983
1984 get_msr(base_cpu, MSR_ATOM_CORE_TURBO_RATIOS, &msr);
1985 fprintf(outf, "cpu%d: MSR_ATOM_CORE_TURBO_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
1986
1987 ratio = (msr >> 24) & 0x3F;
1988 if (ratio)
1989 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 4 active cores\n",
1990 ratio, bclk, ratio * bclk);
1991
1992 ratio = (msr >> 16) & 0x3F;
1993 if (ratio)
1994 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 3 active cores\n",
1995 ratio, bclk, ratio * bclk);
1996
1997 ratio = (msr >> 8) & 0x3F;
1998 if (ratio)
1999 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 2 active cores\n",
2000 ratio, bclk, ratio * bclk);
2001
2002 ratio = (msr >> 0) & 0x3F;
2003 if (ratio)
2004 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 1 active core\n",
2005 ratio, bclk, ratio * bclk);
2006}
2007
2008static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002009dump_knl_turbo_ratio_limits(void)
2010{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002011 const unsigned int buckets_no = 7;
2012
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002013 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002014 int delta_cores, delta_ratio;
2015 int i, b_nr;
2016 unsigned int cores[buckets_no];
2017 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002018
Srinivas Pandruvadaebf59262016-07-06 16:07:56 -07002019 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002020
Len Brownb7d8c142016-02-13 23:36:17 -05002021 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04002022 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002023
2024 /**
2025 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002026 * [0] -- Reserved
2027 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002028 * [15:8] -- Base value of freq ratio of bucket 1.
2029 * [20:16] -- +ve delta of number of active cores of bucket 2.
2030 * i.e. active cores of bucket 2 =
2031 * active cores of bucket 1 + delta
2032 * [23:21] -- Negative delta of freq ratio of bucket 2.
2033 * i.e. freq ratio of bucket 2 =
2034 * freq ratio of bucket 1 - delta
2035 * [28:24]-- +ve delta of number of active cores of bucket 3.
2036 * [31:29]-- -ve delta of freq ratio of bucket 3.
2037 * [36:32]-- +ve delta of number of active cores of bucket 4.
2038 * [39:37]-- -ve delta of freq ratio of bucket 4.
2039 * [44:40]-- +ve delta of number of active cores of bucket 5.
2040 * [47:45]-- -ve delta of freq ratio of bucket 5.
2041 * [52:48]-- +ve delta of number of active cores of bucket 6.
2042 * [55:53]-- -ve delta of freq ratio of bucket 6.
2043 * [60:56]-- +ve delta of number of active cores of bucket 7.
2044 * [63:61]-- -ve delta of freq ratio of bucket 7.
2045 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002046
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002047 b_nr = 0;
2048 cores[b_nr] = (msr & 0xFF) >> 1;
2049 ratio[b_nr] = (msr >> 8) & 0xFF;
2050
2051 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002052 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002053 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002054
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002055 cores[b_nr + 1] = cores[b_nr] + delta_cores;
2056 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
2057 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002058 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002059
2060 for (i = buckets_no - 1; i >= 0; i--)
2061 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05002062 fprintf(outf,
Len Brown710f2732017-01-11 22:12:25 -05002063 "%d * %.1f = %.1f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002064 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002065}
2066
2067static void
Len Brownfcd17212015-03-23 20:29:09 -04002068dump_nhm_cst_cfg(void)
2069{
2070 unsigned long long msr;
2071
Len Brown1df2e552017-01-07 23:24:57 -05002072 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04002073
2074#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
2075#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
2076
Len Brown1df2e552017-01-07 23:24:57 -05002077 fprintf(outf, "cpu%d: MSR_PKG_CST_CONFIG_CONTROL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04002078
Len Brownb7d8c142016-02-13 23:36:17 -05002079 fprintf(outf, " (%s%s%s%s%slocked: pkg-cstate-limit=%d: %s)\n",
Len Brownfcd17212015-03-23 20:29:09 -04002080 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
2081 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
2082 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
2083 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
2084 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04002085 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04002086 pkg_cstate_limit_strings[pkg_cstate_limit]);
2087 return;
Len Brown103a8fe2010-10-22 23:53:03 -04002088}
2089
Len Brown6fb31432015-06-17 16:23:45 -04002090static void
2091dump_config_tdp(void)
2092{
2093 unsigned long long msr;
2094
2095 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002096 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002097 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04002098
2099 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002100 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002101 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002102 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2103 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2104 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2105 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002106 }
Len Brownb7d8c142016-02-13 23:36:17 -05002107 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002108
2109 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002110 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002111 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002112 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2113 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2114 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2115 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002116 }
Len Brownb7d8c142016-02-13 23:36:17 -05002117 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002118
2119 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002120 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002121 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05002122 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
2123 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2124 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05002125
Len Brown6fb31432015-06-17 16:23:45 -04002126 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002127 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002128 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05002129 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2130 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002131}
Len Brown5a634262016-04-06 17:15:55 -04002132
2133unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
2134
2135void print_irtl(void)
2136{
2137 unsigned long long msr;
2138
2139 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
2140 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
2141 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2142 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2143
2144 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
2145 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
2146 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2147 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2148
2149 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
2150 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
2151 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2152 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2153
2154 if (!do_irtl_hsw)
2155 return;
2156
2157 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
2158 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
2159 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2160 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2161
2162 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
2163 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
2164 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2165 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2166
2167 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
2168 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
2169 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2170 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2171
2172}
Len Brown36229892016-02-26 20:51:02 -05002173void free_fd_percpu(void)
2174{
2175 int i;
2176
Mika Westerberg01a67ad2016-04-22 11:13:23 +03002177 for (i = 0; i < topo.max_cpu_num + 1; ++i) {
Len Brown36229892016-02-26 20:51:02 -05002178 if (fd_percpu[i] != 0)
2179 close(fd_percpu[i]);
2180 }
2181
2182 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04002183}
2184
Len Brownc98d5d92012-06-04 00:56:40 -04002185void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04002186{
Len Brownc98d5d92012-06-04 00:56:40 -04002187 CPU_FREE(cpu_present_set);
2188 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05002189 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002190
Len Brownc98d5d92012-06-04 00:56:40 -04002191 CPU_FREE(cpu_affinity_set);
2192 cpu_affinity_set = NULL;
2193 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002194
Len Brownc98d5d92012-06-04 00:56:40 -04002195 free(thread_even);
2196 free(core_even);
2197 free(package_even);
2198
2199 thread_even = NULL;
2200 core_even = NULL;
2201 package_even = NULL;
2202
2203 free(thread_odd);
2204 free(core_odd);
2205 free(package_odd);
2206
2207 thread_odd = NULL;
2208 core_odd = NULL;
2209 package_odd = NULL;
2210
2211 free(output_buffer);
2212 output_buffer = NULL;
2213 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05002214
2215 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05002216
2217 free(irq_column_2_cpu);
2218 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002219}
2220
Josh Triplett57a42a32013-08-20 17:20:17 -07002221
2222/*
Josh Triplett95aebc42013-08-20 17:20:16 -07002223 * Parse a file containing a single int.
2224 */
2225int parse_int_file(const char *fmt, ...)
2226{
2227 va_list args;
2228 char path[PATH_MAX];
2229 FILE *filep;
2230 int value;
2231
2232 va_start(args, fmt);
2233 vsnprintf(path, sizeof(path), fmt, args);
2234 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07002235 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002236 if (fscanf(filep, "%d", &value) != 1)
2237 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07002238 fclose(filep);
2239 return value;
2240}
2241
2242/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002243 * get_cpu_position_in_core(cpu)
2244 * return the position of the CPU among its HT siblings in the core
2245 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04002246 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002247int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002248{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002249 char path[64];
2250 FILE *filep;
2251 int this_cpu;
2252 char character;
2253 int i;
2254
2255 sprintf(path,
2256 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
2257 cpu);
2258 filep = fopen(path, "r");
2259 if (filep == NULL) {
2260 perror(path);
2261 exit(1);
2262 }
2263
2264 for (i = 0; i < topo.num_threads_per_core; i++) {
2265 fscanf(filep, "%d", &this_cpu);
2266 if (this_cpu == cpu) {
2267 fclose(filep);
2268 return i;
2269 }
2270
2271 /* Account for no separator after last thread*/
2272 if (i != (topo.num_threads_per_core - 1))
2273 fscanf(filep, "%c", &character);
2274 }
2275
2276 fclose(filep);
2277 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04002278}
2279
Len Brownc98d5d92012-06-04 00:56:40 -04002280/*
2281 * cpu_is_first_core_in_package(cpu)
2282 * return 1 if given CPU is 1st core in package
2283 */
2284int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002285{
Josh Triplett95aebc42013-08-20 17:20:16 -07002286 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002287}
2288
2289int get_physical_package_id(int cpu)
2290{
Josh Triplett95aebc42013-08-20 17:20:16 -07002291 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002292}
2293
2294int get_core_id(int cpu)
2295{
Josh Triplett95aebc42013-08-20 17:20:16 -07002296 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002297}
2298
Len Brownc98d5d92012-06-04 00:56:40 -04002299int get_num_ht_siblings(int cpu)
2300{
2301 char path[80];
2302 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002303 int sib1;
2304 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002305 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002306 char str[100];
2307 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04002308
2309 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07002310 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002311
Len Brownc98d5d92012-06-04 00:56:40 -04002312 /*
2313 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002314 * A ',' separated or '-' separated set of numbers
2315 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04002316 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002317 fscanf(filep, "%d%c\n", &sib1, &character);
2318 fseek(filep, 0, SEEK_SET);
2319 fgets(str, 100, filep);
2320 ch = strchr(str, character);
2321 while (ch != NULL) {
2322 matches++;
2323 ch = strchr(ch+1, character);
2324 }
Len Brownc98d5d92012-06-04 00:56:40 -04002325
2326 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002327 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04002328}
2329
Len Brown103a8fe2010-10-22 23:53:03 -04002330/*
Len Brownc98d5d92012-06-04 00:56:40 -04002331 * run func(thread, core, package) in topology order
2332 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04002333 */
2334
Len Brownc98d5d92012-06-04 00:56:40 -04002335int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
2336 struct pkg_data *, struct thread_data *, struct core_data *,
2337 struct pkg_data *), struct thread_data *thread_base,
2338 struct core_data *core_base, struct pkg_data *pkg_base,
2339 struct thread_data *thread_base2, struct core_data *core_base2,
2340 struct pkg_data *pkg_base2)
2341{
2342 int retval, pkg_no, core_no, thread_no;
2343
2344 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
2345 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
2346 for (thread_no = 0; thread_no <
2347 topo.num_threads_per_core; ++thread_no) {
2348 struct thread_data *t, *t2;
2349 struct core_data *c, *c2;
2350 struct pkg_data *p, *p2;
2351
2352 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
2353
2354 if (cpu_is_not_present(t->cpu_id))
2355 continue;
2356
2357 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
2358
2359 c = GET_CORE(core_base, core_no, pkg_no);
2360 c2 = GET_CORE(core_base2, core_no, pkg_no);
2361
2362 p = GET_PKG(pkg_base, pkg_no);
2363 p2 = GET_PKG(pkg_base2, pkg_no);
2364
2365 retval = func(t, c, p, t2, c2, p2);
2366 if (retval)
2367 return retval;
2368 }
2369 }
2370 }
2371 return 0;
2372}
2373
2374/*
2375 * run func(cpu) on every cpu in /proc/stat
2376 * return max_cpu number
2377 */
2378int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04002379{
2380 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04002381 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04002382 int retval;
2383
Josh Triplett57a42a32013-08-20 17:20:17 -07002384 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04002385
2386 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002387 if (retval != 0)
2388 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04002389
Len Brownc98d5d92012-06-04 00:56:40 -04002390 while (1) {
2391 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 -04002392 if (retval != 1)
2393 break;
2394
Len Brownc98d5d92012-06-04 00:56:40 -04002395 retval = func(cpu_num);
2396 if (retval) {
2397 fclose(fp);
2398 return(retval);
2399 }
Len Brown103a8fe2010-10-22 23:53:03 -04002400 }
2401 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04002402 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002403}
2404
2405void re_initialize(void)
2406{
Len Brownc98d5d92012-06-04 00:56:40 -04002407 free_all_buffers();
2408 setup_all_buffers();
2409 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04002410}
2411
Len Brownc98d5d92012-06-04 00:56:40 -04002412
Len Brown103a8fe2010-10-22 23:53:03 -04002413/*
Len Brownc98d5d92012-06-04 00:56:40 -04002414 * count_cpus()
2415 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04002416 */
Len Brownc98d5d92012-06-04 00:56:40 -04002417int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002418{
Len Brownc98d5d92012-06-04 00:56:40 -04002419 if (topo.max_cpu_num < cpu)
2420 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04002421
Len Brownc98d5d92012-06-04 00:56:40 -04002422 topo.num_cpus += 1;
2423 return 0;
2424}
2425int mark_cpu_present(int cpu)
2426{
2427 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04002428 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002429}
2430
Len Brown562a2d32016-02-26 23:48:05 -05002431/*
2432 * snapshot_proc_interrupts()
2433 *
2434 * read and record summary of /proc/interrupts
2435 *
2436 * return 1 if config change requires a restart, else return 0
2437 */
2438int snapshot_proc_interrupts(void)
2439{
2440 static FILE *fp;
2441 int column, retval;
2442
2443 if (fp == NULL)
2444 fp = fopen_or_die("/proc/interrupts", "r");
2445 else
2446 rewind(fp);
2447
2448 /* read 1st line of /proc/interrupts to get cpu* name for each column */
2449 for (column = 0; column < topo.num_cpus; ++column) {
2450 int cpu_number;
2451
2452 retval = fscanf(fp, " CPU%d", &cpu_number);
2453 if (retval != 1)
2454 break;
2455
2456 if (cpu_number > topo.max_cpu_num) {
2457 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
2458 return 1;
2459 }
2460
2461 irq_column_2_cpu[column] = cpu_number;
2462 irqs_per_cpu[cpu_number] = 0;
2463 }
2464
2465 /* read /proc/interrupt count lines and sum up irqs per cpu */
2466 while (1) {
2467 int column;
2468 char buf[64];
2469
2470 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
2471 if (retval != 1)
2472 break;
2473
2474 /* read the count per cpu */
2475 for (column = 0; column < topo.num_cpus; ++column) {
2476
2477 int cpu_number, irq_count;
2478
2479 retval = fscanf(fp, " %d", &irq_count);
2480 if (retval != 1)
2481 break;
2482
2483 cpu_number = irq_column_2_cpu[column];
2484 irqs_per_cpu[cpu_number] += irq_count;
2485
2486 }
2487
2488 while (getc(fp) != '\n')
2489 ; /* flush interrupt description */
2490
2491 }
2492 return 0;
2493}
Len Brown27d47352016-02-27 00:37:54 -05002494/*
Len Brownfdf676e2016-02-27 01:28:12 -05002495 * snapshot_gfx_rc6_ms()
2496 *
2497 * record snapshot of
2498 * /sys/class/drm/card0/power/rc6_residency_ms
2499 *
2500 * return 1 if config change requires a restart, else return 0
2501 */
2502int snapshot_gfx_rc6_ms(void)
2503{
2504 FILE *fp;
2505 int retval;
2506
2507 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
2508
2509 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
2510 if (retval != 1)
2511 err(1, "GFX rc6");
2512
2513 fclose(fp);
2514
2515 return 0;
2516}
2517/*
Len Brown27d47352016-02-27 00:37:54 -05002518 * snapshot_gfx_mhz()
2519 *
2520 * record snapshot of
2521 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
2522 *
2523 * return 1 if config change requires a restart, else return 0
2524 */
2525int snapshot_gfx_mhz(void)
2526{
2527 static FILE *fp;
2528 int retval;
2529
2530 if (fp == NULL)
2531 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
Len Brown22048c52017-03-04 15:42:48 -05002532 else {
Len Brown27d47352016-02-27 00:37:54 -05002533 rewind(fp);
Len Brown22048c52017-03-04 15:42:48 -05002534 fflush(fp);
2535 }
Len Brown27d47352016-02-27 00:37:54 -05002536
2537 retval = fscanf(fp, "%d", &gfx_cur_mhz);
2538 if (retval != 1)
2539 err(1, "GFX MHz");
2540
2541 return 0;
2542}
Len Brown562a2d32016-02-26 23:48:05 -05002543
2544/*
2545 * snapshot /proc and /sys files
2546 *
2547 * return 1 if configuration restart needed, else return 0
2548 */
2549int snapshot_proc_sysfs_files(void)
2550{
Len Brown218f0e82017-02-14 22:07:52 -05002551 if (DO_BIC(BIC_IRQ))
2552 if (snapshot_proc_interrupts())
2553 return 1;
Len Brown562a2d32016-02-26 23:48:05 -05002554
Len Brown812db3f2017-02-10 00:25:41 -05002555 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05002556 snapshot_gfx_rc6_ms();
2557
Len Brown812db3f2017-02-10 00:25:41 -05002558 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05002559 snapshot_gfx_mhz();
2560
Len Brown562a2d32016-02-26 23:48:05 -05002561 return 0;
2562}
2563
Len Brown103a8fe2010-10-22 23:53:03 -04002564void turbostat_loop()
2565{
Len Brownc98d5d92012-06-04 00:56:40 -04002566 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002567 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002568
Len Brown103a8fe2010-10-22 23:53:03 -04002569restart:
Len Browne52966c2012-11-08 22:38:05 -05002570 restarted++;
2571
Len Brown562a2d32016-02-26 23:48:05 -05002572 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002573 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002574 if (retval < -1) {
2575 exit(retval);
2576 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002577 if (restarted > 1) {
2578 exit(retval);
2579 }
Len Brownc98d5d92012-06-04 00:56:40 -04002580 re_initialize();
2581 goto restart;
2582 }
Len Browne52966c2012-11-08 22:38:05 -05002583 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002584 gettimeofday(&tv_even, (struct timezone *)NULL);
2585
2586 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002587 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002588 re_initialize();
2589 goto restart;
2590 }
Len Brown2a0609c2016-02-12 22:44:48 -05002591 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002592 if (snapshot_proc_sysfs_files())
2593 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002594 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002595 if (retval < -1) {
2596 exit(retval);
2597 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002598 re_initialize();
2599 goto restart;
2600 }
Len Brown103a8fe2010-10-22 23:53:03 -04002601 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002602 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002603 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2604 re_initialize();
2605 goto restart;
2606 }
Len Brownc98d5d92012-06-04 00:56:40 -04002607 compute_average(EVEN_COUNTERS);
2608 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002609 flush_output_stdout();
Len Brown2a0609c2016-02-12 22:44:48 -05002610 nanosleep(&interval_ts, NULL);
Len Brown562a2d32016-02-26 23:48:05 -05002611 if (snapshot_proc_sysfs_files())
2612 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002613 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002614 if (retval < -1) {
2615 exit(retval);
2616 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002617 re_initialize();
2618 goto restart;
2619 }
Len Brown103a8fe2010-10-22 23:53:03 -04002620 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002621 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002622 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2623 re_initialize();
2624 goto restart;
2625 }
Len Brownc98d5d92012-06-04 00:56:40 -04002626 compute_average(ODD_COUNTERS);
2627 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002628 flush_output_stdout();
Len Brown103a8fe2010-10-22 23:53:03 -04002629 }
2630}
2631
2632void check_dev_msr()
2633{
2634 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002635 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002636
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002637 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2638 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002639 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2640 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002641}
2642
Len Brown98481e72014-08-15 00:36:50 -04002643void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002644{
Len Brown98481e72014-08-15 00:36:50 -04002645 struct __user_cap_header_struct cap_header_data;
2646 cap_user_header_t cap_header = &cap_header_data;
2647 struct __user_cap_data_struct cap_data_data;
2648 cap_user_data_t cap_data = &cap_data_data;
2649 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2650 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002651 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002652
2653 /* check for CAP_SYS_RAWIO */
2654 cap_header->pid = getpid();
2655 cap_header->version = _LINUX_CAPABILITY_VERSION;
2656 if (capget(cap_header, cap_data) < 0)
2657 err(-6, "capget(2) failed");
2658
2659 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2660 do_exit++;
2661 warnx("capget(CAP_SYS_RAWIO) failed,"
2662 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2663 }
2664
2665 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002666 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2667 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002668 do_exit++;
2669 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2670 }
2671
2672 /* if all else fails, thell them to be root */
2673 if (do_exit)
2674 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002675 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002676
2677 if (do_exit)
2678 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002679}
2680
Len Brownd7899442015-01-23 00:12:33 -05002681/*
2682 * NHM adds support for additional MSRs:
2683 *
2684 * MSR_SMI_COUNT 0x00000034
2685 *
Len Brownec0adc52015-11-12 02:42:31 -05002686 * MSR_PLATFORM_INFO 0x000000ce
Len Brown1df2e552017-01-07 23:24:57 -05002687 * MSR_PKG_CST_CONFIG_CONTROL 0x000000e2
Len Brownd7899442015-01-23 00:12:33 -05002688 *
Len Browncf4cbe52017-01-01 13:08:33 -05002689 * MSR_MISC_PWR_MGMT 0x000001aa
2690 *
Len Brownd7899442015-01-23 00:12:33 -05002691 * MSR_PKG_C3_RESIDENCY 0x000003f8
2692 * MSR_PKG_C6_RESIDENCY 0x000003f9
2693 * MSR_CORE_C3_RESIDENCY 0x000003fc
2694 * MSR_CORE_C6_RESIDENCY 0x000003fd
2695 *
Len Brownee7e38e2015-02-09 23:39:45 -05002696 * Side effect:
Len Brown1df2e552017-01-07 23:24:57 -05002697 * sets global pkg_cstate_limit to decode MSR_PKG_CST_CONFIG_CONTROL
Len Brown33148d62017-01-21 01:26:16 -05002698 * sets has_misc_feature_control
Len Brownd7899442015-01-23 00:12:33 -05002699 */
Len Brownee7e38e2015-02-09 23:39:45 -05002700int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002701{
Len Brownee7e38e2015-02-09 23:39:45 -05002702 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002703 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002704 int *pkg_cstate_limits;
2705
Len Brown103a8fe2010-10-22 23:53:03 -04002706 if (!genuine_intel)
2707 return 0;
2708
2709 if (family != 6)
2710 return 0;
2711
Len Brown21ed5572015-10-19 22:37:40 -04002712 bclk = discover_bclk(family, model);
2713
Len Brown103a8fe2010-10-22 23:53:03 -04002714 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002715 case INTEL_FAM6_NEHALEM_EP: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2716 case INTEL_FAM6_NEHALEM: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
Len Brown103a8fe2010-10-22 23:53:03 -04002717 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
Len Brown869ce692016-06-16 23:22:37 -04002718 case INTEL_FAM6_WESTMERE: /* Westmere Client - Clarkdale, Arrandale */
2719 case INTEL_FAM6_WESTMERE_EP: /* Westmere EP - Gulftown */
2720 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
2721 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
Len Brownee7e38e2015-02-09 23:39:45 -05002722 pkg_cstate_limits = nhm_pkg_cstate_limits;
2723 break;
Len Brown869ce692016-06-16 23:22:37 -04002724 case INTEL_FAM6_SANDYBRIDGE: /* SNB */
2725 case INTEL_FAM6_SANDYBRIDGE_X: /* SNB Xeon */
2726 case INTEL_FAM6_IVYBRIDGE: /* IVB */
2727 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002728 pkg_cstate_limits = snb_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002729 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002730 break;
Len Brown869ce692016-06-16 23:22:37 -04002731 case INTEL_FAM6_HASWELL_CORE: /* HSW */
2732 case INTEL_FAM6_HASWELL_X: /* HSX */
2733 case INTEL_FAM6_HASWELL_ULT: /* HSW */
2734 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
2735 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2736 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2737 case INTEL_FAM6_BROADWELL_X: /* BDX */
2738 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
2739 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2740 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
2741 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
2742 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brownee7e38e2015-02-09 23:39:45 -05002743 pkg_cstate_limits = hsw_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002744 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002745 break;
Len Brownd8ebb442016-12-01 20:27:46 -05002746 case INTEL_FAM6_SKYLAKE_X: /* SKX */
2747 pkg_cstate_limits = skx_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002748 has_misc_feature_control = 1;
Len Brownd8ebb442016-12-01 20:27:46 -05002749 break;
Len Brown869ce692016-06-16 23:22:37 -04002750 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
Len Browncf4cbe52017-01-01 13:08:33 -05002751 no_MSR_MISC_PWR_MGMT = 1;
Len Brown869ce692016-06-16 23:22:37 -04002752 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brownee7e38e2015-02-09 23:39:45 -05002753 pkg_cstate_limits = slv_pkg_cstate_limits;
2754 break;
Len Brown869ce692016-06-16 23:22:37 -04002755 case INTEL_FAM6_ATOM_AIRMONT: /* AMT */
Len Brownee7e38e2015-02-09 23:39:45 -05002756 pkg_cstate_limits = amt_pkg_cstate_limits;
Len Browncf4cbe52017-01-01 13:08:33 -05002757 no_MSR_MISC_PWR_MGMT = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002758 break;
Len Brown869ce692016-06-16 23:22:37 -04002759 case INTEL_FAM6_XEON_PHI_KNL: /* PHI */
Len Brown005c82d2016-12-01 01:35:38 -05002760 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownee7e38e2015-02-09 23:39:45 -05002761 pkg_cstate_limits = phi_pkg_cstate_limits;
2762 break;
Len Brown869ce692016-06-16 23:22:37 -04002763 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05002764 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Brown869ce692016-06-16 23:22:37 -04002765 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Browne4085d52016-04-06 17:15:56 -04002766 pkg_cstate_limits = bxt_pkg_cstate_limits;
2767 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002768 default:
2769 return 0;
2770 }
Len Brown1df2e552017-01-07 23:24:57 -05002771 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002772 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002773
Len Brownec0adc52015-11-12 02:42:31 -05002774 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002775 base_ratio = (msr >> 8) & 0xFF;
2776
2777 base_hz = base_ratio * bclk * 1000000;
2778 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002779 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002780}
Len Brown0f7887c2017-01-12 23:49:18 -05002781/*
Len Brown495c76542017-02-08 02:41:51 -05002782 * SLV client has support for unique MSRs:
Len Brown0f7887c2017-01-12 23:49:18 -05002783 *
2784 * MSR_CC6_DEMOTION_POLICY_CONFIG
2785 * MSR_MC6_DEMOTION_POLICY_CONFIG
2786 */
2787
2788int has_slv_msrs(unsigned int family, unsigned int model)
2789{
2790 if (!genuine_intel)
2791 return 0;
2792
2793 switch (model) {
2794 case INTEL_FAM6_ATOM_SILVERMONT1:
2795 case INTEL_FAM6_ATOM_MERRIFIELD:
2796 case INTEL_FAM6_ATOM_MOOREFIELD:
2797 return 1;
2798 }
2799 return 0;
2800}
Len Brown7170a372017-01-27 02:13:27 -05002801int is_dnv(unsigned int family, unsigned int model)
2802{
2803
2804 if (!genuine_intel)
2805 return 0;
2806
2807 switch (model) {
2808 case INTEL_FAM6_ATOM_DENVERTON:
2809 return 1;
2810 }
2811 return 0;
2812}
Len Brownade0eba2017-02-10 01:56:47 -05002813int is_bdx(unsigned int family, unsigned int model)
2814{
2815
2816 if (!genuine_intel)
2817 return 0;
2818
2819 switch (model) {
2820 case INTEL_FAM6_BROADWELL_X:
2821 case INTEL_FAM6_BROADWELL_XEON_D:
2822 return 1;
2823 }
2824 return 0;
2825}
Len Brown34c761972017-01-27 02:36:41 -05002826int is_skx(unsigned int family, unsigned int model)
2827{
2828
2829 if (!genuine_intel)
2830 return 0;
2831
2832 switch (model) {
2833 case INTEL_FAM6_SKYLAKE_X:
2834 return 1;
2835 }
2836 return 0;
2837}
Len Brown0f7887c2017-01-12 23:49:18 -05002838
Len Brown31e07522017-01-31 23:07:49 -05002839int has_turbo_ratio_limit(unsigned int family, unsigned int model)
Len Brownd7899442015-01-23 00:12:33 -05002840{
Len Brown0f7887c2017-01-12 23:49:18 -05002841 if (has_slv_msrs(family, model))
2842 return 0;
2843
Len Brownd7899442015-01-23 00:12:33 -05002844 switch (model) {
2845 /* Nehalem compatible, but do not include turbo-ratio limit support */
Len Brown869ce692016-06-16 23:22:37 -04002846 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
2847 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
2848 case INTEL_FAM6_XEON_PHI_KNL: /* PHI - Knights Landing (different MSR definition) */
Len Brown005c82d2016-12-01 01:35:38 -05002849 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownd7899442015-01-23 00:12:33 -05002850 return 0;
2851 default:
2852 return 1;
2853 }
2854}
Len Brown0f7887c2017-01-12 23:49:18 -05002855int has_atom_turbo_ratio_limit(unsigned int family, unsigned int model)
2856{
2857 if (has_slv_msrs(family, model))
2858 return 1;
2859
2860 return 0;
2861}
Len Brown6574a5d2012-09-21 00:01:31 -04002862int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
2863{
2864 if (!genuine_intel)
2865 return 0;
2866
2867 if (family != 6)
2868 return 0;
2869
2870 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002871 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
2872 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04002873 return 1;
2874 default:
2875 return 0;
2876 }
2877}
Len Brownfcd17212015-03-23 20:29:09 -04002878int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
2879{
2880 if (!genuine_intel)
2881 return 0;
2882
2883 if (family != 6)
2884 return 0;
2885
2886 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002887 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04002888 return 1;
2889 default:
2890 return 0;
2891 }
2892}
2893
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002894int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
2895{
2896 if (!genuine_intel)
2897 return 0;
2898
2899 if (family != 6)
2900 return 0;
2901
2902 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002903 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05002904 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002905 return 1;
2906 default:
2907 return 0;
2908 }
2909}
Len Brown31e07522017-01-31 23:07:49 -05002910int has_glm_turbo_ratio_limit(unsigned int family, unsigned int model)
2911{
2912 if (!genuine_intel)
2913 return 0;
2914
2915 if (family != 6)
2916 return 0;
2917
2918 switch (model) {
2919 case INTEL_FAM6_ATOM_GOLDMONT:
2920 case INTEL_FAM6_SKYLAKE_X:
2921 return 1;
2922 default:
2923 return 0;
2924 }
2925}
Len Brown6fb31432015-06-17 16:23:45 -04002926int has_config_tdp(unsigned int family, unsigned int model)
2927{
2928 if (!genuine_intel)
2929 return 0;
2930
2931 if (family != 6)
2932 return 0;
2933
2934 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002935 case INTEL_FAM6_IVYBRIDGE: /* IVB */
2936 case INTEL_FAM6_HASWELL_CORE: /* HSW */
2937 case INTEL_FAM6_HASWELL_X: /* HSX */
2938 case INTEL_FAM6_HASWELL_ULT: /* HSW */
2939 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
2940 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
2941 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
2942 case INTEL_FAM6_BROADWELL_X: /* BDX */
2943 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
2944 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
2945 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
2946 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
2947 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
2948 case INTEL_FAM6_SKYLAKE_X: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04002949
Len Brown869ce692016-06-16 23:22:37 -04002950 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05002951 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown6fb31432015-06-17 16:23:45 -04002952 return 1;
2953 default:
2954 return 0;
2955 }
2956}
2957
Len Brownfcd17212015-03-23 20:29:09 -04002958static void
Colin Ian King1b693172016-03-02 13:50:25 +00002959dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04002960{
2961 if (!do_nhm_platform_info)
2962 return;
2963
2964 dump_nhm_platform_info();
2965
2966 if (has_hsw_turbo_ratio_limit(family, model))
2967 dump_hsw_turbo_ratio_limits();
2968
2969 if (has_ivt_turbo_ratio_limit(family, model))
2970 dump_ivt_turbo_ratio_limits();
2971
Len Brown31e07522017-01-31 23:07:49 -05002972 if (has_turbo_ratio_limit(family, model))
2973 dump_turbo_ratio_limits(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04002974
Len Brown0f7887c2017-01-12 23:49:18 -05002975 if (has_atom_turbo_ratio_limit(family, model))
2976 dump_atom_turbo_ratio_limits();
2977
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002978 if (has_knl_turbo_ratio_limit(family, model))
2979 dump_knl_turbo_ratio_limits();
2980
Len Brown6fb31432015-06-17 16:23:45 -04002981 if (has_config_tdp(family, model))
2982 dump_config_tdp();
2983
Len Brownfcd17212015-03-23 20:29:09 -04002984 dump_nhm_cst_cfg();
2985}
2986
Len Brown41618e62017-02-09 18:25:22 -05002987static void
2988dump_sysfs_cstate_config(void)
2989{
2990 char path[64];
2991 char name_buf[16];
2992 char desc[64];
2993 FILE *input;
2994 int state;
2995 char *sp;
2996
2997 if (!DO_BIC(BIC_sysfs))
2998 return;
2999
3000 for (state = 0; state < 10; ++state) {
3001
3002 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
3003 base_cpu, state);
3004 input = fopen(path, "r");
3005 if (input == NULL)
3006 continue;
3007 fgets(name_buf, sizeof(name_buf), input);
3008
3009 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
3010 sp = strchr(name_buf, '-');
3011 if (!sp)
3012 sp = strchrnul(name_buf, '\n');
3013 *sp = '\0';
3014
3015 fclose(input);
3016
3017 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/desc",
3018 base_cpu, state);
3019 input = fopen(path, "r");
3020 if (input == NULL)
3021 continue;
3022 fgets(desc, sizeof(desc), input);
3023
3024 fprintf(outf, "cpu%d: %s: %s", base_cpu, name_buf, desc);
3025 fclose(input);
3026 }
3027}
Len Brown7293fcc2017-02-22 00:11:12 -05003028static void
3029dump_sysfs_pstate_config(void)
3030{
3031 char path[64];
3032 char driver_buf[64];
3033 char governor_buf[64];
3034 FILE *input;
3035 int turbo;
3036
3037 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_driver",
3038 base_cpu);
3039 input = fopen(path, "r");
3040 if (input == NULL) {
3041 fprintf(stderr, "NSFOD %s\n", path);
3042 return;
3043 }
3044 fgets(driver_buf, sizeof(driver_buf), input);
3045 fclose(input);
3046
3047 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_governor",
3048 base_cpu);
3049 input = fopen(path, "r");
3050 if (input == NULL) {
3051 fprintf(stderr, "NSFOD %s\n", path);
3052 return;
3053 }
3054 fgets(governor_buf, sizeof(governor_buf), input);
3055 fclose(input);
3056
3057 fprintf(outf, "cpu%d: cpufreq driver: %s", base_cpu, driver_buf);
3058 fprintf(outf, "cpu%d: cpufreq governor: %s", base_cpu, governor_buf);
3059
3060 sprintf(path, "/sys/devices/system/cpu/cpufreq/boost");
3061 input = fopen(path, "r");
3062 if (input != NULL) {
3063 fscanf(input, "%d", &turbo);
3064 fprintf(outf, "cpufreq boost: %d\n", turbo);
3065 fclose(input);
3066 }
3067
3068 sprintf(path, "/sys/devices/system/cpu/intel_pstate/no_turbo");
3069 input = fopen(path, "r");
3070 if (input != NULL) {
3071 fscanf(input, "%d", &turbo);
3072 fprintf(outf, "cpufreq intel_pstate no_turbo: %d\n", turbo);
3073 fclose(input);
3074 }
3075}
Len Brown41618e62017-02-09 18:25:22 -05003076
Len Brown6574a5d2012-09-21 00:01:31 -04003077
Len Brown889facb2012-11-08 00:48:57 -05003078/*
3079 * print_epb()
3080 * Decode the ENERGY_PERF_BIAS MSR
3081 */
3082int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3083{
3084 unsigned long long msr;
3085 char *epb_string;
3086 int cpu;
3087
3088 if (!has_epb)
3089 return 0;
3090
3091 cpu = t->cpu_id;
3092
3093 /* EPB is per-package */
3094 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3095 return 0;
3096
3097 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003098 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003099 return -1;
3100 }
3101
3102 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
3103 return 0;
3104
Len Browne9be7dd2015-05-26 12:19:37 -04003105 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05003106 case ENERGY_PERF_BIAS_PERFORMANCE:
3107 epb_string = "performance";
3108 break;
3109 case ENERGY_PERF_BIAS_NORMAL:
3110 epb_string = "balanced";
3111 break;
3112 case ENERGY_PERF_BIAS_POWERSAVE:
3113 epb_string = "powersave";
3114 break;
3115 default:
3116 epb_string = "custom";
3117 break;
3118 }
Len Brownb7d8c142016-02-13 23:36:17 -05003119 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05003120
3121 return 0;
3122}
Len Brown7f5c2582015-12-01 01:36:39 -05003123/*
3124 * print_hwp()
3125 * Decode the MSR_HWP_CAPABILITIES
3126 */
3127int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3128{
3129 unsigned long long msr;
3130 int cpu;
3131
3132 if (!has_hwp)
3133 return 0;
3134
3135 cpu = t->cpu_id;
3136
3137 /* MSR_HWP_CAPABILITIES is per-package */
3138 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3139 return 0;
3140
3141 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003142 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05003143 return -1;
3144 }
3145
3146 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
3147 return 0;
3148
Len Brownb7d8c142016-02-13 23:36:17 -05003149 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003150 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
3151
3152 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
3153 if ((msr & (1 << 0)) == 0)
3154 return 0;
3155
3156 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
3157 return 0;
3158
Len Brownb7d8c142016-02-13 23:36:17 -05003159 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003160 "(high %d guar %d eff %d low %d)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003161 cpu, msr,
3162 (unsigned int)HWP_HIGHEST_PERF(msr),
3163 (unsigned int)HWP_GUARANTEED_PERF(msr),
3164 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
3165 (unsigned int)HWP_LOWEST_PERF(msr));
3166
3167 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
3168 return 0;
3169
Len Brownb7d8c142016-02-13 23:36:17 -05003170 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003171 "(min %d max %d des %d epp 0x%x window 0x%x pkg 0x%x)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003172 cpu, msr,
3173 (unsigned int)(((msr) >> 0) & 0xff),
3174 (unsigned int)(((msr) >> 8) & 0xff),
3175 (unsigned int)(((msr) >> 16) & 0xff),
3176 (unsigned int)(((msr) >> 24) & 0xff),
3177 (unsigned int)(((msr) >> 32) & 0xff3),
3178 (unsigned int)(((msr) >> 42) & 0x1));
3179
3180 if (has_hwp_pkg) {
3181 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
3182 return 0;
3183
Len Brownb7d8c142016-02-13 23:36:17 -05003184 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003185 "(min %d max %d des %d epp 0x%x window 0x%x)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003186 cpu, msr,
3187 (unsigned int)(((msr) >> 0) & 0xff),
3188 (unsigned int)(((msr) >> 8) & 0xff),
3189 (unsigned int)(((msr) >> 16) & 0xff),
3190 (unsigned int)(((msr) >> 24) & 0xff),
3191 (unsigned int)(((msr) >> 32) & 0xff3));
3192 }
3193 if (has_hwp_notify) {
3194 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
3195 return 0;
3196
Len Brownb7d8c142016-02-13 23:36:17 -05003197 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003198 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
3199 cpu, msr,
3200 ((msr) & 0x1) ? "EN" : "Dis",
3201 ((msr) & 0x2) ? "EN" : "Dis");
3202 }
3203 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
3204 return 0;
3205
Len Brownb7d8c142016-02-13 23:36:17 -05003206 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003207 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
3208 cpu, msr,
3209 ((msr) & 0x1) ? "" : "No-",
3210 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05003211
3212 return 0;
3213}
3214
Len Brown3a9a9412014-08-15 02:39:52 -04003215/*
3216 * print_perf_limit()
3217 */
3218int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3219{
3220 unsigned long long msr;
3221 int cpu;
3222
3223 cpu = t->cpu_id;
3224
3225 /* per-package */
3226 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3227 return 0;
3228
3229 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003230 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04003231 return -1;
3232 }
3233
3234 if (do_core_perf_limit_reasons) {
3235 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003236 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3237 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04003238 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003239 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003240 (msr & 1 << 13) ? "Transitions, " : "",
3241 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
3242 (msr & 1 << 11) ? "PkgPwrL2, " : "",
3243 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3244 (msr & 1 << 9) ? "CorePwr, " : "",
3245 (msr & 1 << 8) ? "Amps, " : "",
3246 (msr & 1 << 6) ? "VR-Therm, " : "",
3247 (msr & 1 << 5) ? "Auto-HWP, " : "",
3248 (msr & 1 << 4) ? "Graphics, " : "",
3249 (msr & 1 << 2) ? "bit2, " : "",
3250 (msr & 1 << 1) ? "ThermStatus, " : "",
3251 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003252 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 -04003253 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003254 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003255 (msr & 1 << 29) ? "Transitions, " : "",
3256 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
3257 (msr & 1 << 27) ? "PkgPwrL2, " : "",
3258 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3259 (msr & 1 << 25) ? "CorePwr, " : "",
3260 (msr & 1 << 24) ? "Amps, " : "",
3261 (msr & 1 << 22) ? "VR-Therm, " : "",
3262 (msr & 1 << 21) ? "Auto-HWP, " : "",
3263 (msr & 1 << 20) ? "Graphics, " : "",
3264 (msr & 1 << 18) ? "bit18, " : "",
3265 (msr & 1 << 17) ? "ThermStatus, " : "",
3266 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04003267
3268 }
3269 if (do_gfx_perf_limit_reasons) {
3270 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003271 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3272 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003273 (msr & 1 << 0) ? "PROCHOT, " : "",
3274 (msr & 1 << 1) ? "ThermStatus, " : "",
3275 (msr & 1 << 4) ? "Graphics, " : "",
3276 (msr & 1 << 6) ? "VR-Therm, " : "",
3277 (msr & 1 << 8) ? "Amps, " : "",
3278 (msr & 1 << 9) ? "GFXPwr, " : "",
3279 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3280 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003281 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003282 (msr & 1 << 16) ? "PROCHOT, " : "",
3283 (msr & 1 << 17) ? "ThermStatus, " : "",
3284 (msr & 1 << 20) ? "Graphics, " : "",
3285 (msr & 1 << 22) ? "VR-Therm, " : "",
3286 (msr & 1 << 24) ? "Amps, " : "",
3287 (msr & 1 << 25) ? "GFXPwr, " : "",
3288 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3289 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3290 }
3291 if (do_ring_perf_limit_reasons) {
3292 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003293 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3294 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003295 (msr & 1 << 0) ? "PROCHOT, " : "",
3296 (msr & 1 << 1) ? "ThermStatus, " : "",
3297 (msr & 1 << 6) ? "VR-Therm, " : "",
3298 (msr & 1 << 8) ? "Amps, " : "",
3299 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3300 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003301 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003302 (msr & 1 << 16) ? "PROCHOT, " : "",
3303 (msr & 1 << 17) ? "ThermStatus, " : "",
3304 (msr & 1 << 22) ? "VR-Therm, " : "",
3305 (msr & 1 << 24) ? "Amps, " : "",
3306 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3307 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3308 }
3309 return 0;
3310}
3311
Len Brown889facb2012-11-08 00:48:57 -05003312#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
3313#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
3314
Colin Ian King1b693172016-03-02 13:50:25 +00003315double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05003316{
3317 unsigned long long msr;
3318
3319 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003320 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05003321 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
3322
3323 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003324 case INTEL_FAM6_ATOM_SILVERMONT1:
3325 case INTEL_FAM6_ATOM_SILVERMONT2:
Len Brown144b44b2013-11-09 00:30:16 -05003326 return 30.0;
3327 default:
3328 return 135.0;
3329 }
3330}
3331
Andrey Semin40ee8e32014-12-05 00:07:00 -05003332/*
3333 * rapl_dram_energy_units_probe()
3334 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
3335 */
3336static double
3337rapl_dram_energy_units_probe(int model, double rapl_energy_units)
3338{
3339 /* only called for genuine_intel, family 6 */
3340
3341 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003342 case INTEL_FAM6_HASWELL_X: /* HSX */
3343 case INTEL_FAM6_BROADWELL_X: /* BDX */
3344 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3345 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003346 case INTEL_FAM6_XEON_PHI_KNM:
Andrey Semin40ee8e32014-12-05 00:07:00 -05003347 return (rapl_dram_energy_units = 15.3 / 1000000);
3348 default:
3349 return (rapl_energy_units);
3350 }
3351}
3352
Len Brown144b44b2013-11-09 00:30:16 -05003353
Len Brown889facb2012-11-08 00:48:57 -05003354/*
3355 * rapl_probe()
3356 *
Len Brown144b44b2013-11-09 00:30:16 -05003357 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05003358 */
3359void rapl_probe(unsigned int family, unsigned int model)
3360{
3361 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05003362 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05003363 double tdp;
3364
3365 if (!genuine_intel)
3366 return;
3367
3368 if (family != 6)
3369 return;
3370
3371 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003372 case INTEL_FAM6_SANDYBRIDGE:
3373 case INTEL_FAM6_IVYBRIDGE:
3374 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3375 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3376 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3377 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3378 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05003379 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003380 if (rapl_joules) {
3381 BIC_PRESENT(BIC_Pkg_J);
3382 BIC_PRESENT(BIC_Cor_J);
3383 BIC_PRESENT(BIC_GFX_J);
3384 } else {
3385 BIC_PRESENT(BIC_PkgWatt);
3386 BIC_PRESENT(BIC_CorWatt);
3387 BIC_PRESENT(BIC_GFXWatt);
3388 }
Len Brown889facb2012-11-08 00:48:57 -05003389 break;
Len Brown869ce692016-06-16 23:22:37 -04003390 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003391 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne4085d52016-04-06 17:15:56 -04003392 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003393 if (rapl_joules)
3394 BIC_PRESENT(BIC_Pkg_J);
3395 else
3396 BIC_PRESENT(BIC_PkgWatt);
Len Browne4085d52016-04-06 17:15:56 -04003397 break;
Len Brown869ce692016-06-16 23:22:37 -04003398 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3399 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3400 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3401 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown81824922017-03-04 17:23:07 -05003402 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_DRAM | RAPL_DRAM_PERF_STATUS | RAPL_PKG_PERF_STATUS | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003403 BIC_PRESENT(BIC_PKG__);
3404 BIC_PRESENT(BIC_RAM__);
3405 if (rapl_joules) {
3406 BIC_PRESENT(BIC_Pkg_J);
3407 BIC_PRESENT(BIC_Cor_J);
3408 BIC_PRESENT(BIC_RAM_J);
Len Brown81824922017-03-04 17:23:07 -05003409 BIC_PRESENT(BIC_GFX_J);
Len Brown812db3f2017-02-10 00:25:41 -05003410 } else {
3411 BIC_PRESENT(BIC_PkgWatt);
3412 BIC_PRESENT(BIC_CorWatt);
3413 BIC_PRESENT(BIC_RAMWatt);
Len Brown81824922017-03-04 17:23:07 -05003414 BIC_PRESENT(BIC_GFXWatt);
Len Brown812db3f2017-02-10 00:25:41 -05003415 }
Len Brown0b2bb692015-03-26 00:50:30 -04003416 break;
Len Brown869ce692016-06-16 23:22:37 -04003417 case INTEL_FAM6_HASWELL_X: /* HSX */
3418 case INTEL_FAM6_BROADWELL_X: /* BDX */
3419 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3420 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3421 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003422 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown0b2bb692015-03-26 00:50:30 -04003423 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 -05003424 BIC_PRESENT(BIC_PKG__);
3425 BIC_PRESENT(BIC_RAM__);
3426 if (rapl_joules) {
3427 BIC_PRESENT(BIC_Pkg_J);
3428 BIC_PRESENT(BIC_RAM_J);
3429 } else {
3430 BIC_PRESENT(BIC_PkgWatt);
3431 BIC_PRESENT(BIC_RAMWatt);
3432 }
Len Browne6f9bb32013-12-03 02:19:19 -05003433 break;
Len Brown869ce692016-06-16 23:22:37 -04003434 case INTEL_FAM6_SANDYBRIDGE_X:
3435 case INTEL_FAM6_IVYBRIDGE_X:
Len Brown0b2bb692015-03-26 00:50:30 -04003436 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 -05003437 BIC_PRESENT(BIC_PKG__);
3438 BIC_PRESENT(BIC_RAM__);
3439 if (rapl_joules) {
3440 BIC_PRESENT(BIC_Pkg_J);
3441 BIC_PRESENT(BIC_Cor_J);
3442 BIC_PRESENT(BIC_RAM_J);
3443 } else {
3444 BIC_PRESENT(BIC_PkgWatt);
3445 BIC_PRESENT(BIC_CorWatt);
3446 BIC_PRESENT(BIC_RAMWatt);
3447 }
Len Brown144b44b2013-11-09 00:30:16 -05003448 break;
Len Brown869ce692016-06-16 23:22:37 -04003449 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
3450 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Jacob Pan91484942016-06-16 09:48:20 -07003451 do_rapl = RAPL_PKG | RAPL_CORES;
Len Brown812db3f2017-02-10 00:25:41 -05003452 if (rapl_joules) {
3453 BIC_PRESENT(BIC_Pkg_J);
3454 BIC_PRESENT(BIC_Cor_J);
3455 } else {
3456 BIC_PRESENT(BIC_PkgWatt);
3457 BIC_PRESENT(BIC_CorWatt);
3458 }
Len Brown889facb2012-11-08 00:48:57 -05003459 break;
Len Brown869ce692016-06-16 23:22:37 -04003460 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Jacob Pan0f644902016-06-16 09:48:22 -07003461 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 -05003462 BIC_PRESENT(BIC_PKG__);
3463 BIC_PRESENT(BIC_RAM__);
3464 if (rapl_joules) {
3465 BIC_PRESENT(BIC_Pkg_J);
3466 BIC_PRESENT(BIC_Cor_J);
3467 BIC_PRESENT(BIC_RAM_J);
3468 } else {
3469 BIC_PRESENT(BIC_PkgWatt);
3470 BIC_PRESENT(BIC_CorWatt);
3471 BIC_PRESENT(BIC_RAMWatt);
3472 }
Jacob Pan0f644902016-06-16 09:48:22 -07003473 break;
Len Brown889facb2012-11-08 00:48:57 -05003474 default:
3475 return;
3476 }
3477
3478 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003479 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003480 return;
3481
3482 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown869ce692016-06-16 23:22:37 -04003483 if (model == INTEL_FAM6_ATOM_SILVERMONT1)
Len Brown144b44b2013-11-09 00:30:16 -05003484 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
3485 else
3486 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05003487
Andrey Semin40ee8e32014-12-05 00:07:00 -05003488 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
3489
Len Brown144b44b2013-11-09 00:30:16 -05003490 time_unit = msr >> 16 & 0xF;
3491 if (time_unit == 0)
3492 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05003493
Len Brown144b44b2013-11-09 00:30:16 -05003494 rapl_time_units = 1.0 / (1 << (time_unit));
3495
3496 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05003497
3498 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brown96e47152017-01-21 02:26:00 -05003499 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003500 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05003501
3502 return;
3503}
3504
Colin Ian King1b693172016-03-02 13:50:25 +00003505void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04003506{
3507 if (!genuine_intel)
3508 return;
3509
3510 if (family != 6)
3511 return;
3512
3513 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003514 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3515 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3516 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
Len Brown3a9a9412014-08-15 02:39:52 -04003517 do_gfx_perf_limit_reasons = 1;
Len Brown869ce692016-06-16 23:22:37 -04003518 case INTEL_FAM6_HASWELL_X: /* HSX */
Len Brown3a9a9412014-08-15 02:39:52 -04003519 do_core_perf_limit_reasons = 1;
3520 do_ring_perf_limit_reasons = 1;
3521 default:
3522 return;
3523 }
3524}
3525
Len Brown889facb2012-11-08 00:48:57 -05003526int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3527{
3528 unsigned long long msr;
Len Brownf4896fa52017-03-04 18:10:45 -05003529 unsigned int dts, dts2;
Len Brown889facb2012-11-08 00:48:57 -05003530 int cpu;
3531
3532 if (!(do_dts || do_ptm))
3533 return 0;
3534
3535 cpu = t->cpu_id;
3536
3537 /* DTS is per-core, no need to print for each thread */
Len Brown388e9c82016-12-22 23:57:55 -05003538 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
Len Brown889facb2012-11-08 00:48:57 -05003539 return 0;
3540
3541 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003542 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003543 return -1;
3544 }
3545
3546 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
3547 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
3548 return 0;
3549
3550 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003551 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003552 cpu, msr, tcc_activation_temp - dts);
3553
Len Brown889facb2012-11-08 00:48:57 -05003554 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
3555 return 0;
3556
3557 dts = (msr >> 16) & 0x7F;
3558 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003559 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003560 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
Len Brown889facb2012-11-08 00:48:57 -05003561 }
3562
3563
Len Brownf4896fa52017-03-04 18:10:45 -05003564 if (do_dts && debug) {
Len Brown889facb2012-11-08 00:48:57 -05003565 unsigned int resolution;
3566
3567 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
3568 return 0;
3569
3570 dts = (msr >> 16) & 0x7F;
3571 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05003572 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05003573 cpu, msr, tcc_activation_temp - dts, resolution);
3574
Len Brown889facb2012-11-08 00:48:57 -05003575 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
3576 return 0;
3577
3578 dts = (msr >> 16) & 0x7F;
3579 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003580 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003581 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
Len Brown889facb2012-11-08 00:48:57 -05003582 }
3583
3584 return 0;
3585}
Len Brown36229892016-02-26 20:51:02 -05003586
Len Brown889facb2012-11-08 00:48:57 -05003587void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
3588{
Len Brownb7d8c142016-02-13 23:36:17 -05003589 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003590 cpu, label,
3591 ((msr >> 15) & 1) ? "EN" : "DIS",
3592 ((msr >> 0) & 0x7FFF) * rapl_power_units,
3593 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
3594 (((msr >> 16) & 1) ? "EN" : "DIS"));
3595
3596 return;
3597}
3598
3599int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3600{
3601 unsigned long long msr;
3602 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05003603
3604 if (!do_rapl)
3605 return 0;
3606
3607 /* RAPL counters are per package, so print only for 1st thread/package */
3608 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3609 return 0;
3610
3611 cpu = t->cpu_id;
3612 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003613 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003614 return -1;
3615 }
3616
3617 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
3618 return -1;
3619
Len Brown96e47152017-01-21 02:26:00 -05003620 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx (%f Watts, %f Joules, %f sec.)\n", cpu, msr,
3621 rapl_power_units, rapl_energy_units, rapl_time_units);
3622
Len Brown144b44b2013-11-09 00:30:16 -05003623 if (do_rapl & RAPL_PKG_POWER_INFO) {
3624
Len Brown889facb2012-11-08 00:48:57 -05003625 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
3626 return -5;
3627
3628
Len Brownb7d8c142016-02-13 23:36:17 -05003629 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 -05003630 cpu, msr,
3631 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3632 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3633 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3634 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
3635
Len Brown144b44b2013-11-09 00:30:16 -05003636 }
3637 if (do_rapl & RAPL_PKG) {
3638
Len Brown889facb2012-11-08 00:48:57 -05003639 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
3640 return -9;
3641
Len Brownb7d8c142016-02-13 23:36:17 -05003642 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003643 cpu, msr, (msr >> 63) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003644
3645 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05003646 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003647 cpu,
3648 ((msr >> 47) & 1) ? "EN" : "DIS",
3649 ((msr >> 32) & 0x7FFF) * rapl_power_units,
3650 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
3651 ((msr >> 48) & 1) ? "EN" : "DIS");
3652 }
3653
Len Brown0b2bb692015-03-26 00:50:30 -04003654 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05003655 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
3656 return -6;
3657
Len Brownb7d8c142016-02-13 23:36:17 -05003658 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 -05003659 cpu, msr,
3660 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3661 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3662 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3663 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04003664 }
3665 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05003666 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
3667 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05003668 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003669 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003670
3671 print_power_limit_msr(cpu, msr, "DRAM Limit");
3672 }
Len Brown144b44b2013-11-09 00:30:16 -05003673 if (do_rapl & RAPL_CORE_POLICY) {
Len Brown96e47152017-01-21 02:26:00 -05003674 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
3675 return -7;
Len Brown889facb2012-11-08 00:48:57 -05003676
Len Brown96e47152017-01-21 02:26:00 -05003677 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05003678 }
Jacob Pan91484942016-06-16 09:48:20 -07003679 if (do_rapl & RAPL_CORES_POWER_LIMIT) {
Len Brown96e47152017-01-21 02:26:00 -05003680 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
3681 return -9;
3682 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
3683 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3684 print_power_limit_msr(cpu, msr, "Cores Limit");
Len Brown889facb2012-11-08 00:48:57 -05003685 }
3686 if (do_rapl & RAPL_GFX) {
Len Brown96e47152017-01-21 02:26:00 -05003687 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
3688 return -8;
Len Brown889facb2012-11-08 00:48:57 -05003689
Len Brown96e47152017-01-21 02:26:00 -05003690 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05003691
Len Brown96e47152017-01-21 02:26:00 -05003692 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
3693 return -9;
3694 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
3695 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3696 print_power_limit_msr(cpu, msr, "GFX Limit");
Len Brown889facb2012-11-08 00:48:57 -05003697 }
3698 return 0;
3699}
3700
Len Brownd7899442015-01-23 00:12:33 -05003701/*
3702 * SNB adds support for additional MSRs:
3703 *
3704 * MSR_PKG_C7_RESIDENCY 0x000003fa
3705 * MSR_CORE_C7_RESIDENCY 0x000003fe
3706 * MSR_PKG_C2_RESIDENCY 0x0000060d
3707 */
Len Brown103a8fe2010-10-22 23:53:03 -04003708
Len Brownd7899442015-01-23 00:12:33 -05003709int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04003710{
3711 if (!genuine_intel)
3712 return 0;
3713
3714 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003715 case INTEL_FAM6_SANDYBRIDGE:
3716 case INTEL_FAM6_SANDYBRIDGE_X:
3717 case INTEL_FAM6_IVYBRIDGE: /* IVB */
3718 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
3719 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3720 case INTEL_FAM6_HASWELL_X: /* HSW */
3721 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3722 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3723 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3724 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
3725 case INTEL_FAM6_BROADWELL_X: /* BDX */
3726 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3727 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3728 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3729 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3730 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3731 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3732 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003733 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Xiaolong Wang5bbac262016-09-30 17:53:40 +08003734 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brown103a8fe2010-10-22 23:53:03 -04003735 return 1;
3736 }
3737 return 0;
3738}
3739
Len Brownd7899442015-01-23 00:12:33 -05003740/*
3741 * HSW adds support for additional MSRs:
3742 *
Len Brown5a634262016-04-06 17:15:55 -04003743 * MSR_PKG_C8_RESIDENCY 0x00000630
3744 * MSR_PKG_C9_RESIDENCY 0x00000631
3745 * MSR_PKG_C10_RESIDENCY 0x00000632
3746 *
3747 * MSR_PKGC8_IRTL 0x00000633
3748 * MSR_PKGC9_IRTL 0x00000634
3749 * MSR_PKGC10_IRTL 0x00000635
3750 *
Len Brownd7899442015-01-23 00:12:33 -05003751 */
3752int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003753{
3754 if (!genuine_intel)
3755 return 0;
3756
3757 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003758 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3759 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3760 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3761 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3762 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3763 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3764 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003765 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003766 return 1;
3767 }
3768 return 0;
3769}
3770
Len Brown0b2bb692015-03-26 00:50:30 -04003771/*
3772 * SKL adds support for additional MSRS:
3773 *
3774 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
3775 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
3776 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
3777 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
3778 */
3779int has_skl_msrs(unsigned int family, unsigned int model)
3780{
3781 if (!genuine_intel)
3782 return 0;
3783
3784 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003785 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3786 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3787 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3788 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04003789 return 1;
3790 }
3791 return 0;
3792}
3793
Len Brown144b44b2013-11-09 00:30:16 -05003794int is_slm(unsigned int family, unsigned int model)
3795{
3796 if (!genuine_intel)
3797 return 0;
3798 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003799 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
3800 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brown144b44b2013-11-09 00:30:16 -05003801 return 1;
3802 }
3803 return 0;
3804}
3805
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003806int is_knl(unsigned int family, unsigned int model)
3807{
3808 if (!genuine_intel)
3809 return 0;
3810 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003811 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003812 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003813 return 1;
3814 }
3815 return 0;
3816}
3817
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02003818unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
3819{
3820 if (is_knl(family, model))
3821 return 1024;
3822 return 1;
3823}
3824
Len Brown144b44b2013-11-09 00:30:16 -05003825#define SLM_BCLK_FREQS 5
3826double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
3827
3828double slm_bclk(void)
3829{
3830 unsigned long long msr = 3;
3831 unsigned int i;
3832 double freq;
3833
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003834 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05003835 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05003836
3837 i = msr & 0xf;
3838 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05003839 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Colin Ian King0a91e552016-04-25 13:03:15 +01003840 i = 3;
Len Brown144b44b2013-11-09 00:30:16 -05003841 }
3842 freq = slm_freq_table[i];
3843
Len Brown96e47152017-01-21 02:26:00 -05003844 if (!quiet)
Len Brown8f6196c2017-01-07 22:40:23 -05003845 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05003846
3847 return freq;
3848}
3849
Len Brown103a8fe2010-10-22 23:53:03 -04003850double discover_bclk(unsigned int family, unsigned int model)
3851{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01003852 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04003853 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05003854 else if (is_slm(family, model))
3855 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04003856 else
3857 return 133.33;
3858}
3859
Len Brown889facb2012-11-08 00:48:57 -05003860/*
3861 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
3862 * the Thermal Control Circuit (TCC) activates.
3863 * This is usually equal to tjMax.
3864 *
3865 * Older processors do not have this MSR, so there we guess,
3866 * but also allow cmdline over-ride with -T.
3867 *
3868 * Several MSR temperature values are in units of degrees-C
3869 * below this value, including the Digital Thermal Sensor (DTS),
3870 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
3871 */
3872int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3873{
3874 unsigned long long msr;
3875 unsigned int target_c_local;
3876 int cpu;
3877
3878 /* tcc_activation_temp is used only for dts or ptm */
3879 if (!(do_dts || do_ptm))
3880 return 0;
3881
3882 /* this is a per-package concept */
3883 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3884 return 0;
3885
3886 cpu = t->cpu_id;
3887 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003888 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003889 return -1;
3890 }
3891
3892 if (tcc_activation_temp_override != 0) {
3893 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05003894 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003895 cpu, tcc_activation_temp);
3896 return 0;
3897 }
3898
3899 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05003900 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05003901 goto guess;
3902
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003903 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003904 goto guess;
3905
Jean Delvare34821242014-05-01 11:40:19 +02003906 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05003907
Len Brown96e47152017-01-21 02:26:00 -05003908 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003909 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003910 cpu, msr, target_c_local);
3911
Jean Delvare34821242014-05-01 11:40:19 +02003912 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05003913 goto guess;
3914
3915 tcc_activation_temp = target_c_local;
3916
3917 return 0;
3918
3919guess:
3920 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05003921 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05003922 cpu, tcc_activation_temp);
3923
3924 return 0;
3925}
Len Brown69807a62015-11-21 12:22:47 -05003926
Len Brownaa8d8cc2016-03-11 13:26:03 -05003927void decode_feature_control_msr(void)
3928{
3929 unsigned long long msr;
3930
3931 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
3932 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
3933 base_cpu, msr,
3934 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
3935 msr & (1 << 18) ? "SGX" : "");
3936}
3937
Len Brown69807a62015-11-21 12:22:47 -05003938void decode_misc_enable_msr(void)
3939{
3940 unsigned long long msr;
3941
3942 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Browne6512622017-01-11 23:17:24 -05003943 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%sTCC %sEIST %sMWAIT %sPREFETCH %sTURBO)\n",
Len Brown69807a62015-11-21 12:22:47 -05003944 base_cpu, msr,
Len Browne6512622017-01-11 23:17:24 -05003945 msr & MSR_IA32_MISC_ENABLE_TM1 ? "" : "No-",
3946 msr & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP ? "" : "No-",
3947 msr & MSR_IA32_MISC_ENABLE_MWAIT ? "No-" : "",
3948 msr & MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE ? "No-" : "",
3949 msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ? "No-" : "");
Len Brown69807a62015-11-21 12:22:47 -05003950}
3951
Len Brown33148d62017-01-21 01:26:16 -05003952void decode_misc_feature_control(void)
3953{
3954 unsigned long long msr;
3955
3956 if (!has_misc_feature_control)
3957 return;
3958
3959 if (!get_msr(base_cpu, MSR_MISC_FEATURE_CONTROL, &msr))
3960 fprintf(outf, "cpu%d: MSR_MISC_FEATURE_CONTROL: 0x%08llx (%sL2-Prefetch %sL2-Prefetch-pair %sL1-Prefetch %sL1-IP-Prefetch)\n",
3961 base_cpu, msr,
3962 msr & (0 << 0) ? "No-" : "",
3963 msr & (1 << 0) ? "No-" : "",
3964 msr & (2 << 0) ? "No-" : "",
3965 msr & (3 << 0) ? "No-" : "");
3966}
Len Brownf0057312015-12-03 01:35:36 -05003967/*
3968 * Decode MSR_MISC_PWR_MGMT
3969 *
3970 * Decode the bits according to the Nehalem documentation
3971 * bit[0] seems to continue to have same meaning going forward
3972 * bit[1] less so...
3973 */
3974void decode_misc_pwr_mgmt_msr(void)
3975{
3976 unsigned long long msr;
3977
3978 if (!do_nhm_platform_info)
3979 return;
3980
Len Browncf4cbe52017-01-01 13:08:33 -05003981 if (no_MSR_MISC_PWR_MGMT)
3982 return;
3983
Len Brownf0057312015-12-03 01:35:36 -05003984 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08003985 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 -05003986 base_cpu, msr,
3987 msr & (1 << 0) ? "DIS" : "EN",
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08003988 msr & (1 << 1) ? "EN" : "DIS",
3989 msr & (1 << 8) ? "EN" : "DIS");
Len Brownf0057312015-12-03 01:35:36 -05003990}
Len Brown71616c82017-01-07 22:37:48 -05003991/*
3992 * Decode MSR_CC6_DEMOTION_POLICY_CONFIG, MSR_MC6_DEMOTION_POLICY_CONFIG
3993 *
3994 * This MSRs are present on Silvermont processors,
3995 * Intel Atom processor E3000 series (Baytrail), and friends.
3996 */
3997void decode_c6_demotion_policy_msr(void)
3998{
3999 unsigned long long msr;
4000
4001 if (!get_msr(base_cpu, MSR_CC6_DEMOTION_POLICY_CONFIG, &msr))
4002 fprintf(outf, "cpu%d: MSR_CC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-CC6-Demotion)\n",
4003 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
4004
4005 if (!get_msr(base_cpu, MSR_MC6_DEMOTION_POLICY_CONFIG, &msr))
4006 fprintf(outf, "cpu%d: MSR_MC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-MC6-Demotion)\n",
4007 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
4008}
Len Brown7f5c2582015-12-01 01:36:39 -05004009
Len Brownfcd17212015-03-23 20:29:09 -04004010void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04004011{
Len Brown61a87ba2015-11-23 02:30:51 -05004012 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04004013 unsigned int fms, family, model, stepping;
Len Brownb3a34e92017-01-21 00:50:08 -05004014 unsigned int has_turbo;
Len Brown103a8fe2010-10-22 23:53:03 -04004015
4016 eax = ebx = ecx = edx = 0;
4017
Len Brown5aea2f72016-03-13 03:14:35 -04004018 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004019
4020 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
4021 genuine_intel = 1;
4022
Len Brown96e47152017-01-21 02:26:00 -05004023 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004024 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04004025 (char *)&ebx, (char *)&edx, (char *)&ecx);
4026
Len Brown5aea2f72016-03-13 03:14:35 -04004027 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004028 family = (fms >> 8) & 0xf;
4029 model = (fms >> 4) & 0xf;
4030 stepping = fms & 0xf;
4031 if (family == 6 || family == 0xf)
4032 model += ((fms >> 16) & 0xf) << 4;
4033
Len Brown96e47152017-01-21 02:26:00 -05004034 if (!quiet) {
Len Brownb7d8c142016-02-13 23:36:17 -05004035 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04004036 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05004037 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05004038 ecx & (1 << 0) ? "SSE3" : "-",
4039 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05004040 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05004041 ecx & (1 << 7) ? "EIST" : "-",
4042 ecx & (1 << 8) ? "TM2" : "-",
4043 edx & (1 << 4) ? "TSC" : "-",
4044 edx & (1 << 5) ? "MSR" : "-",
4045 edx & (1 << 22) ? "ACPI-TM" : "-",
4046 edx & (1 << 29) ? "TM" : "-");
4047 }
Len Brown103a8fe2010-10-22 23:53:03 -04004048
Josh Triplettb2c95d92013-08-20 17:20:18 -07004049 if (!(edx & (1 << 5)))
4050 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04004051
4052 /*
4053 * check max extended function levels of CPUID.
4054 * This is needed to check for invariant TSC.
4055 * This check is valid for both Intel and AMD.
4056 */
4057 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04004058 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004059
Len Brown61a87ba2015-11-23 02:30:51 -05004060 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04004061
Len Brownd7899442015-01-23 00:12:33 -05004062 /*
4063 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
4064 * this check is valid for both Intel and AMD
4065 */
Len Brown5aea2f72016-03-13 03:14:35 -04004066 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05004067 has_invariant_tsc = edx & (1 << 8);
4068 }
Len Brown103a8fe2010-10-22 23:53:03 -04004069
4070 /*
4071 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
4072 * this check is valid for both Intel and AMD
4073 */
4074
Len Brown5aea2f72016-03-13 03:14:35 -04004075 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01004076 has_aperf = ecx & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05004077 if (has_aperf) {
4078 BIC_PRESENT(BIC_Avg_MHz);
4079 BIC_PRESENT(BIC_Busy);
4080 BIC_PRESENT(BIC_Bzy_MHz);
4081 }
Len Brown889facb2012-11-08 00:48:57 -05004082 do_dts = eax & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05004083 if (do_dts)
4084 BIC_PRESENT(BIC_CoreTmp);
Len Brownb3a34e92017-01-21 00:50:08 -05004085 has_turbo = eax & (1 << 1);
Len Brown889facb2012-11-08 00:48:57 -05004086 do_ptm = eax & (1 << 6);
Len Brown812db3f2017-02-10 00:25:41 -05004087 if (do_ptm)
4088 BIC_PRESENT(BIC_PkgTmp);
Len Brown7f5c2582015-12-01 01:36:39 -05004089 has_hwp = eax & (1 << 7);
4090 has_hwp_notify = eax & (1 << 8);
4091 has_hwp_activity_window = eax & (1 << 9);
4092 has_hwp_epp = eax & (1 << 10);
4093 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05004094 has_epb = ecx & (1 << 3);
4095
Len Brown96e47152017-01-21 02:26:00 -05004096 if (!quiet)
Len Brownb3a34e92017-01-21 00:50:08 -05004097 fprintf(outf, "CPUID(6): %sAPERF, %sTURBO, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05004098 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
4099 has_aperf ? "" : "No-",
Len Brownb3a34e92017-01-21 00:50:08 -05004100 has_turbo ? "" : "No-",
Len Brown7f5c2582015-12-01 01:36:39 -05004101 do_dts ? "" : "No-",
4102 do_ptm ? "" : "No-",
4103 has_hwp ? "" : "No-",
4104 has_hwp_notify ? "" : "No-",
4105 has_hwp_activity_window ? "" : "No-",
4106 has_hwp_epp ? "" : "No-",
4107 has_hwp_pkg ? "" : "No-",
4108 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04004109
Len Brown96e47152017-01-21 02:26:00 -05004110 if (!quiet)
Len Brown69807a62015-11-21 12:22:47 -05004111 decode_misc_enable_msr();
4112
Len Brown33148d62017-01-21 01:26:16 -05004113
Len Brown96e47152017-01-21 02:26:00 -05004114 if (max_level >= 0x7 && !quiet) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05004115 int has_sgx;
4116
4117 ecx = 0;
4118
4119 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
4120
4121 has_sgx = ebx & (1 << 2);
4122 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
4123
4124 if (has_sgx)
4125 decode_feature_control_msr();
4126 }
4127
Len Brown61a87ba2015-11-23 02:30:51 -05004128 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04004129 unsigned int eax_crystal;
4130 unsigned int ebx_tsc;
4131
4132 /*
4133 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
4134 */
4135 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04004136 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04004137
4138 if (ebx_tsc != 0) {
4139
Len Brown96e47152017-01-21 02:26:00 -05004140 if (!quiet && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05004141 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004142 eax_crystal, ebx_tsc, crystal_hz);
4143
4144 if (crystal_hz == 0)
4145 switch(model) {
Len Brown869ce692016-06-16 23:22:37 -04004146 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
4147 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
4148 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
4149 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04004150 crystal_hz = 24000000; /* 24.0 MHz */
4151 break;
Len Brown869ce692016-06-16 23:22:37 -04004152 case INTEL_FAM6_SKYLAKE_X: /* SKX */
Len Brown7268d402016-12-01 23:10:39 -05004153 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brownec53e592016-04-06 17:15:58 -04004154 crystal_hz = 25000000; /* 25.0 MHz */
4155 break;
Len Brown869ce692016-06-16 23:22:37 -04004156 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05004157 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne8efbc82016-04-06 17:15:57 -04004158 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04004159 break;
4160 default:
4161 crystal_hz = 0;
4162 }
4163
4164 if (crystal_hz) {
4165 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
Len Brown96e47152017-01-21 02:26:00 -05004166 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004167 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004168 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
4169 }
4170 }
4171 }
Len Brown61a87ba2015-11-23 02:30:51 -05004172 if (max_level >= 0x16) {
4173 unsigned int base_mhz, max_mhz, bus_mhz, edx;
4174
4175 /*
4176 * CPUID 16H Base MHz, Max MHz, Bus MHz
4177 */
4178 base_mhz = max_mhz = bus_mhz = edx = 0;
4179
Len Brown5aea2f72016-03-13 03:14:35 -04004180 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown96e47152017-01-21 02:26:00 -05004181 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004182 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05004183 base_mhz, max_mhz, bus_mhz);
4184 }
Len Brown8a5bdf42015-04-01 21:02:57 -04004185
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02004186 if (has_aperf)
4187 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
4188
Len Brown812db3f2017-02-10 00:25:41 -05004189 BIC_PRESENT(BIC_IRQ);
4190 BIC_PRESENT(BIC_TSC_MHz);
4191
4192 if (probe_nhm_msrs(family, model)) {
4193 do_nhm_platform_info = 1;
4194 BIC_PRESENT(BIC_CPU_c1);
4195 BIC_PRESENT(BIC_CPU_c3);
4196 BIC_PRESENT(BIC_CPU_c6);
4197 BIC_PRESENT(BIC_SMI);
4198 }
Len Brownd7899442015-01-23 00:12:33 -05004199 do_snb_cstates = has_snb_msrs(family, model);
Len Brown812db3f2017-02-10 00:25:41 -05004200
4201 if (do_snb_cstates)
4202 BIC_PRESENT(BIC_CPU_c7);
4203
Len Brown5a634262016-04-06 17:15:55 -04004204 do_irtl_snb = has_snb_msrs(family, model);
Len Brown0f47c082017-01-27 00:50:45 -05004205 if (do_snb_cstates && (pkg_cstate_limit >= PCL__2))
4206 BIC_PRESENT(BIC_Pkgpc2);
4207 if (pkg_cstate_limit >= PCL__3)
4208 BIC_PRESENT(BIC_Pkgpc3);
4209 if (pkg_cstate_limit >= PCL__6)
4210 BIC_PRESENT(BIC_Pkgpc6);
4211 if (do_snb_cstates && (pkg_cstate_limit >= PCL__7))
4212 BIC_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004213 if (has_slv_msrs(family, model)) {
Len Brown0f47c082017-01-27 00:50:45 -05004214 BIC_NOT_PRESENT(BIC_Pkgpc2);
4215 BIC_NOT_PRESENT(BIC_Pkgpc3);
4216 BIC_PRESENT(BIC_Pkgpc6);
4217 BIC_NOT_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004218 BIC_PRESENT(BIC_Mod_c6);
4219 use_c1_residency_msr = 1;
4220 }
Len Brown7170a372017-01-27 02:13:27 -05004221 if (is_dnv(family, model)) {
4222 BIC_PRESENT(BIC_CPU_c1);
4223 BIC_NOT_PRESENT(BIC_CPU_c3);
4224 BIC_NOT_PRESENT(BIC_Pkgpc3);
4225 BIC_NOT_PRESENT(BIC_CPU_c7);
4226 BIC_NOT_PRESENT(BIC_Pkgpc7);
4227 use_c1_residency_msr = 1;
4228 }
Len Brown34c761972017-01-27 02:36:41 -05004229 if (is_skx(family, model)) {
4230 BIC_NOT_PRESENT(BIC_CPU_c3);
4231 BIC_NOT_PRESENT(BIC_Pkgpc3);
4232 BIC_NOT_PRESENT(BIC_CPU_c7);
4233 BIC_NOT_PRESENT(BIC_Pkgpc7);
4234 }
Len Brownade0eba2017-02-10 01:56:47 -05004235 if (is_bdx(family, model)) {
4236 BIC_NOT_PRESENT(BIC_CPU_c7);
4237 BIC_NOT_PRESENT(BIC_Pkgpc7);
4238 }
Len Brown0f47c082017-01-27 00:50:45 -05004239 if (has_hsw_msrs(family, model)) {
4240 BIC_PRESENT(BIC_Pkgpc8);
4241 BIC_PRESENT(BIC_Pkgpc9);
4242 BIC_PRESENT(BIC_Pkgpc10);
4243 }
Len Brown5a634262016-04-06 17:15:55 -04004244 do_irtl_hsw = has_hsw_msrs(family, model);
Len Browna99d8732017-05-20 20:11:55 -04004245 if (has_skl_msrs(family, model)) {
4246 BIC_PRESENT(BIC_Totl_c0);
4247 BIC_PRESENT(BIC_Any_c0);
4248 BIC_PRESENT(BIC_GFX_c0);
4249 BIC_PRESENT(BIC_CPUGFX);
4250 }
Len Brown144b44b2013-11-09 00:30:16 -05004251 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07004252 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04004253
Len Brown96e47152017-01-21 02:26:00 -05004254 if (!quiet)
Len Brownf0057312015-12-03 01:35:36 -05004255 decode_misc_pwr_mgmt_msr();
4256
Len Brown96e47152017-01-21 02:26:00 -05004257 if (!quiet && has_slv_msrs(family, model))
Len Brown71616c82017-01-07 22:37:48 -05004258 decode_c6_demotion_policy_msr();
4259
Len Brown889facb2012-11-08 00:48:57 -05004260 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04004261 perf_limit_reasons_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05004262
Len Brown96e47152017-01-21 02:26:00 -05004263 if (!quiet)
Colin Ian King1b693172016-03-02 13:50:25 +00004264 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04004265
Len Brown41618e62017-02-09 18:25:22 -05004266 if (!quiet)
4267 dump_sysfs_cstate_config();
Len Brown7293fcc2017-02-22 00:11:12 -05004268 if (!quiet)
4269 dump_sysfs_pstate_config();
Len Brown41618e62017-02-09 18:25:22 -05004270
Len Browna2b7b742015-09-26 00:12:38 -04004271 if (has_skl_msrs(family, model))
4272 calculate_tsc_tweak();
4273
Len Brown812db3f2017-02-10 00:25:41 -05004274 if (!access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK))
4275 BIC_PRESENT(BIC_GFX_rc6);
Len Brownfdf676e2016-02-27 01:28:12 -05004276
Len Brown812db3f2017-02-10 00:25:41 -05004277 if (!access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK))
4278 BIC_PRESENT(BIC_GFXMHz);
Len Brown27d47352016-02-27 00:37:54 -05004279
Len Brown96e47152017-01-21 02:26:00 -05004280 if (!quiet)
Len Brown33148d62017-01-21 01:26:16 -05004281 decode_misc_feature_control();
4282
Len Brown889facb2012-11-08 00:48:57 -05004283 return;
Len Brown103a8fe2010-10-22 23:53:03 -04004284}
4285
Len Brown103a8fe2010-10-22 23:53:03 -04004286
4287/*
4288 * in /dev/cpu/ return success for names that are numbers
4289 * ie. filter out ".", "..", "microcode".
4290 */
4291int dir_filter(const struct dirent *dirp)
4292{
4293 if (isdigit(dirp->d_name[0]))
4294 return 1;
4295 else
4296 return 0;
4297}
4298
4299int open_dev_cpu_msr(int dummy1)
4300{
4301 return 0;
4302}
4303
Len Brownc98d5d92012-06-04 00:56:40 -04004304void topology_probe()
4305{
4306 int i;
4307 int max_core_id = 0;
4308 int max_package_id = 0;
4309 int max_siblings = 0;
4310 struct cpu_topology {
4311 int core_id;
4312 int physical_package_id;
4313 } *cpus;
4314
4315 /* Initialize num_cpus, max_cpu_num */
4316 topo.num_cpus = 0;
4317 topo.max_cpu_num = 0;
4318 for_all_proc_cpus(count_cpus);
4319 if (!summary_only && topo.num_cpus > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004320 BIC_PRESENT(BIC_CPU);
Len Brownc98d5d92012-06-04 00:56:40 -04004321
Len Brownd8af6f52015-02-10 01:56:38 -05004322 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004323 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04004324
4325 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004326 if (cpus == NULL)
4327 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04004328
4329 /*
4330 * Allocate and initialize cpu_present_set
4331 */
4332 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004333 if (cpu_present_set == NULL)
4334 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004335 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4336 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
4337 for_all_proc_cpus(mark_cpu_present);
4338
4339 /*
Len Brown1ef7d212017-02-10 23:54:15 -05004340 * Validate that all cpus in cpu_subset are also in cpu_present_set
4341 */
4342 for (i = 0; i < CPU_SUBSET_MAXCPUS; ++i) {
4343 if (CPU_ISSET_S(i, cpu_subset_size, cpu_subset))
4344 if (!CPU_ISSET_S(i, cpu_present_setsize, cpu_present_set))
4345 err(1, "cpu%d not present", i);
4346 }
4347
4348 /*
Len Brownc98d5d92012-06-04 00:56:40 -04004349 * Allocate and initialize cpu_affinity_set
4350 */
4351 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004352 if (cpu_affinity_set == NULL)
4353 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004354 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4355 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
4356
4357
4358 /*
4359 * For online cpus
4360 * find max_core_id, max_package_id
4361 */
4362 for (i = 0; i <= topo.max_cpu_num; ++i) {
4363 int siblings;
4364
4365 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05004366 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004367 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04004368 continue;
4369 }
4370 cpus[i].core_id = get_core_id(i);
4371 if (cpus[i].core_id > max_core_id)
4372 max_core_id = cpus[i].core_id;
4373
4374 cpus[i].physical_package_id = get_physical_package_id(i);
4375 if (cpus[i].physical_package_id > max_package_id)
4376 max_package_id = cpus[i].physical_package_id;
4377
4378 siblings = get_num_ht_siblings(i);
4379 if (siblings > max_siblings)
4380 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004381 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004382 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004383 i, cpus[i].physical_package_id, cpus[i].core_id);
4384 }
4385 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004386 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004387 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004388 max_core_id, topo.num_cores_per_pkg);
Len Brown0f47c082017-01-27 00:50:45 -05004389 if (!summary_only && topo.num_cores_per_pkg > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004390 BIC_PRESENT(BIC_Core);
Len Brownc98d5d92012-06-04 00:56:40 -04004391
4392 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004393 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004394 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004395 max_package_id, topo.num_packages);
Len Brown7da6e3e2017-02-21 23:43:41 -05004396 if (!summary_only && topo.num_packages > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004397 BIC_PRESENT(BIC_Package);
Len Brownc98d5d92012-06-04 00:56:40 -04004398
4399 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004400 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004401 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04004402
4403 free(cpus);
4404}
4405
4406void
4407allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
4408{
4409 int i;
4410
4411 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
Len Brown678a3bd2017-02-09 22:22:13 -05004412 topo.num_packages, sizeof(struct thread_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004413 if (*t == NULL)
4414 goto error;
4415
4416 for (i = 0; i < topo.num_threads_per_core *
4417 topo.num_cores_per_pkg * topo.num_packages; i++)
4418 (*t)[i].cpu_id = -1;
4419
4420 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
Len Brown678a3bd2017-02-09 22:22:13 -05004421 sizeof(struct core_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004422 if (*c == NULL)
4423 goto error;
4424
4425 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
4426 (*c)[i].core_id = -1;
4427
Len Brown678a3bd2017-02-09 22:22:13 -05004428 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004429 if (*p == NULL)
4430 goto error;
4431
4432 for (i = 0; i < topo.num_packages; i++)
4433 (*p)[i].package_id = i;
4434
4435 return;
4436error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07004437 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04004438}
4439/*
4440 * init_counter()
4441 *
4442 * set cpu_id, core_num, pkg_num
4443 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
4444 *
4445 * increment topo.num_cores when 1st core in pkg seen
4446 */
4447void init_counter(struct thread_data *thread_base, struct core_data *core_base,
4448 struct pkg_data *pkg_base, int thread_num, int core_num,
4449 int pkg_num, int cpu_id)
4450{
4451 struct thread_data *t;
4452 struct core_data *c;
4453 struct pkg_data *p;
4454
4455 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
4456 c = GET_CORE(core_base, core_num, pkg_num);
4457 p = GET_PKG(pkg_base, pkg_num);
4458
4459 t->cpu_id = cpu_id;
4460 if (thread_num == 0) {
4461 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
4462 if (cpu_is_first_core_in_package(cpu_id))
4463 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
4464 }
4465
4466 c->core_id = core_num;
4467 p->package_id = pkg_num;
4468}
4469
4470
4471int initialize_counters(int cpu_id)
4472{
4473 int my_thread_id, my_core_id, my_package_id;
4474
4475 my_package_id = get_physical_package_id(cpu_id);
4476 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07004477 my_thread_id = get_cpu_position_in_core(cpu_id);
4478 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04004479 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04004480
4481 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4482 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4483 return 0;
4484}
4485
4486void allocate_output_buffer()
4487{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004488 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04004489 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07004490 if (outp == NULL)
4491 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04004492}
Len Brown36229892016-02-26 20:51:02 -05004493void allocate_fd_percpu(void)
4494{
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004495 fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown36229892016-02-26 20:51:02 -05004496 if (fd_percpu == NULL)
4497 err(-1, "calloc fd_percpu");
4498}
Len Brown562a2d32016-02-26 23:48:05 -05004499void allocate_irq_buffers(void)
4500{
4501 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
4502 if (irq_column_2_cpu == NULL)
4503 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04004504
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004505 irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown562a2d32016-02-26 23:48:05 -05004506 if (irqs_per_cpu == NULL)
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004507 err(-1, "calloc %d", topo.max_cpu_num + 1);
Len Brown562a2d32016-02-26 23:48:05 -05004508}
Len Brownc98d5d92012-06-04 00:56:40 -04004509void setup_all_buffers(void)
4510{
4511 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05004512 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05004513 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04004514 allocate_counters(&thread_even, &core_even, &package_even);
4515 allocate_counters(&thread_odd, &core_odd, &package_odd);
4516 allocate_output_buffer();
4517 for_all_proc_cpus(initialize_counters);
4518}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004519
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004520void set_base_cpu(void)
4521{
4522 base_cpu = sched_getcpu();
4523 if (base_cpu < 0)
4524 err(-ENODEV, "No valid cpus found");
4525
4526 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004527 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004528}
4529
Len Brown103a8fe2010-10-22 23:53:03 -04004530void turbostat_init()
4531{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004532 setup_all_buffers();
4533 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04004534 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04004535 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04004536 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04004537
Len Brown103a8fe2010-10-22 23:53:03 -04004538
Len Brown96e47152017-01-21 02:26:00 -05004539 if (!quiet)
Len Brown7f5c2582015-12-01 01:36:39 -05004540 for_all_cpus(print_hwp, ODD_COUNTERS);
4541
Len Brown96e47152017-01-21 02:26:00 -05004542 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004543 for_all_cpus(print_epb, ODD_COUNTERS);
4544
Len Brown96e47152017-01-21 02:26:00 -05004545 if (!quiet)
Len Brown3a9a9412014-08-15 02:39:52 -04004546 for_all_cpus(print_perf_limit, ODD_COUNTERS);
4547
Len Brown96e47152017-01-21 02:26:00 -05004548 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004549 for_all_cpus(print_rapl, ODD_COUNTERS);
4550
4551 for_all_cpus(set_temperature_target, ODD_COUNTERS);
4552
Len Brown96e47152017-01-21 02:26:00 -05004553 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004554 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04004555
Len Brown96e47152017-01-21 02:26:00 -05004556 if (!quiet && do_irtl_snb)
Len Brown5a634262016-04-06 17:15:55 -04004557 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04004558}
4559
4560int fork_it(char **argv)
4561{
Len Brown103a8fe2010-10-22 23:53:03 -04004562 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04004563 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04004564
Len Brown218f0e82017-02-14 22:07:52 -05004565 snapshot_proc_sysfs_files();
Len Brownd91bb172012-11-01 00:08:19 -04004566 status = for_all_cpus(get_counters, EVEN_COUNTERS);
4567 if (status)
4568 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04004569 /* clear affinity side-effect of get_counters() */
4570 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04004571 gettimeofday(&tv_even, (struct timezone *)NULL);
4572
4573 child_pid = fork();
4574 if (!child_pid) {
4575 /* child */
4576 execvp(argv[0], argv);
Len Brown0815a3d2017-02-23 17:00:51 -05004577 err(errno, "exec %s", argv[0]);
Len Brown103a8fe2010-10-22 23:53:03 -04004578 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04004579
4580 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07004581 if (child_pid == -1)
4582 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04004583
4584 signal(SIGINT, SIG_IGN);
4585 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07004586 if (waitpid(child_pid, &status, 0) == -1)
4587 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04004588 }
Len Brownc98d5d92012-06-04 00:56:40 -04004589 /*
4590 * n.b. fork_it() does not check for errors from for_all_cpus()
4591 * because re-starting is problematic when forking
4592 */
Len Brown218f0e82017-02-14 22:07:52 -05004593 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04004594 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04004595 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04004596 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04004597 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
4598 fprintf(outf, "%s: Counter reset detected\n", progname);
4599 else {
4600 compute_average(EVEN_COUNTERS);
4601 format_all_counters(EVEN_COUNTERS);
4602 }
Len Brown103a8fe2010-10-22 23:53:03 -04004603
Len Brownb7d8c142016-02-13 23:36:17 -05004604 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
4605
4606 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04004607
Len Brownd91bb172012-11-01 00:08:19 -04004608 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04004609}
4610
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004611int get_and_dump_counters(void)
4612{
4613 int status;
4614
Len Brown218f0e82017-02-14 22:07:52 -05004615 snapshot_proc_sysfs_files();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004616 status = for_all_cpus(get_counters, ODD_COUNTERS);
4617 if (status)
4618 return status;
4619
4620 status = for_all_cpus(dump_counters, ODD_COUNTERS);
4621 if (status)
4622 return status;
4623
Len Brownb7d8c142016-02-13 23:36:17 -05004624 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004625
4626 return status;
4627}
4628
Len Brownd8af6f52015-02-10 01:56:38 -05004629void print_version() {
Len Brown5f9bf022017-03-04 17:26:29 -05004630 fprintf(outf, "turbostat version 17.04.12"
Len Brownd8af6f52015-02-10 01:56:38 -05004631 " - Len Brown <lenb@kernel.org>\n");
4632}
4633
Len Brown495c76542017-02-08 02:41:51 -05004634int add_counter(unsigned int msr_num, char *path, char *name,
4635 unsigned int width, enum counter_scope scope,
Len Brown41618e62017-02-09 18:25:22 -05004636 enum counter_type type, enum counter_format format, int flags)
Len Brown388e9c82016-12-22 23:57:55 -05004637{
4638 struct msr_counter *msrp;
4639
4640 msrp = calloc(1, sizeof(struct msr_counter));
4641 if (msrp == NULL) {
4642 perror("calloc");
4643 exit(1);
4644 }
4645
4646 msrp->msr_num = msr_num;
4647 strncpy(msrp->name, name, NAME_BYTES);
Len Brown495c76542017-02-08 02:41:51 -05004648 if (path)
4649 strncpy(msrp->path, path, PATH_BYTES);
Len Brown388e9c82016-12-22 23:57:55 -05004650 msrp->width = width;
4651 msrp->type = type;
4652 msrp->format = format;
Len Brown41618e62017-02-09 18:25:22 -05004653 msrp->flags = flags;
Len Brown388e9c82016-12-22 23:57:55 -05004654
4655 switch (scope) {
4656
4657 case SCOPE_CPU:
Len Brown388e9c82016-12-22 23:57:55 -05004658 msrp->next = sys.tp;
4659 sys.tp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004660 sys.added_thread_counters++;
4661 if (sys.added_thread_counters > MAX_ADDED_COUNTERS) {
4662 fprintf(stderr, "exceeded max %d added thread counters\n",
4663 MAX_ADDED_COUNTERS);
4664 exit(-1);
4665 }
Len Brown388e9c82016-12-22 23:57:55 -05004666 break;
4667
4668 case SCOPE_CORE:
Len Brown388e9c82016-12-22 23:57:55 -05004669 msrp->next = sys.cp;
4670 sys.cp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004671 sys.added_core_counters++;
4672 if (sys.added_core_counters > MAX_ADDED_COUNTERS) {
4673 fprintf(stderr, "exceeded max %d added core counters\n",
4674 MAX_ADDED_COUNTERS);
4675 exit(-1);
4676 }
Len Brown388e9c82016-12-22 23:57:55 -05004677 break;
4678
4679 case SCOPE_PACKAGE:
Len Brown388e9c82016-12-22 23:57:55 -05004680 msrp->next = sys.pp;
4681 sys.pp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004682 sys.added_package_counters++;
4683 if (sys.added_package_counters > MAX_ADDED_COUNTERS) {
4684 fprintf(stderr, "exceeded max %d added package counters\n",
4685 MAX_ADDED_COUNTERS);
4686 exit(-1);
4687 }
Len Brown388e9c82016-12-22 23:57:55 -05004688 break;
4689 }
4690
4691 return 0;
4692}
4693
4694void parse_add_command(char *add_command)
4695{
4696 int msr_num = 0;
Len Brown495c76542017-02-08 02:41:51 -05004697 char *path = NULL;
Len Brown0f47c082017-01-27 00:50:45 -05004698 char name_buffer[NAME_BYTES] = "";
Len Brown388e9c82016-12-22 23:57:55 -05004699 int width = 64;
4700 int fail = 0;
4701 enum counter_scope scope = SCOPE_CPU;
4702 enum counter_type type = COUNTER_CYCLES;
4703 enum counter_format format = FORMAT_DELTA;
4704
4705 while (add_command) {
4706
4707 if (sscanf(add_command, "msr0x%x", &msr_num) == 1)
4708 goto next;
4709
4710 if (sscanf(add_command, "msr%d", &msr_num) == 1)
4711 goto next;
4712
Len Brown495c76542017-02-08 02:41:51 -05004713 if (*add_command == '/') {
4714 path = add_command;
4715 goto next;
4716 }
4717
Len Brown388e9c82016-12-22 23:57:55 -05004718 if (sscanf(add_command, "u%d", &width) == 1) {
4719 if ((width == 32) || (width == 64))
4720 goto next;
4721 width = 64;
4722 }
4723 if (!strncmp(add_command, "cpu", strlen("cpu"))) {
4724 scope = SCOPE_CPU;
4725 goto next;
4726 }
4727 if (!strncmp(add_command, "core", strlen("core"))) {
4728 scope = SCOPE_CORE;
4729 goto next;
4730 }
4731 if (!strncmp(add_command, "package", strlen("package"))) {
4732 scope = SCOPE_PACKAGE;
4733 goto next;
4734 }
4735 if (!strncmp(add_command, "cycles", strlen("cycles"))) {
4736 type = COUNTER_CYCLES;
4737 goto next;
4738 }
4739 if (!strncmp(add_command, "seconds", strlen("seconds"))) {
4740 type = COUNTER_SECONDS;
4741 goto next;
4742 }
Len Brown41618e62017-02-09 18:25:22 -05004743 if (!strncmp(add_command, "usec", strlen("usec"))) {
4744 type = COUNTER_USEC;
4745 goto next;
4746 }
Len Brown388e9c82016-12-22 23:57:55 -05004747 if (!strncmp(add_command, "raw", strlen("raw"))) {
4748 format = FORMAT_RAW;
4749 goto next;
4750 }
4751 if (!strncmp(add_command, "delta", strlen("delta"))) {
4752 format = FORMAT_DELTA;
4753 goto next;
4754 }
4755 if (!strncmp(add_command, "percent", strlen("percent"))) {
4756 format = FORMAT_PERCENT;
4757 goto next;
4758 }
4759
4760 if (sscanf(add_command, "%18s,%*s", name_buffer) == 1) { /* 18 < NAME_BYTES */
4761 char *eos;
4762
4763 eos = strchr(name_buffer, ',');
4764 if (eos)
4765 *eos = '\0';
4766 goto next;
4767 }
4768
4769next:
4770 add_command = strchr(add_command, ',');
Len Brown495c76542017-02-08 02:41:51 -05004771 if (add_command) {
4772 *add_command = '\0';
Len Brown388e9c82016-12-22 23:57:55 -05004773 add_command++;
Len Brown495c76542017-02-08 02:41:51 -05004774 }
Len Brown388e9c82016-12-22 23:57:55 -05004775
4776 }
Len Brown495c76542017-02-08 02:41:51 -05004777 if ((msr_num == 0) && (path == NULL)) {
4778 fprintf(stderr, "--add: (msrDDD | msr0xXXX | /path_to_counter ) required\n");
Len Brown388e9c82016-12-22 23:57:55 -05004779 fail++;
4780 }
4781
4782 /* generate default column header */
4783 if (*name_buffer == '\0') {
Len Brown5f3aea52017-02-23 18:10:27 -05004784 if (width == 32)
4785 sprintf(name_buffer, "M0x%x%s", msr_num, format == FORMAT_PERCENT ? "%" : "");
4786 else
4787 sprintf(name_buffer, "M0X%x%s", msr_num, format == FORMAT_PERCENT ? "%" : "");
Len Brown388e9c82016-12-22 23:57:55 -05004788 }
4789
Len Brown41618e62017-02-09 18:25:22 -05004790 if (add_counter(msr_num, path, name_buffer, width, scope, type, format, 0))
Len Brown388e9c82016-12-22 23:57:55 -05004791 fail++;
4792
4793 if (fail) {
4794 help();
4795 exit(1);
4796 }
4797}
Len Brown41618e62017-02-09 18:25:22 -05004798
Len Browndd778a52017-02-21 23:21:13 -05004799int is_deferred_skip(char *name)
4800{
4801 int i;
4802
4803 for (i = 0; i < deferred_skip_index; ++i)
4804 if (!strcmp(name, deferred_skip_names[i]))
4805 return 1;
4806 return 0;
4807}
4808
Len Brown41618e62017-02-09 18:25:22 -05004809void probe_sysfs(void)
4810{
4811 char path[64];
4812 char name_buf[16];
4813 FILE *input;
4814 int state;
4815 char *sp;
4816
4817 if (!DO_BIC(BIC_sysfs))
4818 return;
4819
4820 for (state = 10; state > 0; --state) {
4821
4822 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
4823 base_cpu, state);
4824 input = fopen(path, "r");
4825 if (input == NULL)
4826 continue;
4827 fgets(name_buf, sizeof(name_buf), input);
4828
4829 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
4830 sp = strchr(name_buf, '-');
4831 if (!sp)
4832 sp = strchrnul(name_buf, '\n');
4833 *sp = '%';
4834 *(sp + 1) = '\0';
4835
4836 fclose(input);
4837
4838 sprintf(path, "cpuidle/state%d/time", state);
4839
Len Browndd778a52017-02-21 23:21:13 -05004840 if (is_deferred_skip(name_buf))
4841 continue;
4842
Len Brown41618e62017-02-09 18:25:22 -05004843 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_USEC,
4844 FORMAT_PERCENT, SYSFS_PERCPU);
4845 }
4846
4847 for (state = 10; state > 0; --state) {
4848
4849 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
4850 base_cpu, state);
4851 input = fopen(path, "r");
4852 if (input == NULL)
4853 continue;
4854 fgets(name_buf, sizeof(name_buf), input);
4855 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
4856 sp = strchr(name_buf, '-');
4857 if (!sp)
4858 sp = strchrnul(name_buf, '\n');
4859 *sp = '\0';
4860 fclose(input);
4861
4862 sprintf(path, "cpuidle/state%d/usage", state);
4863
Len Browndd778a52017-02-21 23:21:13 -05004864 if (is_deferred_skip(name_buf))
4865 continue;
4866
Len Brown41618e62017-02-09 18:25:22 -05004867 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_ITEMS,
4868 FORMAT_DELTA, SYSFS_PERCPU);
4869 }
4870
4871}
4872
Len Brown1ef7d212017-02-10 23:54:15 -05004873
4874/*
4875 * parse cpuset with following syntax
4876 * 1,2,4..6,8-10 and set bits in cpu_subset
4877 */
4878void parse_cpu_command(char *optarg)
4879{
4880 unsigned int start, end;
4881 char *next;
4882
Len Brown4e4e1e72017-02-21 22:33:42 -05004883 if (!strcmp(optarg, "core")) {
4884 if (cpu_subset)
4885 goto error;
4886 show_core_only++;
4887 return;
4888 }
4889 if (!strcmp(optarg, "package")) {
4890 if (cpu_subset)
4891 goto error;
4892 show_pkg_only++;
4893 return;
4894 }
4895 if (show_core_only || show_pkg_only)
4896 goto error;
4897
Len Brown1ef7d212017-02-10 23:54:15 -05004898 cpu_subset = CPU_ALLOC(CPU_SUBSET_MAXCPUS);
4899 if (cpu_subset == NULL)
4900 err(3, "CPU_ALLOC");
4901 cpu_subset_size = CPU_ALLOC_SIZE(CPU_SUBSET_MAXCPUS);
4902
4903 CPU_ZERO_S(cpu_subset_size, cpu_subset);
4904
4905 next = optarg;
4906
4907 while (next && *next) {
4908
4909 if (*next == '-') /* no negative cpu numbers */
4910 goto error;
4911
4912 start = strtoul(next, &next, 10);
4913
4914 if (start >= CPU_SUBSET_MAXCPUS)
4915 goto error;
4916 CPU_SET_S(start, cpu_subset_size, cpu_subset);
4917
4918 if (*next == '\0')
4919 break;
4920
4921 if (*next == ',') {
4922 next += 1;
4923 continue;
4924 }
4925
4926 if (*next == '-') {
4927 next += 1; /* start range */
4928 } else if (*next == '.') {
4929 next += 1;
4930 if (*next == '.')
4931 next += 1; /* start range */
4932 else
4933 goto error;
4934 }
4935
4936 end = strtoul(next, &next, 10);
4937 if (end <= start)
4938 goto error;
4939
4940 while (++start <= end) {
4941 if (start >= CPU_SUBSET_MAXCPUS)
4942 goto error;
4943 CPU_SET_S(start, cpu_subset_size, cpu_subset);
4944 }
4945
4946 if (*next == ',')
4947 next += 1;
4948 else if (*next != '\0')
4949 goto error;
4950 }
4951
4952 return;
4953
4954error:
Len Brown4e4e1e72017-02-21 22:33:42 -05004955 fprintf(stderr, "\"--cpu %s\" malformed\n", optarg);
4956 help();
Len Brown1ef7d212017-02-10 23:54:15 -05004957 exit(-1);
4958}
4959
Len Brown812db3f2017-02-10 00:25:41 -05004960int shown;
4961/*
4962 * parse_show_hide() - process cmdline to set default counter action
4963 */
4964void parse_show_hide(char *optarg, enum show_hide_mode new_mode)
4965{
4966 /*
4967 * --show: show only those specified
4968 * The 1st invocation will clear and replace the enabled mask
4969 * subsequent invocations can add to it.
4970 */
4971 if (new_mode == SHOW_LIST) {
4972 if (shown == 0)
Len Browndd778a52017-02-21 23:21:13 -05004973 bic_enabled = bic_lookup(optarg, new_mode);
Len Brown812db3f2017-02-10 00:25:41 -05004974 else
Len Browndd778a52017-02-21 23:21:13 -05004975 bic_enabled |= bic_lookup(optarg, new_mode);
Len Brown812db3f2017-02-10 00:25:41 -05004976 shown = 1;
4977
4978 return;
4979 }
4980
4981 /*
4982 * --hide: do not show those specified
4983 * multiple invocations simply clear more bits in enabled mask
4984 */
Len Browndd778a52017-02-21 23:21:13 -05004985 bic_enabled &= ~bic_lookup(optarg, new_mode);
Len Brown41618e62017-02-09 18:25:22 -05004986
Len Brown812db3f2017-02-10 00:25:41 -05004987}
4988
Len Brown103a8fe2010-10-22 23:53:03 -04004989void cmdline(int argc, char **argv)
4990{
4991 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05004992 int option_index = 0;
4993 static struct option long_options[] = {
Len Brown388e9c82016-12-22 23:57:55 -05004994 {"add", required_argument, 0, 'a'},
Len Brown1ef7d212017-02-10 23:54:15 -05004995 {"cpu", required_argument, 0, 'c'},
Len Brownd8af6f52015-02-10 01:56:38 -05004996 {"Dump", no_argument, 0, 'D'},
Len Brown96e47152017-01-21 02:26:00 -05004997 {"debug", no_argument, 0, 'd'}, /* internal, not documented */
Len Brownd8af6f52015-02-10 01:56:38 -05004998 {"interval", required_argument, 0, 'i'},
4999 {"help", no_argument, 0, 'h'},
Len Brown812db3f2017-02-10 00:25:41 -05005000 {"hide", required_argument, 0, 'H'}, // meh, -h taken by --help
Len Brownd8af6f52015-02-10 01:56:38 -05005001 {"Joules", no_argument, 0, 'J'},
Len Brownc8ade362017-02-15 17:15:11 -05005002 {"list", no_argument, 0, 'l'},
Len Brownb7d8c142016-02-13 23:36:17 -05005003 {"out", required_argument, 0, 'o'},
Len Brown96e47152017-01-21 02:26:00 -05005004 {"quiet", no_argument, 0, 'q'},
Len Brown812db3f2017-02-10 00:25:41 -05005005 {"show", required_argument, 0, 's'},
Len Brownd8af6f52015-02-10 01:56:38 -05005006 {"Summary", no_argument, 0, 'S'},
5007 {"TCC", required_argument, 0, 'T'},
5008 {"version", no_argument, 0, 'v' },
5009 {0, 0, 0, 0 }
5010 };
Len Brown103a8fe2010-10-22 23:53:03 -04005011
5012 progname = argv[0];
5013
Len Brown4e4e1e72017-02-21 22:33:42 -05005014 while ((opt = getopt_long_only(argc, argv, "+C:c:Ddhi:JM:m:o:qST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05005015 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04005016 switch (opt) {
Len Brown388e9c82016-12-22 23:57:55 -05005017 case 'a':
5018 parse_add_command(optarg);
5019 break;
Len Brown1ef7d212017-02-10 23:54:15 -05005020 case 'c':
5021 parse_cpu_command(optarg);
5022 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005023 case 'D':
5024 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04005025 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005026 case 'd':
5027 debug++;
Len Brown2f32edf2012-09-21 23:45:46 -04005028 break;
Len Brown812db3f2017-02-10 00:25:41 -05005029 case 'H':
5030 parse_show_hide(optarg, HIDE_LIST);
5031 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005032 case 'h':
5033 default:
5034 help();
5035 exit(1);
5036 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05005037 {
5038 double interval = strtod(optarg, NULL);
5039
5040 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05005041 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05005042 interval);
5043 exit(2);
5044 }
5045
5046 interval_ts.tv_sec = interval;
5047 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
5048 }
Len Brown889facb2012-11-08 00:48:57 -05005049 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08005050 case 'J':
5051 rapl_joules++;
5052 break;
Len Brownc8ade362017-02-15 17:15:11 -05005053 case 'l':
5054 list_header_only++;
5055 quiet++;
5056 break;
Len Brownb7d8c142016-02-13 23:36:17 -05005057 case 'o':
5058 outf = fopen_or_die(optarg, "w");
5059 break;
Len Brown96e47152017-01-21 02:26:00 -05005060 case 'q':
5061 quiet = 1;
5062 break;
Len Brown812db3f2017-02-10 00:25:41 -05005063 case 's':
5064 parse_show_hide(optarg, SHOW_LIST);
5065 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005066 case 'S':
5067 summary_only++;
5068 break;
5069 case 'T':
5070 tcc_activation_temp_override = atoi(optarg);
5071 break;
5072 case 'v':
5073 print_version();
5074 exit(0);
5075 break;
Len Brown103a8fe2010-10-22 23:53:03 -04005076 }
5077 }
5078}
5079
5080int main(int argc, char **argv)
5081{
Len Brownb7d8c142016-02-13 23:36:17 -05005082 outf = stderr;
5083
Len Brown103a8fe2010-10-22 23:53:03 -04005084 cmdline(argc, argv);
5085
Len Brown96e47152017-01-21 02:26:00 -05005086 if (!quiet)
Len Brownd8af6f52015-02-10 01:56:38 -05005087 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04005088
Len Brown41618e62017-02-09 18:25:22 -05005089 probe_sysfs();
5090
Len Brown103a8fe2010-10-22 23:53:03 -04005091 turbostat_init();
5092
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02005093 /* dump counters and exit */
5094 if (dump_only)
5095 return get_and_dump_counters();
5096
Len Brownc8ade362017-02-15 17:15:11 -05005097 /* list header and exit */
5098 if (list_header_only) {
5099 print_header(",");
5100 flush_output_stdout();
5101 return 0;
5102 }
5103
Len Brown103a8fe2010-10-22 23:53:03 -04005104 /*
5105 * if any params left, it must be a command to fork
5106 */
5107 if (argc - optind)
5108 return fork_it(argv + optind);
5109 else
5110 turbostat_loop();
5111
5112 return 0;
5113}