blob: 76c70c2a6f18e0922aac03189e9235a1df75f11b [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>
Len Brownb9ad8ee2017-07-19 19:28:37 -040032#include <sys/select.h>
Len Brown103a8fe2010-10-22 23:53:03 -040033#include <sys/resource.h>
34#include <fcntl.h>
35#include <signal.h>
36#include <sys/time.h>
37#include <stdlib.h>
Len Brownd8af6f52015-02-10 01:56:38 -050038#include <getopt.h>
Len Brown103a8fe2010-10-22 23:53:03 -040039#include <dirent.h>
40#include <string.h>
41#include <ctype.h>
Len Brown88c32812012-03-29 21:44:40 -040042#include <sched.h>
Len Brown2a0609c2016-02-12 22:44:48 -050043#include <time.h>
Josh Triplett2b928652013-08-20 17:20:14 -070044#include <cpuid.h>
Len Brown98481e72014-08-15 00:36:50 -040045#include <linux/capability.h>
46#include <errno.h>
Len Brown103a8fe2010-10-22 23:53:03 -040047
Len Brown103a8fe2010-10-22 23:53:03 -040048char *proc_stat = "/proc/stat";
Len Brownb7d8c142016-02-13 23:36:17 -050049FILE *outf;
Len Brown36229892016-02-26 20:51:02 -050050int *fd_percpu;
Len Brownb9ad8ee2017-07-19 19:28:37 -040051struct timeval interval_tv = {5, 0};
Artem Bityutskiy47936f92017-10-04 15:01:47 +030052struct timespec interval_ts = {5, 0};
Len Brownb9ad8ee2017-07-19 19:28:37 -040053struct timespec one_msec = {0, 1000000};
Len Brownd8af6f52015-02-10 01:56:38 -050054unsigned int debug;
Len Brown96e47152017-01-21 02:26:00 -050055unsigned int quiet;
Len Brown3f44a5c2017-10-17 15:42:56 -040056unsigned int shown;
Len Brown0de6c0d2017-02-15 21:45:40 -050057unsigned int sums_need_wide_columns;
Len Brownd8af6f52015-02-10 01:56:38 -050058unsigned int rapl_joules;
59unsigned int summary_only;
Len Brownc8ade362017-02-15 17:15:11 -050060unsigned int list_header_only;
Len Brownd8af6f52015-02-10 01:56:38 -050061unsigned int dump_only;
Len Brown103a8fe2010-10-22 23:53:03 -040062unsigned int do_snb_cstates;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -070063unsigned int do_knl_cstates;
Len Brown144b44b2013-11-09 00:30:16 -050064unsigned int do_slm_cstates;
65unsigned int use_c1_residency_msr;
Len Brown103a8fe2010-10-22 23:53:03 -040066unsigned int has_aperf;
Len Brown889facb2012-11-08 00:48:57 -050067unsigned int has_epb;
Len Brown5a634262016-04-06 17:15:55 -040068unsigned int do_irtl_snb;
69unsigned int do_irtl_hsw;
Len Brownfc04cc62014-02-06 00:55:19 -050070unsigned int units = 1000000; /* MHz etc */
Len Brown103a8fe2010-10-22 23:53:03 -040071unsigned int genuine_intel;
72unsigned int has_invariant_tsc;
Len Brownd7899442015-01-23 00:12:33 -050073unsigned int do_nhm_platform_info;
Len Browncf4cbe52017-01-01 13:08:33 -050074unsigned int no_MSR_MISC_PWR_MGMT;
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +020075unsigned int aperf_mperf_multiplier = 1;
Len Brown103a8fe2010-10-22 23:53:03 -040076double bclk;
Len Browna2b7b742015-09-26 00:12:38 -040077double base_hz;
Len Brown21ed5572015-10-19 22:37:40 -040078unsigned int has_base_hz;
Len Browna2b7b742015-09-26 00:12:38 -040079double tsc_tweak = 1.0;
Len Brownc98d5d92012-06-04 00:56:40 -040080unsigned int show_pkg_only;
81unsigned int show_core_only;
82char *output_buffer, *outp;
Len Brown889facb2012-11-08 00:48:57 -050083unsigned int do_rapl;
84unsigned int do_dts;
85unsigned int do_ptm;
Len Brownfdf676e2016-02-27 01:28:12 -050086unsigned long long gfx_cur_rc6_ms;
Len Brownbe0e54c2018-06-01 12:35:53 -040087unsigned long long cpuidle_cur_cpu_lpi_us;
88unsigned long long cpuidle_cur_sys_lpi_us;
Len Brown27d47352016-02-27 00:37:54 -050089unsigned int gfx_cur_mhz;
Len Brown889facb2012-11-08 00:48:57 -050090unsigned int tcc_activation_temp;
91unsigned int tcc_activation_temp_override;
Andrey Semin40ee8e32014-12-05 00:07:00 -050092double rapl_power_units, rapl_time_units;
93double rapl_dram_energy_units, rapl_energy_units;
Len Brown889facb2012-11-08 00:48:57 -050094double rapl_joule_counter_range;
Len Brown3a9a9412014-08-15 02:39:52 -040095unsigned int do_core_perf_limit_reasons;
Artem Bityutskiyac980e12017-09-05 15:14:08 +030096unsigned int has_automatic_cstate_conversion;
Len Brown3a9a9412014-08-15 02:39:52 -040097unsigned int do_gfx_perf_limit_reasons;
98unsigned int do_ring_perf_limit_reasons;
Len Brown8a5bdf42015-04-01 21:02:57 -040099unsigned int crystal_hz;
100unsigned long long tsc_hz;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -0400101int base_cpu;
Len Brown21ed5572015-10-19 22:37:40 -0400102double discover_bclk(unsigned int family, unsigned int model);
Len Brown7f5c2582015-12-01 01:36:39 -0500103unsigned int has_hwp; /* IA32_PM_ENABLE, IA32_HWP_CAPABILITIES */
104 /* IA32_HWP_REQUEST, IA32_HWP_STATUS */
105unsigned int has_hwp_notify; /* IA32_HWP_INTERRUPT */
106unsigned int has_hwp_activity_window; /* IA32_HWP_REQUEST[bits 41:32] */
107unsigned int has_hwp_epp; /* IA32_HWP_REQUEST[bits 31:24] */
108unsigned int has_hwp_pkg; /* IA32_HWP_REQUEST_PKG */
Len Brown33148d62017-01-21 01:26:16 -0500109unsigned int has_misc_feature_control;
Len Brown889facb2012-11-08 00:48:57 -0500110
Len Browne6f9bb32013-12-03 02:19:19 -0500111#define RAPL_PKG (1 << 0)
112 /* 0x610 MSR_PKG_POWER_LIMIT */
113 /* 0x611 MSR_PKG_ENERGY_STATUS */
114#define RAPL_PKG_PERF_STATUS (1 << 1)
115 /* 0x613 MSR_PKG_PERF_STATUS */
116#define RAPL_PKG_POWER_INFO (1 << 2)
117 /* 0x614 MSR_PKG_POWER_INFO */
118
119#define RAPL_DRAM (1 << 3)
120 /* 0x618 MSR_DRAM_POWER_LIMIT */
121 /* 0x619 MSR_DRAM_ENERGY_STATUS */
Len Browne6f9bb32013-12-03 02:19:19 -0500122#define RAPL_DRAM_PERF_STATUS (1 << 4)
123 /* 0x61b MSR_DRAM_PERF_STATUS */
Len Brown0b2bb692015-03-26 00:50:30 -0400124#define RAPL_DRAM_POWER_INFO (1 << 5)
125 /* 0x61c MSR_DRAM_POWER_INFO */
Len Browne6f9bb32013-12-03 02:19:19 -0500126
Jacob Pan91484942016-06-16 09:48:20 -0700127#define RAPL_CORES_POWER_LIMIT (1 << 6)
Len Browne6f9bb32013-12-03 02:19:19 -0500128 /* 0x638 MSR_PP0_POWER_LIMIT */
Len Brown0b2bb692015-03-26 00:50:30 -0400129#define RAPL_CORE_POLICY (1 << 7)
Len Browne6f9bb32013-12-03 02:19:19 -0500130 /* 0x63a MSR_PP0_POLICY */
131
Len Brown0b2bb692015-03-26 00:50:30 -0400132#define RAPL_GFX (1 << 8)
Len Browne6f9bb32013-12-03 02:19:19 -0500133 /* 0x640 MSR_PP1_POWER_LIMIT */
134 /* 0x641 MSR_PP1_ENERGY_STATUS */
135 /* 0x642 MSR_PP1_POLICY */
Jacob Pan91484942016-06-16 09:48:20 -0700136
137#define RAPL_CORES_ENERGY_STATUS (1 << 9)
138 /* 0x639 MSR_PP0_ENERGY_STATUS */
139#define RAPL_CORES (RAPL_CORES_ENERGY_STATUS | RAPL_CORES_POWER_LIMIT)
Len Brown889facb2012-11-08 00:48:57 -0500140#define TJMAX_DEFAULT 100
141
142#define MAX(a, b) ((a) > (b) ? (a) : (b))
Len Brown103a8fe2010-10-22 23:53:03 -0400143
Len Brown388e9c82016-12-22 23:57:55 -0500144/*
145 * buffer size used by sscanf() for added column names
146 * Usually truncated to 7 characters, but also handles 18 columns for raw 64-bit counters
147 */
148#define NAME_BYTES 20
Len Brown495c76542017-02-08 02:41:51 -0500149#define PATH_BYTES 128
Len Brown388e9c82016-12-22 23:57:55 -0500150
Len Brown103a8fe2010-10-22 23:53:03 -0400151int backwards_count;
152char *progname;
Len Brown103a8fe2010-10-22 23:53:03 -0400153
Len Brown1ef7d212017-02-10 23:54:15 -0500154#define CPU_SUBSET_MAXCPUS 1024 /* need to use before probe... */
155cpu_set_t *cpu_present_set, *cpu_affinity_set, *cpu_subset;
156size_t cpu_present_setsize, cpu_affinity_setsize, cpu_subset_size;
Len Brown678a3bd2017-02-09 22:22:13 -0500157#define MAX_ADDED_COUNTERS 16
Len Brown103a8fe2010-10-22 23:53:03 -0400158
Len Brownc98d5d92012-06-04 00:56:40 -0400159struct thread_data {
Len Brownf4fdf2b2017-05-27 21:06:55 -0700160 struct timeval tv_begin;
161 struct timeval tv_end;
Len Brownc98d5d92012-06-04 00:56:40 -0400162 unsigned long long tsc;
163 unsigned long long aperf;
164 unsigned long long mperf;
Len Brown144b44b2013-11-09 00:30:16 -0500165 unsigned long long c1;
Len Brown0de6c0d2017-02-15 21:45:40 -0500166 unsigned long long irq_count;
Len Brown1ed51012013-02-10 17:19:24 -0500167 unsigned int smi_count;
Len Brownc98d5d92012-06-04 00:56:40 -0400168 unsigned int cpu_id;
169 unsigned int flags;
170#define CPU_IS_FIRST_THREAD_IN_CORE 0x2
171#define CPU_IS_FIRST_CORE_IN_PACKAGE 0x4
Len Brown678a3bd2017-02-09 22:22:13 -0500172 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400173} *thread_even, *thread_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400174
Len Brownc98d5d92012-06-04 00:56:40 -0400175struct core_data {
176 unsigned long long c3;
177 unsigned long long c6;
178 unsigned long long c7;
Len Brown0539ba12017-02-10 00:27:20 -0500179 unsigned long long mc6_us; /* duplicate as per-core for now, even though per module */
Len Brown889facb2012-11-08 00:48:57 -0500180 unsigned int core_temp_c;
Len Brownc98d5d92012-06-04 00:56:40 -0400181 unsigned int core_id;
Len Brown678a3bd2017-02-09 22:22:13 -0500182 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400183} *core_even, *core_odd;
Len Brown103a8fe2010-10-22 23:53:03 -0400184
Len Brownc98d5d92012-06-04 00:56:40 -0400185struct pkg_data {
186 unsigned long long pc2;
187 unsigned long long pc3;
188 unsigned long long pc6;
189 unsigned long long pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -0800190 unsigned long long pc8;
191 unsigned long long pc9;
192 unsigned long long pc10;
Len Brownbe0e54c2018-06-01 12:35:53 -0400193 unsigned long long cpu_lpi;
194 unsigned long long sys_lpi;
Len Brown0b2bb692015-03-26 00:50:30 -0400195 unsigned long long pkg_wtd_core_c0;
196 unsigned long long pkg_any_core_c0;
197 unsigned long long pkg_any_gfxe_c0;
198 unsigned long long pkg_both_core_gfxe_c0;
Len Brown9185e982016-04-06 17:16:00 -0400199 long long gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -0500200 unsigned int gfx_mhz;
Len Brownc98d5d92012-06-04 00:56:40 -0400201 unsigned int package_id;
Len Brown889facb2012-11-08 00:48:57 -0500202 unsigned int energy_pkg; /* MSR_PKG_ENERGY_STATUS */
203 unsigned int energy_dram; /* MSR_DRAM_ENERGY_STATUS */
204 unsigned int energy_cores; /* MSR_PP0_ENERGY_STATUS */
205 unsigned int energy_gfx; /* MSR_PP1_ENERGY_STATUS */
206 unsigned int rapl_pkg_perf_status; /* MSR_PKG_PERF_STATUS */
207 unsigned int rapl_dram_perf_status; /* MSR_DRAM_PERF_STATUS */
208 unsigned int pkg_temp_c;
Len Brown678a3bd2017-02-09 22:22:13 -0500209 unsigned long long counter[MAX_ADDED_COUNTERS];
Len Brownc98d5d92012-06-04 00:56:40 -0400210} *package_even, *package_odd;
211
212#define ODD_COUNTERS thread_odd, core_odd, package_odd
213#define EVEN_COUNTERS thread_even, core_even, package_even
214
215#define GET_THREAD(thread_base, thread_no, core_no, pkg_no) \
216 (thread_base + (pkg_no) * topo.num_cores_per_pkg * \
217 topo.num_threads_per_core + \
218 (core_no) * topo.num_threads_per_core + (thread_no))
219#define GET_CORE(core_base, core_no, pkg_no) \
220 (core_base + (pkg_no) * topo.num_cores_per_pkg + (core_no))
221#define GET_PKG(pkg_base, pkg_no) (pkg_base + pkg_no)
222
Len Brown388e9c82016-12-22 23:57:55 -0500223enum counter_scope {SCOPE_CPU, SCOPE_CORE, SCOPE_PACKAGE};
Len Brown41618e62017-02-09 18:25:22 -0500224enum counter_type {COUNTER_ITEMS, COUNTER_CYCLES, COUNTER_SECONDS, COUNTER_USEC};
Len Brown388e9c82016-12-22 23:57:55 -0500225enum counter_format {FORMAT_RAW, FORMAT_DELTA, FORMAT_PERCENT};
226
227struct msr_counter {
228 unsigned int msr_num;
229 char name[NAME_BYTES];
Len Brown495c76542017-02-08 02:41:51 -0500230 char path[PATH_BYTES];
Len Brown388e9c82016-12-22 23:57:55 -0500231 unsigned int width;
232 enum counter_type type;
233 enum counter_format format;
234 struct msr_counter *next;
Len Brown812db3f2017-02-10 00:25:41 -0500235 unsigned int flags;
236#define FLAGS_HIDE (1 << 0)
237#define FLAGS_SHOW (1 << 1)
Len Brown41618e62017-02-09 18:25:22 -0500238#define SYSFS_PERCPU (1 << 1)
Len Brown388e9c82016-12-22 23:57:55 -0500239};
240
241struct sys_counters {
Len Brown678a3bd2017-02-09 22:22:13 -0500242 unsigned int added_thread_counters;
243 unsigned int added_core_counters;
244 unsigned int added_package_counters;
Len Brown388e9c82016-12-22 23:57:55 -0500245 struct msr_counter *tp;
246 struct msr_counter *cp;
247 struct msr_counter *pp;
248} sys;
249
Len Brownc98d5d92012-06-04 00:56:40 -0400250struct system_summary {
251 struct thread_data threads;
252 struct core_data cores;
253 struct pkg_data packages;
Len Brown388e9c82016-12-22 23:57:55 -0500254} average;
Len Brownc98d5d92012-06-04 00:56:40 -0400255
256
257struct topo_params {
258 int num_packages;
259 int num_cpus;
260 int num_cores;
261 int max_cpu_num;
262 int num_cores_per_pkg;
263 int num_threads_per_core;
264} topo;
265
266struct timeval tv_even, tv_odd, tv_delta;
267
Len Brown562a2d32016-02-26 23:48:05 -0500268int *irq_column_2_cpu; /* /proc/interrupts column numbers */
269int *irqs_per_cpu; /* indexed by cpu_num */
270
Len Brownc98d5d92012-06-04 00:56:40 -0400271void setup_all_buffers(void);
272
273int cpu_is_not_present(int cpu)
Len Brownd15cf7c2012-06-03 23:24:00 -0400274{
Len Brownc98d5d92012-06-04 00:56:40 -0400275 return !CPU_ISSET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brownd15cf7c2012-06-03 23:24:00 -0400276}
Len Brown88c32812012-03-29 21:44:40 -0400277/*
Len Brownc98d5d92012-06-04 00:56:40 -0400278 * run func(thread, core, package) in topology order
279 * skip non-present cpus
Len Brown88c32812012-03-29 21:44:40 -0400280 */
Len Brownd15cf7c2012-06-03 23:24:00 -0400281
Len Brownc98d5d92012-06-04 00:56:40 -0400282int for_all_cpus(int (func)(struct thread_data *, struct core_data *, struct pkg_data *),
283 struct thread_data *thread_base, struct core_data *core_base, struct pkg_data *pkg_base)
Len Brown88c32812012-03-29 21:44:40 -0400284{
Len Brownc98d5d92012-06-04 00:56:40 -0400285 int retval, pkg_no, core_no, thread_no;
286
287 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
288 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
289 for (thread_no = 0; thread_no <
290 topo.num_threads_per_core; ++thread_no) {
291 struct thread_data *t;
292 struct core_data *c;
293 struct pkg_data *p;
294
295 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
296
297 if (cpu_is_not_present(t->cpu_id))
298 continue;
299
300 c = GET_CORE(core_base, core_no, pkg_no);
301 p = GET_PKG(pkg_base, pkg_no);
302
303 retval = func(t, c, p);
304 if (retval)
305 return retval;
306 }
307 }
308 }
309 return 0;
Len Brown88c32812012-03-29 21:44:40 -0400310}
311
312int cpu_migrate(int cpu)
313{
Len Brownc98d5d92012-06-04 00:56:40 -0400314 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
315 CPU_SET_S(cpu, cpu_affinity_setsize, cpu_affinity_set);
316 if (sched_setaffinity(0, cpu_affinity_setsize, cpu_affinity_set) == -1)
Len Brown88c32812012-03-29 21:44:40 -0400317 return -1;
318 else
319 return 0;
320}
Len Brown36229892016-02-26 20:51:02 -0500321int get_msr_fd(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -0400322{
Len Brown103a8fe2010-10-22 23:53:03 -0400323 char pathname[32];
324 int fd;
325
Len Brown36229892016-02-26 20:51:02 -0500326 fd = fd_percpu[cpu];
327
328 if (fd)
329 return fd;
330
Len Brown103a8fe2010-10-22 23:53:03 -0400331 sprintf(pathname, "/dev/cpu/%d/msr", cpu);
332 fd = open(pathname, O_RDONLY);
Len Brown15aaa342012-03-29 22:19:58 -0400333 if (fd < 0)
Len Brown98481e72014-08-15 00:36:50 -0400334 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 -0400335
Len Brown36229892016-02-26 20:51:02 -0500336 fd_percpu[cpu] = fd;
337
338 return fd;
339}
340
341int get_msr(int cpu, off_t offset, unsigned long long *msr)
342{
343 ssize_t retval;
344
345 retval = pread(get_msr_fd(cpu), msr, sizeof(*msr), offset);
Len Brown15aaa342012-03-29 22:19:58 -0400346
Len Brown98481e72014-08-15 00:36:50 -0400347 if (retval != sizeof *msr)
Len Browncf4cbe52017-01-01 13:08:33 -0500348 err(-1, "cpu%d: msr offset 0x%llx read failed", cpu, (unsigned long long)offset);
Len Brown15aaa342012-03-29 22:19:58 -0400349
350 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400351}
352
Len Brownfc04cc62014-02-06 00:55:19 -0500353/*
Len Brown812db3f2017-02-10 00:25:41 -0500354 * Each string in this array is compared in --show and --hide cmdline.
355 * Thus, strings that are proper sub-sets must follow their more specific peers.
Len Brownfc04cc62014-02-06 00:55:19 -0500356 */
Len Brown812db3f2017-02-10 00:25:41 -0500357struct msr_counter bic[] = {
Len Brown3f44a5c2017-10-17 15:42:56 -0400358 { 0x0, "usec" },
359 { 0x0, "Time_Of_Day_Seconds" },
Len Brown812db3f2017-02-10 00:25:41 -0500360 { 0x0, "Package" },
361 { 0x0, "Avg_MHz" },
362 { 0x0, "Bzy_MHz" },
363 { 0x0, "TSC_MHz" },
364 { 0x0, "IRQ" },
Len Brown495c76542017-02-08 02:41:51 -0500365 { 0x0, "SMI", "", 32, 0, FORMAT_DELTA, NULL},
Len Brown812db3f2017-02-10 00:25:41 -0500366 { 0x0, "Busy%" },
367 { 0x0, "CPU%c1" },
368 { 0x0, "CPU%c3" },
369 { 0x0, "CPU%c6" },
370 { 0x0, "CPU%c7" },
371 { 0x0, "ThreadC" },
372 { 0x0, "CoreTmp" },
373 { 0x0, "CoreCnt" },
374 { 0x0, "PkgTmp" },
375 { 0x0, "GFX%rc6" },
376 { 0x0, "GFXMHz" },
377 { 0x0, "Pkg%pc2" },
378 { 0x0, "Pkg%pc3" },
379 { 0x0, "Pkg%pc6" },
380 { 0x0, "Pkg%pc7" },
Len Brown0f47c082017-01-27 00:50:45 -0500381 { 0x0, "Pkg%pc8" },
382 { 0x0, "Pkg%pc9" },
Len Brown4bd1f8f2018-01-28 23:42:42 -0500383 { 0x0, "Pk%pc10" },
Len Brownbe0e54c2018-06-01 12:35:53 -0400384 { 0x0, "CPU%LPI" },
385 { 0x0, "SYS%LPI" },
Len Brown812db3f2017-02-10 00:25:41 -0500386 { 0x0, "PkgWatt" },
387 { 0x0, "CorWatt" },
388 { 0x0, "GFXWatt" },
389 { 0x0, "PkgCnt" },
390 { 0x0, "RAMWatt" },
391 { 0x0, "PKG_%" },
392 { 0x0, "RAM_%" },
393 { 0x0, "Pkg_J" },
394 { 0x0, "Cor_J" },
395 { 0x0, "GFX_J" },
396 { 0x0, "RAM_J" },
397 { 0x0, "Core" },
398 { 0x0, "CPU" },
Len Brown0539ba12017-02-10 00:27:20 -0500399 { 0x0, "Mod%c6" },
Len Brown41618e62017-02-09 18:25:22 -0500400 { 0x0, "sysfs" },
Len Browna99d8732017-05-20 20:11:55 -0400401 { 0x0, "Totl%C0" },
402 { 0x0, "Any%C0" },
403 { 0x0, "GFX%C0" },
404 { 0x0, "CPUGFX%" },
Len Brownbe0e54c2018-06-01 12:35:53 -0400405 { 0x0, "Node%" },
Len Brown812db3f2017-02-10 00:25:41 -0500406};
407
Len Browna99d8732017-05-20 20:11:55 -0400408
409
Len Brown812db3f2017-02-10 00:25:41 -0500410#define MAX_BIC (sizeof(bic) / sizeof(struct msr_counter))
Len Brown3f44a5c2017-10-17 15:42:56 -0400411#define BIC_USEC (1ULL << 0)
412#define BIC_TOD (1ULL << 1)
413#define BIC_Package (1ULL << 2)
414#define BIC_Avg_MHz (1ULL << 3)
415#define BIC_Bzy_MHz (1ULL << 4)
416#define BIC_TSC_MHz (1ULL << 5)
417#define BIC_IRQ (1ULL << 6)
418#define BIC_SMI (1ULL << 7)
419#define BIC_Busy (1ULL << 8)
420#define BIC_CPU_c1 (1ULL << 9)
421#define BIC_CPU_c3 (1ULL << 10)
422#define BIC_CPU_c6 (1ULL << 11)
423#define BIC_CPU_c7 (1ULL << 12)
424#define BIC_ThreadC (1ULL << 13)
425#define BIC_CoreTmp (1ULL << 14)
426#define BIC_CoreCnt (1ULL << 15)
427#define BIC_PkgTmp (1ULL << 16)
428#define BIC_GFX_rc6 (1ULL << 17)
429#define BIC_GFXMHz (1ULL << 18)
430#define BIC_Pkgpc2 (1ULL << 19)
431#define BIC_Pkgpc3 (1ULL << 20)
432#define BIC_Pkgpc6 (1ULL << 21)
433#define BIC_Pkgpc7 (1ULL << 22)
434#define BIC_Pkgpc8 (1ULL << 23)
435#define BIC_Pkgpc9 (1ULL << 24)
436#define BIC_Pkgpc10 (1ULL << 25)
Len Brownbe0e54c2018-06-01 12:35:53 -0400437#define BIC_CPU_LPI (1ULL << 26)
438#define BIC_SYS_LPI (1ULL << 27)
Len Brown3f44a5c2017-10-17 15:42:56 -0400439#define BIC_PkgWatt (1ULL << 26)
440#define BIC_CorWatt (1ULL << 27)
441#define BIC_GFXWatt (1ULL << 28)
442#define BIC_PkgCnt (1ULL << 29)
443#define BIC_RAMWatt (1ULL << 30)
444#define BIC_PKG__ (1ULL << 31)
445#define BIC_RAM__ (1ULL << 32)
446#define BIC_Pkg_J (1ULL << 33)
447#define BIC_Cor_J (1ULL << 34)
448#define BIC_GFX_J (1ULL << 35)
449#define BIC_RAM_J (1ULL << 36)
450#define BIC_Core (1ULL << 37)
451#define BIC_CPU (1ULL << 38)
452#define BIC_Mod_c6 (1ULL << 39)
453#define BIC_sysfs (1ULL << 40)
454#define BIC_Totl_c0 (1ULL << 41)
455#define BIC_Any_c0 (1ULL << 42)
456#define BIC_GFX_c0 (1ULL << 43)
457#define BIC_CPUGFX (1ULL << 44)
Len Brown812db3f2017-02-10 00:25:41 -0500458
Len Brown3f44a5c2017-10-17 15:42:56 -0400459#define BIC_DISABLED_BY_DEFAULT (BIC_USEC | BIC_TOD)
460
461unsigned long long bic_enabled = (0xFFFFFFFFFFFFFFFFULL & ~BIC_DISABLED_BY_DEFAULT);
462unsigned long long bic_present = BIC_USEC | BIC_TOD | BIC_sysfs;
Len Brown812db3f2017-02-10 00:25:41 -0500463
464#define DO_BIC(COUNTER_NAME) (bic_enabled & bic_present & COUNTER_NAME)
Len Brown3f44a5c2017-10-17 15:42:56 -0400465#define ENABLE_BIC(COUNTER_NAME) (bic_enabled |= COUNTER_NAME)
Len Brown812db3f2017-02-10 00:25:41 -0500466#define BIC_PRESENT(COUNTER_BIT) (bic_present |= COUNTER_BIT)
Len Brown0f47c082017-01-27 00:50:45 -0500467#define BIC_NOT_PRESENT(COUNTER_BIT) (bic_present &= ~COUNTER_BIT)
Len Brown812db3f2017-02-10 00:25:41 -0500468
Len Brown3f44a5c2017-10-17 15:42:56 -0400469
Len Browndd778a52017-02-21 23:21:13 -0500470#define MAX_DEFERRED 16
471char *deferred_skip_names[MAX_DEFERRED];
472int deferred_skip_index;
473
474/*
475 * HIDE_LIST - hide this list of counters, show the rest [default]
476 * SHOW_LIST - show this list of counters, hide the rest
477 */
478enum show_hide_mode { SHOW_LIST, HIDE_LIST } global_show_hide_mode = HIDE_LIST;
479
480void help(void)
481{
482 fprintf(outf,
483 "Usage: turbostat [OPTIONS][(--interval seconds) | COMMAND ...]\n"
484 "\n"
485 "Turbostat forks the specified COMMAND and prints statistics\n"
486 "when COMMAND completes.\n"
487 "If no COMMAND is specified, turbostat wakes every 5-seconds\n"
488 "to print statistics, until interrupted.\n"
489 "--add add a counter\n"
490 " eg. --add msr0x10,u64,cpu,delta,MY_TSC\n"
491 "--cpu cpu-set limit output to summary plus cpu-set:\n"
492 " {core | package | j,k,l..m,n-p }\n"
493 "--quiet skip decoding system configuration header\n"
Len Brownb9ad8ee2017-07-19 19:28:37 -0400494 "--interval sec.subsec Override default 5-second measurement interval\n"
Len Browndd778a52017-02-21 23:21:13 -0500495 "--help print this help message\n"
496 "--list list column headers only\n"
497 "--out file create or truncate \"file\" for all output\n"
498 "--version print version information\n"
499 "\n"
500 "For more help, run \"man turbostat\"\n");
501}
502
Len Brown812db3f2017-02-10 00:25:41 -0500503/*
504 * bic_lookup
505 * for all the strings in comma separate name_list,
506 * set the approprate bit in return value.
507 */
Len Browndd778a52017-02-21 23:21:13 -0500508unsigned long long bic_lookup(char *name_list, enum show_hide_mode mode)
Len Brown812db3f2017-02-10 00:25:41 -0500509{
510 int i;
511 unsigned long long retval = 0;
512
513 while (name_list) {
514 char *comma;
515
516 comma = strchr(name_list, ',');
517
518 if (comma)
519 *comma = '\0';
520
Len Brown3f44a5c2017-10-17 15:42:56 -0400521 if (!strcmp(name_list, "all"))
522 return ~0;
523
Len Brown812db3f2017-02-10 00:25:41 -0500524 for (i = 0; i < MAX_BIC; ++i) {
525 if (!strcmp(name_list, bic[i].name)) {
526 retval |= (1ULL << i);
527 break;
528 }
529 }
530 if (i == MAX_BIC) {
Len Browndd778a52017-02-21 23:21:13 -0500531 if (mode == SHOW_LIST) {
532 fprintf(stderr, "Invalid counter name: %s\n", name_list);
533 exit(-1);
534 }
535 deferred_skip_names[deferred_skip_index++] = name_list;
536 if (debug)
537 fprintf(stderr, "deferred \"%s\"\n", name_list);
538 if (deferred_skip_index >= MAX_DEFERRED) {
539 fprintf(stderr, "More than max %d un-recognized --skip options '%s'\n",
540 MAX_DEFERRED, name_list);
541 help();
542 exit(1);
543 }
Len Brown812db3f2017-02-10 00:25:41 -0500544 }
545
546 name_list = comma;
547 if (name_list)
548 name_list++;
549
550 }
551 return retval;
552}
Len Brownfc04cc62014-02-06 00:55:19 -0500553
Len Browndd778a52017-02-21 23:21:13 -0500554
Len Brownc8ade362017-02-15 17:15:11 -0500555void print_header(char *delim)
Len Brown103a8fe2010-10-22 23:53:03 -0400556{
Len Brown388e9c82016-12-22 23:57:55 -0500557 struct msr_counter *mp;
Len Brown6168c2e2017-02-16 23:07:51 -0500558 int printed = 0;
Len Brown388e9c82016-12-22 23:57:55 -0500559
Len Brown3f44a5c2017-10-17 15:42:56 -0400560 if (DO_BIC(BIC_USEC))
561 outp += sprintf(outp, "%susec", (printed++ ? delim : ""));
562 if (DO_BIC(BIC_TOD))
563 outp += sprintf(outp, "%sTime_Of_Day_Seconds", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500564 if (DO_BIC(BIC_Package))
Len Brown6168c2e2017-02-16 23:07:51 -0500565 outp += sprintf(outp, "%sPackage", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500566 if (DO_BIC(BIC_Core))
Len Brown6168c2e2017-02-16 23:07:51 -0500567 outp += sprintf(outp, "%sCore", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500568 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500569 outp += sprintf(outp, "%sCPU", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500570 if (DO_BIC(BIC_Avg_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500571 outp += sprintf(outp, "%sAvg_MHz", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500572 if (DO_BIC(BIC_Busy))
Len Brown6168c2e2017-02-16 23:07:51 -0500573 outp += sprintf(outp, "%sBusy%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500574 if (DO_BIC(BIC_Bzy_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500575 outp += sprintf(outp, "%sBzy_MHz", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500576 if (DO_BIC(BIC_TSC_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500577 outp += sprintf(outp, "%sTSC_MHz", (printed++ ? delim : ""));
Len Brown1cc21f72015-02-23 00:34:57 -0500578
Len Brown0de6c0d2017-02-15 21:45:40 -0500579 if (DO_BIC(BIC_IRQ)) {
580 if (sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500581 outp += sprintf(outp, "%s IRQ", (printed++ ? delim : ""));
Len Brown0de6c0d2017-02-15 21:45:40 -0500582 else
Len Brown6168c2e2017-02-16 23:07:51 -0500583 outp += sprintf(outp, "%sIRQ", (printed++ ? delim : ""));
Len Brown0de6c0d2017-02-15 21:45:40 -0500584 }
585
Len Brown812db3f2017-02-10 00:25:41 -0500586 if (DO_BIC(BIC_SMI))
Len Brown6168c2e2017-02-16 23:07:51 -0500587 outp += sprintf(outp, "%sSMI", (printed++ ? delim : ""));
Len Brown1cc21f72015-02-23 00:34:57 -0500588
Len Brown388e9c82016-12-22 23:57:55 -0500589 for (mp = sys.tp; mp; mp = mp->next) {
Len Browndd778a52017-02-21 23:21:13 -0500590
Len Brown388e9c82016-12-22 23:57:55 -0500591 if (mp->format == FORMAT_RAW) {
592 if (mp->width == 64)
Len Browndd778a52017-02-21 23:21:13 -0500593 outp += sprintf(outp, "%s%18.18s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500594 else
Len Browndd778a52017-02-21 23:21:13 -0500595 outp += sprintf(outp, "%s%10.10s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500596 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500597 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Browndd778a52017-02-21 23:21:13 -0500598 outp += sprintf(outp, "%s%8s", (printed++ ? delim : ""), mp->name);
Len Brown0de6c0d2017-02-15 21:45:40 -0500599 else
Len Browndd778a52017-02-21 23:21:13 -0500600 outp += sprintf(outp, "%s%s", (printed++ ? delim : ""), mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500601 }
602 }
603
Len Brown41618e62017-02-09 18:25:22 -0500604 if (DO_BIC(BIC_CPU_c1))
Len Brown6168c2e2017-02-16 23:07:51 -0500605 outp += sprintf(outp, "%sCPU%%c1", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500606 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brown6168c2e2017-02-16 23:07:51 -0500607 outp += sprintf(outp, "%sCPU%%c3", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500608 if (DO_BIC(BIC_CPU_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500609 outp += sprintf(outp, "%sCPU%%c6", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500610 if (DO_BIC(BIC_CPU_c7))
Len Brown6168c2e2017-02-16 23:07:51 -0500611 outp += sprintf(outp, "%sCPU%%c7", (printed++ ? delim : ""));
Len Brown678a3bd2017-02-09 22:22:13 -0500612
Len Brown0539ba12017-02-10 00:27:20 -0500613 if (DO_BIC(BIC_Mod_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500614 outp += sprintf(outp, "%sMod%%c6", (printed++ ? delim : ""));
Len Brown678a3bd2017-02-09 22:22:13 -0500615
Len Brown812db3f2017-02-10 00:25:41 -0500616 if (DO_BIC(BIC_CoreTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500617 outp += sprintf(outp, "%sCoreTmp", (printed++ ? delim : ""));
Len Brown388e9c82016-12-22 23:57:55 -0500618
619 for (mp = sys.cp; mp; mp = mp->next) {
620 if (mp->format == FORMAT_RAW) {
621 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500622 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500623 else
Len Brownc8ade362017-02-15 17:15:11 -0500624 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500625 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500626 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
627 outp += sprintf(outp, "%s%8s", delim, mp->name);
628 else
629 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500630 }
631 }
632
Len Brown812db3f2017-02-10 00:25:41 -0500633 if (DO_BIC(BIC_PkgTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500634 outp += sprintf(outp, "%sPkgTmp", (printed++ ? delim : ""));
Len Brown889facb2012-11-08 00:48:57 -0500635
Len Brown812db3f2017-02-10 00:25:41 -0500636 if (DO_BIC(BIC_GFX_rc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500637 outp += sprintf(outp, "%sGFX%%rc6", (printed++ ? delim : ""));
Len Brownfdf676e2016-02-27 01:28:12 -0500638
Len Brown812db3f2017-02-10 00:25:41 -0500639 if (DO_BIC(BIC_GFXMHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500640 outp += sprintf(outp, "%sGFXMHz", (printed++ ? delim : ""));
Len Brown27d47352016-02-27 00:37:54 -0500641
Len Browna99d8732017-05-20 20:11:55 -0400642 if (DO_BIC(BIC_Totl_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500643 outp += sprintf(outp, "%sTotl%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400644 if (DO_BIC(BIC_Any_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500645 outp += sprintf(outp, "%sAny%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400646 if (DO_BIC(BIC_GFX_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500647 outp += sprintf(outp, "%sGFX%%C0", (printed++ ? delim : ""));
Len Browna99d8732017-05-20 20:11:55 -0400648 if (DO_BIC(BIC_CPUGFX))
Len Brown6168c2e2017-02-16 23:07:51 -0500649 outp += sprintf(outp, "%sCPUGFX%%", (printed++ ? delim : ""));
Len Brown0b2bb692015-03-26 00:50:30 -0400650
Len Brown0f47c082017-01-27 00:50:45 -0500651 if (DO_BIC(BIC_Pkgpc2))
Len Brown6168c2e2017-02-16 23:07:51 -0500652 outp += sprintf(outp, "%sPkg%%pc2", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500653 if (DO_BIC(BIC_Pkgpc3))
Len Brown6168c2e2017-02-16 23:07:51 -0500654 outp += sprintf(outp, "%sPkg%%pc3", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500655 if (DO_BIC(BIC_Pkgpc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500656 outp += sprintf(outp, "%sPkg%%pc6", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500657 if (DO_BIC(BIC_Pkgpc7))
Len Brown6168c2e2017-02-16 23:07:51 -0500658 outp += sprintf(outp, "%sPkg%%pc7", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500659 if (DO_BIC(BIC_Pkgpc8))
Len Brown6168c2e2017-02-16 23:07:51 -0500660 outp += sprintf(outp, "%sPkg%%pc8", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500661 if (DO_BIC(BIC_Pkgpc9))
Len Brown6168c2e2017-02-16 23:07:51 -0500662 outp += sprintf(outp, "%sPkg%%pc9", (printed++ ? delim : ""));
Len Brown0f47c082017-01-27 00:50:45 -0500663 if (DO_BIC(BIC_Pkgpc10))
Len Brown6168c2e2017-02-16 23:07:51 -0500664 outp += sprintf(outp, "%sPk%%pc10", (printed++ ? delim : ""));
Len Brownbe0e54c2018-06-01 12:35:53 -0400665 if (DO_BIC(BIC_CPU_LPI))
666 outp += sprintf(outp, "%sCPU%%LPI", (printed++ ? delim : ""));
667 if (DO_BIC(BIC_SYS_LPI))
668 outp += sprintf(outp, "%sSYS%%LPI", (printed++ ? delim : ""));
Len Brown103a8fe2010-10-22 23:53:03 -0400669
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800670 if (do_rapl && !rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500671 if (DO_BIC(BIC_PkgWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500672 outp += sprintf(outp, "%sPkgWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500673 if (DO_BIC(BIC_CorWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500674 outp += sprintf(outp, "%sCorWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500675 if (DO_BIC(BIC_GFXWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500676 outp += sprintf(outp, "%sGFXWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500677 if (DO_BIC(BIC_RAMWatt))
Len Brown6168c2e2017-02-16 23:07:51 -0500678 outp += sprintf(outp, "%sRAMWatt", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500679 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -0500680 outp += sprintf(outp, "%sPKG_%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500681 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -0500682 outp += sprintf(outp, "%sRAM_%%", (printed++ ? delim : ""));
Len Brownd7899442015-01-23 00:12:33 -0500683 } else if (do_rapl && rapl_joules) {
Len Brown812db3f2017-02-10 00:25:41 -0500684 if (DO_BIC(BIC_Pkg_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500685 outp += sprintf(outp, "%sPkg_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500686 if (DO_BIC(BIC_Cor_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500687 outp += sprintf(outp, "%sCor_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500688 if (DO_BIC(BIC_GFX_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500689 outp += sprintf(outp, "%sGFX_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500690 if (DO_BIC(BIC_RAM_J))
Len Brown6168c2e2017-02-16 23:07:51 -0500691 outp += sprintf(outp, "%sRAM_J", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500692 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -0500693 outp += sprintf(outp, "%sPKG_%%", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500694 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -0500695 outp += sprintf(outp, "%sRAM_%%", (printed++ ? delim : ""));
Dirk Brandewie5c56be92013-12-16 10:23:41 -0800696 }
Len Brown388e9c82016-12-22 23:57:55 -0500697 for (mp = sys.pp; mp; mp = mp->next) {
698 if (mp->format == FORMAT_RAW) {
699 if (mp->width == 64)
Len Brownc8ade362017-02-15 17:15:11 -0500700 outp += sprintf(outp, "%s%18.18s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500701 else
Len Brownc8ade362017-02-15 17:15:11 -0500702 outp += sprintf(outp, "%s%10.10s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500703 } else {
Len Brown0de6c0d2017-02-15 21:45:40 -0500704 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
705 outp += sprintf(outp, "%s%8s", delim, mp->name);
706 else
707 outp += sprintf(outp, "%s%s", delim, mp->name);
Len Brown388e9c82016-12-22 23:57:55 -0500708 }
709 }
710
Len Brownc98d5d92012-06-04 00:56:40 -0400711 outp += sprintf(outp, "\n");
Len Brown103a8fe2010-10-22 23:53:03 -0400712}
713
Len Brownc98d5d92012-06-04 00:56:40 -0400714int dump_counters(struct thread_data *t, struct core_data *c,
715 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400716{
Len Brown388e9c82016-12-22 23:57:55 -0500717 int i;
718 struct msr_counter *mp;
719
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200720 outp += sprintf(outp, "t %p, c %p, p %p\n", t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -0400721
Len Brownc98d5d92012-06-04 00:56:40 -0400722 if (t) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200723 outp += sprintf(outp, "CPU: %d flags 0x%x\n",
724 t->cpu_id, t->flags);
725 outp += sprintf(outp, "TSC: %016llX\n", t->tsc);
726 outp += sprintf(outp, "aperf: %016llX\n", t->aperf);
727 outp += sprintf(outp, "mperf: %016llX\n", t->mperf);
728 outp += sprintf(outp, "c1: %016llX\n", t->c1);
Len Brown6886fee2016-12-24 15:18:37 -0500729
Len Brown812db3f2017-02-10 00:25:41 -0500730 if (DO_BIC(BIC_IRQ))
Len Brown0de6c0d2017-02-15 21:45:40 -0500731 outp += sprintf(outp, "IRQ: %lld\n", t->irq_count);
Len Brown812db3f2017-02-10 00:25:41 -0500732 if (DO_BIC(BIC_SMI))
Len Brown218f0e82017-02-14 22:07:52 -0500733 outp += sprintf(outp, "SMI: %d\n", t->smi_count);
Len Brown388e9c82016-12-22 23:57:55 -0500734
735 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
736 outp += sprintf(outp, "tADDED [%d] msr0x%x: %08llX\n",
737 i, mp->msr_num, t->counter[i]);
738 }
Len Brownc98d5d92012-06-04 00:56:40 -0400739 }
Len Brown103a8fe2010-10-22 23:53:03 -0400740
Len Brownc98d5d92012-06-04 00:56:40 -0400741 if (c) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200742 outp += sprintf(outp, "core: %d\n", c->core_id);
743 outp += sprintf(outp, "c3: %016llX\n", c->c3);
744 outp += sprintf(outp, "c6: %016llX\n", c->c6);
745 outp += sprintf(outp, "c7: %016llX\n", c->c7);
746 outp += sprintf(outp, "DTS: %dC\n", c->core_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500747
748 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
749 outp += sprintf(outp, "cADDED [%d] msr0x%x: %08llX\n",
750 i, mp->msr_num, c->counter[i]);
751 }
Len Brown0539ba12017-02-10 00:27:20 -0500752 outp += sprintf(outp, "mc6_us: %016llX\n", c->mc6_us);
Len Brownc98d5d92012-06-04 00:56:40 -0400753 }
754
755 if (p) {
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200756 outp += sprintf(outp, "package: %d\n", p->package_id);
Len Brown0b2bb692015-03-26 00:50:30 -0400757
758 outp += sprintf(outp, "Weighted cores: %016llX\n", p->pkg_wtd_core_c0);
759 outp += sprintf(outp, "Any cores: %016llX\n", p->pkg_any_core_c0);
760 outp += sprintf(outp, "Any GFX: %016llX\n", p->pkg_any_gfxe_c0);
761 outp += sprintf(outp, "CPU + GFX: %016llX\n", p->pkg_both_core_gfxe_c0);
762
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200763 outp += sprintf(outp, "pc2: %016llX\n", p->pc2);
Len Brown0f47c082017-01-27 00:50:45 -0500764 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -0500765 outp += sprintf(outp, "pc3: %016llX\n", p->pc3);
Len Brown0f47c082017-01-27 00:50:45 -0500766 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -0500767 outp += sprintf(outp, "pc6: %016llX\n", p->pc6);
Len Brown0f47c082017-01-27 00:50:45 -0500768 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -0500769 outp += sprintf(outp, "pc7: %016llX\n", p->pc7);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200770 outp += sprintf(outp, "pc8: %016llX\n", p->pc8);
771 outp += sprintf(outp, "pc9: %016llX\n", p->pc9);
772 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
Len Brownbe0e54c2018-06-01 12:35:53 -0400773 outp += sprintf(outp, "pc10: %016llX\n", p->pc10);
774 outp += sprintf(outp, "cpu_lpi: %016llX\n", p->cpu_lpi);
775 outp += sprintf(outp, "sys_lpi: %016llX\n", p->sys_lpi);
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200776 outp += sprintf(outp, "Joules PKG: %0X\n", p->energy_pkg);
777 outp += sprintf(outp, "Joules COR: %0X\n", p->energy_cores);
778 outp += sprintf(outp, "Joules GFX: %0X\n", p->energy_gfx);
779 outp += sprintf(outp, "Joules RAM: %0X\n", p->energy_dram);
780 outp += sprintf(outp, "Throttle PKG: %0X\n",
781 p->rapl_pkg_perf_status);
782 outp += sprintf(outp, "Throttle RAM: %0X\n",
783 p->rapl_dram_perf_status);
784 outp += sprintf(outp, "PTM: %dC\n", p->pkg_temp_c);
Len Brown388e9c82016-12-22 23:57:55 -0500785
786 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
787 outp += sprintf(outp, "pADDED [%d] msr0x%x: %08llX\n",
788 i, mp->msr_num, p->counter[i]);
789 }
Len Brownc98d5d92012-06-04 00:56:40 -0400790 }
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +0200791
792 outp += sprintf(outp, "\n");
793
Len Brownc98d5d92012-06-04 00:56:40 -0400794 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400795}
796
Len Browne23da032012-02-06 18:37:16 -0500797/*
798 * column formatting convention & formats
Len Browne23da032012-02-06 18:37:16 -0500799 */
Len Brownc98d5d92012-06-04 00:56:40 -0400800int format_counters(struct thread_data *t, struct core_data *c,
801 struct pkg_data *p)
Len Brown103a8fe2010-10-22 23:53:03 -0400802{
Len Brown008d396e2017-02-10 00:29:51 -0500803 double interval_float, tsc;
Len Brownfc04cc62014-02-06 00:55:19 -0500804 char *fmt8;
Len Brown388e9c82016-12-22 23:57:55 -0500805 int i;
806 struct msr_counter *mp;
Len Brown6168c2e2017-02-16 23:07:51 -0500807 char *delim = "\t";
808 int printed = 0;
Len Brown103a8fe2010-10-22 23:53:03 -0400809
Len Brownc98d5d92012-06-04 00:56:40 -0400810 /* if showing only 1st thread in core and this isn't one, bail out */
811 if (show_core_only && !(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
812 return 0;
813
814 /* if showing only 1st thread in pkg and this isn't one, bail out */
815 if (show_pkg_only && !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
816 return 0;
817
Len Brown1ef7d212017-02-10 23:54:15 -0500818 /*if not summary line and --cpu is used */
819 if ((t != &average.threads) &&
820 (cpu_subset && !CPU_ISSET_S(t->cpu_id, cpu_subset_size, cpu_subset)))
821 return 0;
822
Len Brown3f44a5c2017-10-17 15:42:56 -0400823 if (DO_BIC(BIC_USEC)) {
Len Brownf4fdf2b2017-05-27 21:06:55 -0700824 /* on each row, print how many usec each timestamp took to gather */
825 struct timeval tv;
826
827 timersub(&t->tv_end, &t->tv_begin, &tv);
828 outp += sprintf(outp, "%5ld\t", tv.tv_sec * 1000000 + tv.tv_usec);
829 }
830
Len Brown3f44a5c2017-10-17 15:42:56 -0400831 /* Time_Of_Day_Seconds: on each row, print sec.usec last timestamp taken */
832 if (DO_BIC(BIC_TOD))
833 outp += sprintf(outp, "%10ld.%06ld\t", t->tv_end.tv_sec, t->tv_end.tv_usec);
834
Len Brown103a8fe2010-10-22 23:53:03 -0400835 interval_float = tv_delta.tv_sec + tv_delta.tv_usec/1000000.0;
836
Len Brown008d396e2017-02-10 00:29:51 -0500837 tsc = t->tsc * tsc_tweak;
838
Len Brownc98d5d92012-06-04 00:56:40 -0400839 /* topo columns, print blanks on 1st (average) line */
840 if (t == &average.threads) {
Len Brown812db3f2017-02-10 00:25:41 -0500841 if (DO_BIC(BIC_Package))
Len Brown6168c2e2017-02-16 23:07:51 -0500842 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500843 if (DO_BIC(BIC_Core))
Len Brown6168c2e2017-02-16 23:07:51 -0500844 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown812db3f2017-02-10 00:25:41 -0500845 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500846 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brown103a8fe2010-10-22 23:53:03 -0400847 } else {
Len Brown812db3f2017-02-10 00:25:41 -0500848 if (DO_BIC(BIC_Package)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400849 if (p)
Len Brown6168c2e2017-02-16 23:07:51 -0500850 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->package_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400851 else
Len Brown6168c2e2017-02-16 23:07:51 -0500852 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brownc98d5d92012-06-04 00:56:40 -0400853 }
Len Brown812db3f2017-02-10 00:25:41 -0500854 if (DO_BIC(BIC_Core)) {
Len Brownc98d5d92012-06-04 00:56:40 -0400855 if (c)
Len Brown6168c2e2017-02-16 23:07:51 -0500856 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), c->core_id);
Len Brownc98d5d92012-06-04 00:56:40 -0400857 else
Len Brown6168c2e2017-02-16 23:07:51 -0500858 outp += sprintf(outp, "%s-", (printed++ ? delim : ""));
Len Brownc98d5d92012-06-04 00:56:40 -0400859 }
Len Brown812db3f2017-02-10 00:25:41 -0500860 if (DO_BIC(BIC_CPU))
Len Brown6168c2e2017-02-16 23:07:51 -0500861 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), t->cpu_id);
Len Brown103a8fe2010-10-22 23:53:03 -0400862 }
Len Brownfc04cc62014-02-06 00:55:19 -0500863
Len Brown812db3f2017-02-10 00:25:41 -0500864 if (DO_BIC(BIC_Avg_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500865 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""),
Len Brownfc04cc62014-02-06 00:55:19 -0500866 1.0 / units * t->aperf / interval_float);
867
Len Brown812db3f2017-02-10 00:25:41 -0500868 if (DO_BIC(BIC_Busy))
Len Brown6168c2e2017-02-16 23:07:51 -0500869 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->mperf/tsc);
Len Brown103a8fe2010-10-22 23:53:03 -0400870
Len Brown812db3f2017-02-10 00:25:41 -0500871 if (DO_BIC(BIC_Bzy_MHz)) {
Len Brown21ed5572015-10-19 22:37:40 -0400872 if (has_base_hz)
Len Brown6168c2e2017-02-16 23:07:51 -0500873 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""), base_hz / units * t->aperf / t->mperf);
Len Brown21ed5572015-10-19 22:37:40 -0400874 else
Len Brown6168c2e2017-02-16 23:07:51 -0500875 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""),
Len Brown008d396e2017-02-10 00:29:51 -0500876 tsc / units * t->aperf / t->mperf / interval_float);
Len Brown21ed5572015-10-19 22:37:40 -0400877 }
Len Brown103a8fe2010-10-22 23:53:03 -0400878
Len Brown812db3f2017-02-10 00:25:41 -0500879 if (DO_BIC(BIC_TSC_MHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500880 outp += sprintf(outp, "%s%.0f", (printed++ ? delim : ""), 1.0 * t->tsc/units/interval_float);
Len Brown103a8fe2010-10-22 23:53:03 -0400881
Len Brown562a2d32016-02-26 23:48:05 -0500882 /* IRQ */
Len Brown0de6c0d2017-02-15 21:45:40 -0500883 if (DO_BIC(BIC_IRQ)) {
884 if (sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500885 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), t->irq_count);
Len Brown0de6c0d2017-02-15 21:45:40 -0500886 else
Len Brown6168c2e2017-02-16 23:07:51 -0500887 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), t->irq_count);
Len Brown0de6c0d2017-02-15 21:45:40 -0500888 }
Len Brown562a2d32016-02-26 23:48:05 -0500889
Len Brown1cc21f72015-02-23 00:34:57 -0500890 /* SMI */
Len Brown812db3f2017-02-10 00:25:41 -0500891 if (DO_BIC(BIC_SMI))
Len Brown6168c2e2017-02-16 23:07:51 -0500892 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), t->smi_count);
Len Brown1cc21f72015-02-23 00:34:57 -0500893
Len Brown678a3bd2017-02-09 22:22:13 -0500894 /* Added counters */
895 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
896 if (mp->format == FORMAT_RAW) {
897 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -0500898 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500899 else
Len Brown6168c2e2017-02-16 23:07:51 -0500900 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500901 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500902 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500903 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), t->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -0500904 else
Len Brown6168c2e2017-02-16 23:07:51 -0500905 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), t->counter[i]);
Len Brown678a3bd2017-02-09 22:22:13 -0500906 } else if (mp->format == FORMAT_PERCENT) {
Len Brown41618e62017-02-09 18:25:22 -0500907 if (mp->type == COUNTER_USEC)
Len Brown6168c2e2017-02-16 23:07:51 -0500908 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), t->counter[i]/interval_float/10000);
Len Brown41618e62017-02-09 18:25:22 -0500909 else
Len Brown6168c2e2017-02-16 23:07:51 -0500910 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->counter[i]/tsc);
Len Brown678a3bd2017-02-09 22:22:13 -0500911 }
912 }
913
Len Brown41618e62017-02-09 18:25:22 -0500914 /* C1 */
915 if (DO_BIC(BIC_CPU_c1))
Len Brown6168c2e2017-02-16 23:07:51 -0500916 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * t->c1/tsc);
Len Brown41618e62017-02-09 18:25:22 -0500917
918
Len Brownc98d5d92012-06-04 00:56:40 -0400919 /* print per-core data only for 1st thread in core */
920 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
921 goto done;
922
Len Brown812db3f2017-02-10 00:25:41 -0500923 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates)
Len Brown6168c2e2017-02-16 23:07:51 -0500924 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c3/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500925 if (DO_BIC(BIC_CPU_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500926 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c6/tsc);
Len Brown812db3f2017-02-10 00:25:41 -0500927 if (DO_BIC(BIC_CPU_c7))
Len Brown6168c2e2017-02-16 23:07:51 -0500928 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->c7/tsc);
Len Brownc98d5d92012-06-04 00:56:40 -0400929
Len Brown0539ba12017-02-10 00:27:20 -0500930 /* Mod%c6 */
931 if (DO_BIC(BIC_Mod_c6))
Len Brown6168c2e2017-02-16 23:07:51 -0500932 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->mc6_us / tsc);
Len Brown0539ba12017-02-10 00:27:20 -0500933
Len Brown812db3f2017-02-10 00:25:41 -0500934 if (DO_BIC(BIC_CoreTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500935 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), c->core_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500936
Len Brown388e9c82016-12-22 23:57:55 -0500937 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
938 if (mp->format == FORMAT_RAW) {
939 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -0500940 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500941 else
Len Brown6168c2e2017-02-16 23:07:51 -0500942 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500943 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -0500944 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -0500945 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), c->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -0500946 else
Len Brown6168c2e2017-02-16 23:07:51 -0500947 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), c->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -0500948 } else if (mp->format == FORMAT_PERCENT) {
Len Brown6168c2e2017-02-16 23:07:51 -0500949 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * c->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -0500950 }
951 }
952
Len Brownc98d5d92012-06-04 00:56:40 -0400953 /* print per-package data only for 1st core in package */
954 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
955 goto done;
956
Len Brown0b2bb692015-03-26 00:50:30 -0400957 /* PkgTmp */
Len Brown812db3f2017-02-10 00:25:41 -0500958 if (DO_BIC(BIC_PkgTmp))
Len Brown6168c2e2017-02-16 23:07:51 -0500959 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->pkg_temp_c);
Len Brown889facb2012-11-08 00:48:57 -0500960
Len Brownfdf676e2016-02-27 01:28:12 -0500961 /* GFXrc6 */
Len Brown812db3f2017-02-10 00:25:41 -0500962 if (DO_BIC(BIC_GFX_rc6)) {
Len Brownba3dec92016-04-22 20:31:46 -0400963 if (p->gfx_rc6_ms == -1) { /* detect GFX counter reset */
Len Brown6168c2e2017-02-16 23:07:51 -0500964 outp += sprintf(outp, "%s**.**", (printed++ ? delim : ""));
Len Brown9185e982016-04-06 17:16:00 -0400965 } else {
Len Brown6168c2e2017-02-16 23:07:51 -0500966 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""),
Len Brown9185e982016-04-06 17:16:00 -0400967 p->gfx_rc6_ms / 10.0 / interval_float);
968 }
969 }
Len Brownfdf676e2016-02-27 01:28:12 -0500970
Len Brown27d47352016-02-27 00:37:54 -0500971 /* GFXMHz */
Len Brown812db3f2017-02-10 00:25:41 -0500972 if (DO_BIC(BIC_GFXMHz))
Len Brown6168c2e2017-02-16 23:07:51 -0500973 outp += sprintf(outp, "%s%d", (printed++ ? delim : ""), p->gfx_mhz);
Len Brown27d47352016-02-27 00:37:54 -0500974
Len Brown0b2bb692015-03-26 00:50:30 -0400975 /* Totl%C0, Any%C0 GFX%C0 CPUGFX% */
Len Browna99d8732017-05-20 20:11:55 -0400976 if (DO_BIC(BIC_Totl_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500977 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_wtd_core_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400978 if (DO_BIC(BIC_Any_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500979 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_any_core_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400980 if (DO_BIC(BIC_GFX_c0))
Len Brown6168c2e2017-02-16 23:07:51 -0500981 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_any_gfxe_c0/tsc);
Len Browna99d8732017-05-20 20:11:55 -0400982 if (DO_BIC(BIC_CPUGFX))
Len Brown6168c2e2017-02-16 23:07:51 -0500983 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pkg_both_core_gfxe_c0/tsc);
Len Brown0b2bb692015-03-26 00:50:30 -0400984
Len Brown0f47c082017-01-27 00:50:45 -0500985 if (DO_BIC(BIC_Pkgpc2))
Len Brown6168c2e2017-02-16 23:07:51 -0500986 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc2/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500987 if (DO_BIC(BIC_Pkgpc3))
Len Brown6168c2e2017-02-16 23:07:51 -0500988 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc3/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500989 if (DO_BIC(BIC_Pkgpc6))
Len Brown6168c2e2017-02-16 23:07:51 -0500990 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc6/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500991 if (DO_BIC(BIC_Pkgpc7))
Len Brown6168c2e2017-02-16 23:07:51 -0500992 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc7/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500993 if (DO_BIC(BIC_Pkgpc8))
Len Brown6168c2e2017-02-16 23:07:51 -0500994 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc8/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500995 if (DO_BIC(BIC_Pkgpc9))
Len Brown6168c2e2017-02-16 23:07:51 -0500996 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc9/tsc);
Len Brown0f47c082017-01-27 00:50:45 -0500997 if (DO_BIC(BIC_Pkgpc10))
Len Brown6168c2e2017-02-16 23:07:51 -0500998 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->pc10/tsc);
Len Brown889facb2012-11-08 00:48:57 -0500999
Len Brownbe0e54c2018-06-01 12:35:53 -04001000 if (DO_BIC(BIC_CPU_LPI))
1001 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->cpu_lpi / 1000000.0 / interval_float);
1002 if (DO_BIC(BIC_SYS_LPI))
1003 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->sys_lpi / 1000000.0 / interval_float);
1004
Len Brown889facb2012-11-08 00:48:57 -05001005 /*
1006 * If measurement interval exceeds minimum RAPL Joule Counter range,
1007 * indicate that results are suspect by printing "**" in fraction place.
1008 */
Len Brownfc04cc62014-02-06 00:55:19 -05001009 if (interval_float < rapl_joule_counter_range)
Len Brown6168c2e2017-02-16 23:07:51 -05001010 fmt8 = "%s%.2f";
Len Brownfc04cc62014-02-06 00:55:19 -05001011 else
Len Browne975db52016-04-06 23:56:02 -04001012 fmt8 = "%6.0f**";
Len Brown889facb2012-11-08 00:48:57 -05001013
Len Brown812db3f2017-02-10 00:25:41 -05001014 if (DO_BIC(BIC_PkgWatt))
Len Brown6168c2e2017-02-16 23:07:51 -05001015 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_pkg * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -05001016 if (DO_BIC(BIC_CorWatt))
Len Brown6168c2e2017-02-16 23:07:51 -05001017 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_cores * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -05001018 if (DO_BIC(BIC_GFXWatt))
Len Brown6168c2e2017-02-16 23:07:51 -05001019 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_gfx * rapl_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -05001020 if (DO_BIC(BIC_RAMWatt))
Len Brown6168c2e2017-02-16 23:07:51 -05001021 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_dram * rapl_dram_energy_units / interval_float);
Len Brown812db3f2017-02-10 00:25:41 -05001022 if (DO_BIC(BIC_Pkg_J))
Len Brown6168c2e2017-02-16 23:07:51 -05001023 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_pkg * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -05001024 if (DO_BIC(BIC_Cor_J))
Len Brown6168c2e2017-02-16 23:07:51 -05001025 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_cores * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -05001026 if (DO_BIC(BIC_GFX_J))
Len Brown6168c2e2017-02-16 23:07:51 -05001027 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_gfx * rapl_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -05001028 if (DO_BIC(BIC_RAM_J))
Len Brown6168c2e2017-02-16 23:07:51 -05001029 outp += sprintf(outp, fmt8, (printed++ ? delim : ""), p->energy_dram * rapl_dram_energy_units);
Len Brown812db3f2017-02-10 00:25:41 -05001030 if (DO_BIC(BIC_PKG__))
Len Brown6168c2e2017-02-16 23:07:51 -05001031 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 -05001032 if (DO_BIC(BIC_RAM__))
Len Brown6168c2e2017-02-16 23:07:51 -05001033 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 -05001034
Len Brown388e9c82016-12-22 23:57:55 -05001035 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1036 if (mp->format == FORMAT_RAW) {
1037 if (mp->width == 32)
Len Brown5f3aea52017-02-23 18:10:27 -05001038 outp += sprintf(outp, "%s0x%08x", (printed++ ? delim : ""), (unsigned int) p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -05001039 else
Len Brown6168c2e2017-02-16 23:07:51 -05001040 outp += sprintf(outp, "%s0x%016llx", (printed++ ? delim : ""), p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -05001041 } else if (mp->format == FORMAT_DELTA) {
Len Brown0de6c0d2017-02-15 21:45:40 -05001042 if ((mp->type == COUNTER_ITEMS) && sums_need_wide_columns)
Len Brown6168c2e2017-02-16 23:07:51 -05001043 outp += sprintf(outp, "%s%8lld", (printed++ ? delim : ""), p->counter[i]);
Len Brown0de6c0d2017-02-15 21:45:40 -05001044 else
Len Brown6168c2e2017-02-16 23:07:51 -05001045 outp += sprintf(outp, "%s%lld", (printed++ ? delim : ""), p->counter[i]);
Len Brown388e9c82016-12-22 23:57:55 -05001046 } else if (mp->format == FORMAT_PERCENT) {
Len Brown6168c2e2017-02-16 23:07:51 -05001047 outp += sprintf(outp, "%s%.2f", (printed++ ? delim : ""), 100.0 * p->counter[i]/tsc);
Len Brown388e9c82016-12-22 23:57:55 -05001048 }
1049 }
1050
Len Brownc98d5d92012-06-04 00:56:40 -04001051done:
Len Brown94d6ab42018-01-27 22:39:21 -05001052 if (*(outp - 1) != '\n')
1053 outp += sprintf(outp, "\n");
Len Brownc98d5d92012-06-04 00:56:40 -04001054
1055 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04001056}
1057
Len Brownb7d8c142016-02-13 23:36:17 -05001058void flush_output_stdout(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001059{
Len Brownb7d8c142016-02-13 23:36:17 -05001060 FILE *filep;
1061
1062 if (outf == stderr)
1063 filep = stdout;
1064 else
1065 filep = outf;
1066
1067 fputs(output_buffer, filep);
1068 fflush(filep);
1069
Len Brownc98d5d92012-06-04 00:56:40 -04001070 outp = output_buffer;
1071}
Len Brownb7d8c142016-02-13 23:36:17 -05001072void flush_output_stderr(void)
Len Brownc98d5d92012-06-04 00:56:40 -04001073{
Len Brownb7d8c142016-02-13 23:36:17 -05001074 fputs(output_buffer, outf);
1075 fflush(outf);
Len Brownc98d5d92012-06-04 00:56:40 -04001076 outp = output_buffer;
1077}
1078void format_all_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1079{
Len Browne23da032012-02-06 18:37:16 -05001080 static int printed;
Len Brown103a8fe2010-10-22 23:53:03 -04001081
Len Browne23da032012-02-06 18:37:16 -05001082 if (!printed || !summary_only)
Len Brownc8ade362017-02-15 17:15:11 -05001083 print_header("\t");
Len Brown103a8fe2010-10-22 23:53:03 -04001084
Len Brownc98d5d92012-06-04 00:56:40 -04001085 if (topo.num_cpus > 1)
1086 format_counters(&average.threads, &average.cores,
1087 &average.packages);
Len Brown103a8fe2010-10-22 23:53:03 -04001088
Len Browne23da032012-02-06 18:37:16 -05001089 printed = 1;
1090
1091 if (summary_only)
1092 return;
1093
Len Brownc98d5d92012-06-04 00:56:40 -04001094 for_all_cpus(format_counters, t, c, p);
Len Brown103a8fe2010-10-22 23:53:03 -04001095}
1096
Len Brown889facb2012-11-08 00:48:57 -05001097#define DELTA_WRAP32(new, old) \
1098 if (new > old) { \
1099 old = new - old; \
1100 } else { \
1101 old = 0x100000000 + new - old; \
1102 }
1103
Len Brownba3dec92016-04-22 20:31:46 -04001104int
Len Brownc98d5d92012-06-04 00:56:40 -04001105delta_package(struct pkg_data *new, struct pkg_data *old)
Len Brown103a8fe2010-10-22 23:53:03 -04001106{
Len Brown388e9c82016-12-22 23:57:55 -05001107 int i;
1108 struct msr_counter *mp;
Len Brown0b2bb692015-03-26 00:50:30 -04001109
Len Browna99d8732017-05-20 20:11:55 -04001110
1111 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001112 old->pkg_wtd_core_c0 = new->pkg_wtd_core_c0 - old->pkg_wtd_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001113 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001114 old->pkg_any_core_c0 = new->pkg_any_core_c0 - old->pkg_any_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001115 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001116 old->pkg_any_gfxe_c0 = new->pkg_any_gfxe_c0 - old->pkg_any_gfxe_c0;
Len Browna99d8732017-05-20 20:11:55 -04001117 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001118 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 -04001119
Len Brownc98d5d92012-06-04 00:56:40 -04001120 old->pc2 = new->pc2 - old->pc2;
Len Brown0f47c082017-01-27 00:50:45 -05001121 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001122 old->pc3 = new->pc3 - old->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001123 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001124 old->pc6 = new->pc6 - old->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001125 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001126 old->pc7 = new->pc7 - old->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001127 old->pc8 = new->pc8 - old->pc8;
1128 old->pc9 = new->pc9 - old->pc9;
1129 old->pc10 = new->pc10 - old->pc10;
Len Brownbe0e54c2018-06-01 12:35:53 -04001130 old->cpu_lpi = new->cpu_lpi - old->cpu_lpi;
1131 old->sys_lpi = new->sys_lpi - old->sys_lpi;
Len Brown889facb2012-11-08 00:48:57 -05001132 old->pkg_temp_c = new->pkg_temp_c;
1133
Len Brown9185e982016-04-06 17:16:00 -04001134 /* flag an error when rc6 counter resets/wraps */
1135 if (old->gfx_rc6_ms > new->gfx_rc6_ms)
1136 old->gfx_rc6_ms = -1;
1137 else
1138 old->gfx_rc6_ms = new->gfx_rc6_ms - old->gfx_rc6_ms;
1139
Len Brown27d47352016-02-27 00:37:54 -05001140 old->gfx_mhz = new->gfx_mhz;
1141
Len Brown889facb2012-11-08 00:48:57 -05001142 DELTA_WRAP32(new->energy_pkg, old->energy_pkg);
1143 DELTA_WRAP32(new->energy_cores, old->energy_cores);
1144 DELTA_WRAP32(new->energy_gfx, old->energy_gfx);
1145 DELTA_WRAP32(new->energy_dram, old->energy_dram);
1146 DELTA_WRAP32(new->rapl_pkg_perf_status, old->rapl_pkg_perf_status);
1147 DELTA_WRAP32(new->rapl_dram_perf_status, old->rapl_dram_perf_status);
Len Brownba3dec92016-04-22 20:31:46 -04001148
Len Brown388e9c82016-12-22 23:57:55 -05001149 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1150 if (mp->format == FORMAT_RAW)
1151 old->counter[i] = new->counter[i];
1152 else
1153 old->counter[i] = new->counter[i] - old->counter[i];
1154 }
1155
Len Brownba3dec92016-04-22 20:31:46 -04001156 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001157}
Len Brown103a8fe2010-10-22 23:53:03 -04001158
Len Brownc98d5d92012-06-04 00:56:40 -04001159void
1160delta_core(struct core_data *new, struct core_data *old)
1161{
Len Brown388e9c82016-12-22 23:57:55 -05001162 int i;
1163 struct msr_counter *mp;
1164
Len Brownc98d5d92012-06-04 00:56:40 -04001165 old->c3 = new->c3 - old->c3;
1166 old->c6 = new->c6 - old->c6;
1167 old->c7 = new->c7 - old->c7;
Len Brown889facb2012-11-08 00:48:57 -05001168 old->core_temp_c = new->core_temp_c;
Len Brown0539ba12017-02-10 00:27:20 -05001169 old->mc6_us = new->mc6_us - old->mc6_us;
Len Brown388e9c82016-12-22 23:57:55 -05001170
1171 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1172 if (mp->format == FORMAT_RAW)
1173 old->counter[i] = new->counter[i];
1174 else
1175 old->counter[i] = new->counter[i] - old->counter[i];
1176 }
Len Brownc98d5d92012-06-04 00:56:40 -04001177}
Len Brown103a8fe2010-10-22 23:53:03 -04001178
Len Brownc3ae3312012-06-13 21:31:46 -04001179/*
1180 * old = new - old
1181 */
Len Brownba3dec92016-04-22 20:31:46 -04001182int
Len Brownc98d5d92012-06-04 00:56:40 -04001183delta_thread(struct thread_data *new, struct thread_data *old,
1184 struct core_data *core_delta)
1185{
Len Brown388e9c82016-12-22 23:57:55 -05001186 int i;
1187 struct msr_counter *mp;
1188
Len Brown3f44a5c2017-10-17 15:42:56 -04001189 /*
1190 * the timestamps from start of measurement interval are in "old"
1191 * the timestamp from end of measurement interval are in "new"
1192 * over-write old w/ new so we can print end of interval values
1193 */
1194
1195 old->tv_begin = new->tv_begin;
1196 old->tv_end = new->tv_end;
1197
Len Brownc98d5d92012-06-04 00:56:40 -04001198 old->tsc = new->tsc - old->tsc;
Len Brown103a8fe2010-10-22 23:53:03 -04001199
Len Brownc98d5d92012-06-04 00:56:40 -04001200 /* check for TSC < 1 Mcycles over interval */
Josh Triplettb2c95d92013-08-20 17:20:18 -07001201 if (old->tsc < (1000 * 1000))
1202 errx(-3, "Insanely slow TSC rate, TSC stops in idle?\n"
1203 "You can disable all c-states by booting with \"idle=poll\"\n"
1204 "or just the deep ones with \"processor.max_cstate=1\"");
Len Brown103a8fe2010-10-22 23:53:03 -04001205
Len Brownc98d5d92012-06-04 00:56:40 -04001206 old->c1 = new->c1 - old->c1;
Len Brown103a8fe2010-10-22 23:53:03 -04001207
Len Brown812db3f2017-02-10 00:25:41 -05001208 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Browna7296172015-01-23 01:33:58 -05001209 if ((new->aperf > old->aperf) && (new->mperf > old->mperf)) {
1210 old->aperf = new->aperf - old->aperf;
1211 old->mperf = new->mperf - old->mperf;
1212 } else {
Len Brownba3dec92016-04-22 20:31:46 -04001213 return -1;
Len Brownc98d5d92012-06-04 00:56:40 -04001214 }
Len Brownc98d5d92012-06-04 00:56:40 -04001215 }
Len Brown103a8fe2010-10-22 23:53:03 -04001216
Len Brown103a8fe2010-10-22 23:53:03 -04001217
Len Brown144b44b2013-11-09 00:30:16 -05001218 if (use_c1_residency_msr) {
1219 /*
1220 * Some models have a dedicated C1 residency MSR,
1221 * which should be more accurate than the derivation below.
1222 */
1223 } else {
1224 /*
1225 * As counter collection is not atomic,
1226 * it is possible for mperf's non-halted cycles + idle states
1227 * to exceed TSC's all cycles: show c1 = 0% in that case.
1228 */
Len Brown95149362017-04-12 19:44:51 -04001229 if ((old->mperf + core_delta->c3 + core_delta->c6 + core_delta->c7) > (old->tsc * tsc_tweak))
Len Brown144b44b2013-11-09 00:30:16 -05001230 old->c1 = 0;
1231 else {
1232 /* normal case, derive c1 */
Len Brown008d396e2017-02-10 00:29:51 -05001233 old->c1 = (old->tsc * tsc_tweak) - old->mperf - core_delta->c3
Len Brownc98d5d92012-06-04 00:56:40 -04001234 - core_delta->c6 - core_delta->c7;
Len Brown144b44b2013-11-09 00:30:16 -05001235 }
Len Brownc98d5d92012-06-04 00:56:40 -04001236 }
Len Brownc3ae3312012-06-13 21:31:46 -04001237
Len Brownc98d5d92012-06-04 00:56:40 -04001238 if (old->mperf == 0) {
Len Brownb7d8c142016-02-13 23:36:17 -05001239 if (debug > 1)
1240 fprintf(outf, "cpu%d MPERF 0!\n", old->cpu_id);
Len Brownc98d5d92012-06-04 00:56:40 -04001241 old->mperf = 1; /* divide by 0 protection */
1242 }
1243
Len Brown812db3f2017-02-10 00:25:41 -05001244 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001245 old->irq_count = new->irq_count - old->irq_count;
1246
Len Brown812db3f2017-02-10 00:25:41 -05001247 if (DO_BIC(BIC_SMI))
Len Brown1ed51012013-02-10 17:19:24 -05001248 old->smi_count = new->smi_count - old->smi_count;
Len Brownba3dec92016-04-22 20:31:46 -04001249
Len Brown388e9c82016-12-22 23:57:55 -05001250 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1251 if (mp->format == FORMAT_RAW)
1252 old->counter[i] = new->counter[i];
1253 else
1254 old->counter[i] = new->counter[i] - old->counter[i];
1255 }
Len Brownba3dec92016-04-22 20:31:46 -04001256 return 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001257}
1258
1259int delta_cpu(struct thread_data *t, struct core_data *c,
1260 struct pkg_data *p, struct thread_data *t2,
1261 struct core_data *c2, struct pkg_data *p2)
1262{
Len Brownba3dec92016-04-22 20:31:46 -04001263 int retval = 0;
1264
Len Brownc98d5d92012-06-04 00:56:40 -04001265 /* calculate core delta only for 1st thread in core */
1266 if (t->flags & CPU_IS_FIRST_THREAD_IN_CORE)
1267 delta_core(c, c2);
1268
1269 /* always calculate thread delta */
Len Brownba3dec92016-04-22 20:31:46 -04001270 retval = delta_thread(t, t2, c2); /* c2 is core delta */
1271 if (retval)
1272 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001273
1274 /* calculate package delta only for 1st core in package */
1275 if (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)
Len Brownba3dec92016-04-22 20:31:46 -04001276 retval = delta_package(p, p2);
Len Brownc98d5d92012-06-04 00:56:40 -04001277
Len Brownba3dec92016-04-22 20:31:46 -04001278 return retval;
Len Brownc98d5d92012-06-04 00:56:40 -04001279}
1280
1281void clear_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1282{
Len Brown388e9c82016-12-22 23:57:55 -05001283 int i;
1284 struct msr_counter *mp;
1285
Len Brown3f44a5c2017-10-17 15:42:56 -04001286 t->tv_begin.tv_sec = 0;
1287 t->tv_begin.tv_usec = 0;
1288 t->tv_end.tv_sec = 0;
1289 t->tv_end.tv_usec = 0;
1290
Len Brownc98d5d92012-06-04 00:56:40 -04001291 t->tsc = 0;
1292 t->aperf = 0;
1293 t->mperf = 0;
1294 t->c1 = 0;
1295
Len Brown562a2d32016-02-26 23:48:05 -05001296 t->irq_count = 0;
1297 t->smi_count = 0;
1298
Len Brownc98d5d92012-06-04 00:56:40 -04001299 /* tells format_counters to dump all fields from this set */
1300 t->flags = CPU_IS_FIRST_THREAD_IN_CORE | CPU_IS_FIRST_CORE_IN_PACKAGE;
1301
1302 c->c3 = 0;
1303 c->c6 = 0;
1304 c->c7 = 0;
Len Brown0539ba12017-02-10 00:27:20 -05001305 c->mc6_us = 0;
Len Brown889facb2012-11-08 00:48:57 -05001306 c->core_temp_c = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001307
Len Brown0b2bb692015-03-26 00:50:30 -04001308 p->pkg_wtd_core_c0 = 0;
1309 p->pkg_any_core_c0 = 0;
1310 p->pkg_any_gfxe_c0 = 0;
1311 p->pkg_both_core_gfxe_c0 = 0;
1312
Len Brownc98d5d92012-06-04 00:56:40 -04001313 p->pc2 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001314 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001315 p->pc3 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001316 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001317 p->pc6 = 0;
Len Brown0f47c082017-01-27 00:50:45 -05001318 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001319 p->pc7 = 0;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001320 p->pc8 = 0;
1321 p->pc9 = 0;
1322 p->pc10 = 0;
Len Brownbe0e54c2018-06-01 12:35:53 -04001323 p->cpu_lpi = 0;
1324 p->sys_lpi = 0;
Len Brown889facb2012-11-08 00:48:57 -05001325
1326 p->energy_pkg = 0;
1327 p->energy_dram = 0;
1328 p->energy_cores = 0;
1329 p->energy_gfx = 0;
1330 p->rapl_pkg_perf_status = 0;
1331 p->rapl_dram_perf_status = 0;
1332 p->pkg_temp_c = 0;
Len Brown27d47352016-02-27 00:37:54 -05001333
Len Brownfdf676e2016-02-27 01:28:12 -05001334 p->gfx_rc6_ms = 0;
Len Brown27d47352016-02-27 00:37:54 -05001335 p->gfx_mhz = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001336 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next)
1337 t->counter[i] = 0;
1338
1339 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next)
1340 c->counter[i] = 0;
1341
1342 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next)
1343 p->counter[i] = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04001344}
1345int sum_counters(struct thread_data *t, struct core_data *c,
1346 struct pkg_data *p)
1347{
Len Brown388e9c82016-12-22 23:57:55 -05001348 int i;
1349 struct msr_counter *mp;
1350
Len Brown3f44a5c2017-10-17 15:42:56 -04001351 /* remember first tv_begin */
1352 if (average.threads.tv_begin.tv_sec == 0)
1353 average.threads.tv_begin = t->tv_begin;
1354
1355 /* remember last tv_end */
1356 average.threads.tv_end = t->tv_end;
1357
Len Brownc98d5d92012-06-04 00:56:40 -04001358 average.threads.tsc += t->tsc;
1359 average.threads.aperf += t->aperf;
1360 average.threads.mperf += t->mperf;
1361 average.threads.c1 += t->c1;
1362
Len Brown562a2d32016-02-26 23:48:05 -05001363 average.threads.irq_count += t->irq_count;
1364 average.threads.smi_count += t->smi_count;
1365
Len Brown388e9c82016-12-22 23:57:55 -05001366 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1367 if (mp->format == FORMAT_RAW)
1368 continue;
1369 average.threads.counter[i] += t->counter[i];
1370 }
1371
Len Brownc98d5d92012-06-04 00:56:40 -04001372 /* sum per-core values only for 1st thread in core */
1373 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
1374 return 0;
1375
1376 average.cores.c3 += c->c3;
1377 average.cores.c6 += c->c6;
1378 average.cores.c7 += c->c7;
Len Brown0539ba12017-02-10 00:27:20 -05001379 average.cores.mc6_us += c->mc6_us;
Len Brownc98d5d92012-06-04 00:56:40 -04001380
Len Brown889facb2012-11-08 00:48:57 -05001381 average.cores.core_temp_c = MAX(average.cores.core_temp_c, c->core_temp_c);
1382
Len Brown388e9c82016-12-22 23:57:55 -05001383 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1384 if (mp->format == FORMAT_RAW)
1385 continue;
1386 average.cores.counter[i] += c->counter[i];
1387 }
1388
Len Brownc98d5d92012-06-04 00:56:40 -04001389 /* sum per-pkg values only for 1st core in pkg */
1390 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
1391 return 0;
1392
Len Browna99d8732017-05-20 20:11:55 -04001393 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001394 average.packages.pkg_wtd_core_c0 += p->pkg_wtd_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001395 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001396 average.packages.pkg_any_core_c0 += p->pkg_any_core_c0;
Len Browna99d8732017-05-20 20:11:55 -04001397 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001398 average.packages.pkg_any_gfxe_c0 += p->pkg_any_gfxe_c0;
Len Browna99d8732017-05-20 20:11:55 -04001399 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001400 average.packages.pkg_both_core_gfxe_c0 += p->pkg_both_core_gfxe_c0;
Len Brown0b2bb692015-03-26 00:50:30 -04001401
Len Brownc98d5d92012-06-04 00:56:40 -04001402 average.packages.pc2 += p->pc2;
Len Brown0f47c082017-01-27 00:50:45 -05001403 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001404 average.packages.pc3 += p->pc3;
Len Brown0f47c082017-01-27 00:50:45 -05001405 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001406 average.packages.pc6 += p->pc6;
Len Brown0f47c082017-01-27 00:50:45 -05001407 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001408 average.packages.pc7 += p->pc7;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001409 average.packages.pc8 += p->pc8;
1410 average.packages.pc9 += p->pc9;
1411 average.packages.pc10 += p->pc10;
Len Brownc98d5d92012-06-04 00:56:40 -04001412
Len Brownbe0e54c2018-06-01 12:35:53 -04001413 average.packages.cpu_lpi = p->cpu_lpi;
1414 average.packages.sys_lpi = p->sys_lpi;
1415
Len Brown889facb2012-11-08 00:48:57 -05001416 average.packages.energy_pkg += p->energy_pkg;
1417 average.packages.energy_dram += p->energy_dram;
1418 average.packages.energy_cores += p->energy_cores;
1419 average.packages.energy_gfx += p->energy_gfx;
1420
Len Brownfdf676e2016-02-27 01:28:12 -05001421 average.packages.gfx_rc6_ms = p->gfx_rc6_ms;
Len Brown27d47352016-02-27 00:37:54 -05001422 average.packages.gfx_mhz = p->gfx_mhz;
1423
Len Brown889facb2012-11-08 00:48:57 -05001424 average.packages.pkg_temp_c = MAX(average.packages.pkg_temp_c, p->pkg_temp_c);
1425
1426 average.packages.rapl_pkg_perf_status += p->rapl_pkg_perf_status;
1427 average.packages.rapl_dram_perf_status += p->rapl_dram_perf_status;
Len Brown388e9c82016-12-22 23:57:55 -05001428
1429 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1430 if (mp->format == FORMAT_RAW)
1431 continue;
1432 average.packages.counter[i] += p->counter[i];
1433 }
Len Brownc98d5d92012-06-04 00:56:40 -04001434 return 0;
1435}
1436/*
1437 * sum the counters for all cpus in the system
1438 * compute the weighted average
1439 */
1440void compute_average(struct thread_data *t, struct core_data *c,
1441 struct pkg_data *p)
1442{
Len Brown388e9c82016-12-22 23:57:55 -05001443 int i;
1444 struct msr_counter *mp;
1445
Len Brownc98d5d92012-06-04 00:56:40 -04001446 clear_counters(&average.threads, &average.cores, &average.packages);
1447
1448 for_all_cpus(sum_counters, t, c, p);
1449
1450 average.threads.tsc /= topo.num_cpus;
1451 average.threads.aperf /= topo.num_cpus;
1452 average.threads.mperf /= topo.num_cpus;
1453 average.threads.c1 /= topo.num_cpus;
1454
Len Brown0de6c0d2017-02-15 21:45:40 -05001455 if (average.threads.irq_count > 9999999)
1456 sums_need_wide_columns = 1;
1457
Len Brownc98d5d92012-06-04 00:56:40 -04001458 average.cores.c3 /= topo.num_cores;
1459 average.cores.c6 /= topo.num_cores;
1460 average.cores.c7 /= topo.num_cores;
Len Brown0539ba12017-02-10 00:27:20 -05001461 average.cores.mc6_us /= topo.num_cores;
Len Brownc98d5d92012-06-04 00:56:40 -04001462
Len Browna99d8732017-05-20 20:11:55 -04001463 if (DO_BIC(BIC_Totl_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001464 average.packages.pkg_wtd_core_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001465 if (DO_BIC(BIC_Any_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001466 average.packages.pkg_any_core_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001467 if (DO_BIC(BIC_GFX_c0))
Len Brown0b2bb692015-03-26 00:50:30 -04001468 average.packages.pkg_any_gfxe_c0 /= topo.num_packages;
Len Browna99d8732017-05-20 20:11:55 -04001469 if (DO_BIC(BIC_CPUGFX))
Len Brown0b2bb692015-03-26 00:50:30 -04001470 average.packages.pkg_both_core_gfxe_c0 /= topo.num_packages;
Len Brown0b2bb692015-03-26 00:50:30 -04001471
Len Brownc98d5d92012-06-04 00:56:40 -04001472 average.packages.pc2 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001473 if (DO_BIC(BIC_Pkgpc3))
Len Brownee7e38e2015-02-09 23:39:45 -05001474 average.packages.pc3 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001475 if (DO_BIC(BIC_Pkgpc6))
Len Brownee7e38e2015-02-09 23:39:45 -05001476 average.packages.pc6 /= topo.num_packages;
Len Brown0f47c082017-01-27 00:50:45 -05001477 if (DO_BIC(BIC_Pkgpc7))
Len Brownee7e38e2015-02-09 23:39:45 -05001478 average.packages.pc7 /= topo.num_packages;
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001479
1480 average.packages.pc8 /= topo.num_packages;
1481 average.packages.pc9 /= topo.num_packages;
1482 average.packages.pc10 /= topo.num_packages;
Len Brown388e9c82016-12-22 23:57:55 -05001483
1484 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
1485 if (mp->format == FORMAT_RAW)
1486 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001487 if (mp->type == COUNTER_ITEMS) {
1488 if (average.threads.counter[i] > 9999999)
1489 sums_need_wide_columns = 1;
Len Brown41618e62017-02-09 18:25:22 -05001490 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001491 }
Len Brown388e9c82016-12-22 23:57:55 -05001492 average.threads.counter[i] /= topo.num_cpus;
1493 }
1494 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
1495 if (mp->format == FORMAT_RAW)
1496 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001497 if (mp->type == COUNTER_ITEMS) {
1498 if (average.cores.counter[i] > 9999999)
1499 sums_need_wide_columns = 1;
1500 }
Len Brown388e9c82016-12-22 23:57:55 -05001501 average.cores.counter[i] /= topo.num_cores;
1502 }
1503 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
1504 if (mp->format == FORMAT_RAW)
1505 continue;
Len Brown0de6c0d2017-02-15 21:45:40 -05001506 if (mp->type == COUNTER_ITEMS) {
1507 if (average.packages.counter[i] > 9999999)
1508 sums_need_wide_columns = 1;
1509 }
Len Brown388e9c82016-12-22 23:57:55 -05001510 average.packages.counter[i] /= topo.num_packages;
1511 }
Len Brownc98d5d92012-06-04 00:56:40 -04001512}
1513
1514static unsigned long long rdtsc(void)
1515{
1516 unsigned int low, high;
1517
1518 asm volatile("rdtsc" : "=a" (low), "=d" (high));
1519
1520 return low | ((unsigned long long)high) << 32;
1521}
1522
Len Brownc98d5d92012-06-04 00:56:40 -04001523/*
Len Brown495c76542017-02-08 02:41:51 -05001524 * Open a file, and exit on failure
1525 */
1526FILE *fopen_or_die(const char *path, const char *mode)
1527{
1528 FILE *filep = fopen(path, mode);
1529
1530 if (!filep)
1531 err(1, "%s: open failed", path);
1532 return filep;
1533}
1534/*
1535 * snapshot_sysfs_counter()
1536 *
1537 * return snapshot of given counter
1538 */
1539unsigned long long snapshot_sysfs_counter(char *path)
1540{
1541 FILE *fp;
1542 int retval;
1543 unsigned long long counter;
1544
1545 fp = fopen_or_die(path, "r");
1546
1547 retval = fscanf(fp, "%lld", &counter);
1548 if (retval != 1)
1549 err(1, "snapshot_sysfs_counter(%s)", path);
1550
1551 fclose(fp);
1552
1553 return counter;
1554}
1555
1556int get_mp(int cpu, struct msr_counter *mp, unsigned long long *counterp)
1557{
1558 if (mp->msr_num != 0) {
1559 if (get_msr(cpu, mp->msr_num, counterp))
1560 return -1;
1561 } else {
Len Brown46c27972017-12-08 17:38:17 -05001562 char path[128 + PATH_BYTES];
Len Brown41618e62017-02-09 18:25:22 -05001563
1564 if (mp->flags & SYSFS_PERCPU) {
1565 sprintf(path, "/sys/devices/system/cpu/cpu%d/%s",
1566 cpu, mp->path);
1567
1568 *counterp = snapshot_sysfs_counter(path);
1569 } else {
1570 *counterp = snapshot_sysfs_counter(mp->path);
1571 }
Len Brown495c76542017-02-08 02:41:51 -05001572 }
1573
1574 return 0;
1575}
1576
1577/*
Len Brownc98d5d92012-06-04 00:56:40 -04001578 * get_counters(...)
1579 * migrate to cpu
1580 * acquire and record local counters for that cpu
1581 */
1582int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p)
1583{
1584 int cpu = t->cpu_id;
Len Brown889facb2012-11-08 00:48:57 -05001585 unsigned long long msr;
Len Brown0102b062016-02-27 03:11:29 -05001586 int aperf_mperf_retry_count = 0;
Len Brown388e9c82016-12-22 23:57:55 -05001587 struct msr_counter *mp;
1588 int i;
Len Brownc98d5d92012-06-04 00:56:40 -04001589
Len Brownf4fdf2b2017-05-27 21:06:55 -07001590
1591 gettimeofday(&t->tv_begin, (struct timezone *)NULL);
1592
Len Browne52966c2012-11-08 22:38:05 -05001593 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05001594 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brownc98d5d92012-06-04 00:56:40 -04001595 return -1;
Len Browne52966c2012-11-08 22:38:05 -05001596 }
Len Brownc98d5d92012-06-04 00:56:40 -04001597
Len Brown0102b062016-02-27 03:11:29 -05001598retry:
Len Brownc98d5d92012-06-04 00:56:40 -04001599 t->tsc = rdtsc(); /* we are running on local CPU of interest */
1600
Len Brown812db3f2017-02-10 00:25:41 -05001601 if (DO_BIC(BIC_Avg_MHz) || DO_BIC(BIC_Busy) || DO_BIC(BIC_Bzy_MHz)) {
Len Brown0102b062016-02-27 03:11:29 -05001602 unsigned long long tsc_before, tsc_between, tsc_after, aperf_time, mperf_time;
1603
1604 /*
1605 * The TSC, APERF and MPERF must be read together for
1606 * APERF/MPERF and MPERF/TSC to give accurate results.
1607 *
1608 * Unfortunately, APERF and MPERF are read by
1609 * individual system call, so delays may occur
1610 * between them. If the time to read them
1611 * varies by a large amount, we re-read them.
1612 */
1613
1614 /*
1615 * This initial dummy APERF read has been seen to
1616 * reduce jitter in the subsequent reads.
1617 */
1618
Len Brown9c63a652012-10-31 01:29:52 -04001619 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001620 return -3;
Len Brown0102b062016-02-27 03:11:29 -05001621
1622 t->tsc = rdtsc(); /* re-read close to APERF */
1623
1624 tsc_before = t->tsc;
1625
1626 if (get_msr(cpu, MSR_IA32_APERF, &t->aperf))
1627 return -3;
1628
1629 tsc_between = rdtsc();
1630
Len Brown9c63a652012-10-31 01:29:52 -04001631 if (get_msr(cpu, MSR_IA32_MPERF, &t->mperf))
Len Brownc98d5d92012-06-04 00:56:40 -04001632 return -4;
Len Brown0102b062016-02-27 03:11:29 -05001633
1634 tsc_after = rdtsc();
1635
1636 aperf_time = tsc_between - tsc_before;
1637 mperf_time = tsc_after - tsc_between;
1638
1639 /*
1640 * If the system call latency to read APERF and MPERF
1641 * differ by more than 2x, then try again.
1642 */
1643 if ((aperf_time > (2 * mperf_time)) || (mperf_time > (2 * aperf_time))) {
1644 aperf_mperf_retry_count++;
1645 if (aperf_mperf_retry_count < 5)
1646 goto retry;
1647 else
1648 warnx("cpu%d jitter %lld %lld",
1649 cpu, aperf_time, mperf_time);
1650 }
1651 aperf_mperf_retry_count = 0;
1652
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02001653 t->aperf = t->aperf * aperf_mperf_multiplier;
1654 t->mperf = t->mperf * aperf_mperf_multiplier;
Len Brownc98d5d92012-06-04 00:56:40 -04001655 }
1656
Len Brown812db3f2017-02-10 00:25:41 -05001657 if (DO_BIC(BIC_IRQ))
Len Brown562a2d32016-02-26 23:48:05 -05001658 t->irq_count = irqs_per_cpu[cpu];
Len Brown812db3f2017-02-10 00:25:41 -05001659 if (DO_BIC(BIC_SMI)) {
Len Brown1ed51012013-02-10 17:19:24 -05001660 if (get_msr(cpu, MSR_SMI_COUNT, &msr))
1661 return -5;
1662 t->smi_count = msr & 0xFFFFFFFF;
1663 }
Len Brown0539ba12017-02-10 00:27:20 -05001664 if (DO_BIC(BIC_CPU_c1) && use_c1_residency_msr) {
Len Brown144b44b2013-11-09 00:30:16 -05001665 if (get_msr(cpu, MSR_CORE_C1_RES, &t->c1))
1666 return -6;
1667 }
1668
Len Brown388e9c82016-12-22 23:57:55 -05001669 for (i = 0, mp = sys.tp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001670 if (get_mp(cpu, mp, &t->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001671 return -10;
1672 }
1673
Len Brownc98d5d92012-06-04 00:56:40 -04001674 /* collect core counters only for 1st thread in core */
1675 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
Len Brownf4fdf2b2017-05-27 21:06:55 -07001676 goto done;
Len Brownc98d5d92012-06-04 00:56:40 -04001677
Len Brown812db3f2017-02-10 00:25:41 -05001678 if (DO_BIC(BIC_CPU_c3) && !do_slm_cstates && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001679 if (get_msr(cpu, MSR_CORE_C3_RESIDENCY, &c->c3))
1680 return -6;
Len Brown144b44b2013-11-09 00:30:16 -05001681 }
1682
Len Brown812db3f2017-02-10 00:25:41 -05001683 if (DO_BIC(BIC_CPU_c6) && !do_knl_cstates) {
Len Brownc98d5d92012-06-04 00:56:40 -04001684 if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6))
1685 return -7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07001686 } else if (do_knl_cstates) {
1687 if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6))
1688 return -7;
Len Brownc98d5d92012-06-04 00:56:40 -04001689 }
1690
Len Brown812db3f2017-02-10 00:25:41 -05001691 if (DO_BIC(BIC_CPU_c7))
Len Brownc98d5d92012-06-04 00:56:40 -04001692 if (get_msr(cpu, MSR_CORE_C7_RESIDENCY, &c->c7))
1693 return -8;
1694
Len Brown0539ba12017-02-10 00:27:20 -05001695 if (DO_BIC(BIC_Mod_c6))
1696 if (get_msr(cpu, MSR_MODULE_C6_RES_MS, &c->mc6_us))
1697 return -8;
1698
Len Brown812db3f2017-02-10 00:25:41 -05001699 if (DO_BIC(BIC_CoreTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001700 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
1701 return -9;
1702 c->core_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1703 }
1704
Len Brown388e9c82016-12-22 23:57:55 -05001705 for (i = 0, mp = sys.cp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001706 if (get_mp(cpu, mp, &c->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001707 return -10;
1708 }
Len Brown889facb2012-11-08 00:48:57 -05001709
Len Brownc98d5d92012-06-04 00:56:40 -04001710 /* collect package counters only for 1st core in package */
1711 if (!(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
Len Brownf4fdf2b2017-05-27 21:06:55 -07001712 goto done;
Len Brownc98d5d92012-06-04 00:56:40 -04001713
Len Browna99d8732017-05-20 20:11:55 -04001714 if (DO_BIC(BIC_Totl_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001715 if (get_msr(cpu, MSR_PKG_WEIGHTED_CORE_C0_RES, &p->pkg_wtd_core_c0))
1716 return -10;
Len Browna99d8732017-05-20 20:11:55 -04001717 }
1718 if (DO_BIC(BIC_Any_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001719 if (get_msr(cpu, MSR_PKG_ANY_CORE_C0_RES, &p->pkg_any_core_c0))
1720 return -11;
Len Browna99d8732017-05-20 20:11:55 -04001721 }
1722 if (DO_BIC(BIC_GFX_c0)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001723 if (get_msr(cpu, MSR_PKG_ANY_GFXE_C0_RES, &p->pkg_any_gfxe_c0))
1724 return -12;
Len Browna99d8732017-05-20 20:11:55 -04001725 }
1726 if (DO_BIC(BIC_CPUGFX)) {
Len Brown0b2bb692015-03-26 00:50:30 -04001727 if (get_msr(cpu, MSR_PKG_BOTH_CORE_GFXE_C0_RES, &p->pkg_both_core_gfxe_c0))
1728 return -13;
1729 }
Len Brown0f47c082017-01-27 00:50:45 -05001730 if (DO_BIC(BIC_Pkgpc3))
Len Brownc98d5d92012-06-04 00:56:40 -04001731 if (get_msr(cpu, MSR_PKG_C3_RESIDENCY, &p->pc3))
1732 return -9;
Len Brown0f47c082017-01-27 00:50:45 -05001733 if (DO_BIC(BIC_Pkgpc6)) {
Len Brown0539ba12017-02-10 00:27:20 -05001734 if (do_slm_cstates) {
1735 if (get_msr(cpu, MSR_ATOM_PKG_C6_RESIDENCY, &p->pc6))
1736 return -10;
1737 } else {
1738 if (get_msr(cpu, MSR_PKG_C6_RESIDENCY, &p->pc6))
1739 return -10;
1740 }
1741 }
1742
Len Brown0f47c082017-01-27 00:50:45 -05001743 if (DO_BIC(BIC_Pkgpc2))
Len Brownc98d5d92012-06-04 00:56:40 -04001744 if (get_msr(cpu, MSR_PKG_C2_RESIDENCY, &p->pc2))
1745 return -11;
Len Brown0f47c082017-01-27 00:50:45 -05001746 if (DO_BIC(BIC_Pkgpc7))
Len Brownc98d5d92012-06-04 00:56:40 -04001747 if (get_msr(cpu, MSR_PKG_C7_RESIDENCY, &p->pc7))
1748 return -12;
Len Brown0f47c082017-01-27 00:50:45 -05001749 if (DO_BIC(BIC_Pkgpc8))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001750 if (get_msr(cpu, MSR_PKG_C8_RESIDENCY, &p->pc8))
1751 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001752 if (DO_BIC(BIC_Pkgpc9))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001753 if (get_msr(cpu, MSR_PKG_C9_RESIDENCY, &p->pc9))
1754 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001755 if (DO_BIC(BIC_Pkgpc10))
Kristen Carlson Accardica587102012-11-21 05:22:43 -08001756 if (get_msr(cpu, MSR_PKG_C10_RESIDENCY, &p->pc10))
1757 return -13;
Len Brown0f47c082017-01-27 00:50:45 -05001758
Len Brownbe0e54c2018-06-01 12:35:53 -04001759 if (DO_BIC(BIC_CPU_LPI))
1760 p->cpu_lpi = cpuidle_cur_cpu_lpi_us;
1761 if (DO_BIC(BIC_SYS_LPI))
1762 p->sys_lpi = cpuidle_cur_sys_lpi_us;
1763
Len Brown889facb2012-11-08 00:48:57 -05001764 if (do_rapl & RAPL_PKG) {
1765 if (get_msr(cpu, MSR_PKG_ENERGY_STATUS, &msr))
1766 return -13;
1767 p->energy_pkg = msr & 0xFFFFFFFF;
1768 }
Jacob Pan91484942016-06-16 09:48:20 -07001769 if (do_rapl & RAPL_CORES_ENERGY_STATUS) {
Len Brown889facb2012-11-08 00:48:57 -05001770 if (get_msr(cpu, MSR_PP0_ENERGY_STATUS, &msr))
1771 return -14;
1772 p->energy_cores = msr & 0xFFFFFFFF;
1773 }
1774 if (do_rapl & RAPL_DRAM) {
1775 if (get_msr(cpu, MSR_DRAM_ENERGY_STATUS, &msr))
1776 return -15;
1777 p->energy_dram = msr & 0xFFFFFFFF;
1778 }
1779 if (do_rapl & RAPL_GFX) {
1780 if (get_msr(cpu, MSR_PP1_ENERGY_STATUS, &msr))
1781 return -16;
1782 p->energy_gfx = msr & 0xFFFFFFFF;
1783 }
1784 if (do_rapl & RAPL_PKG_PERF_STATUS) {
1785 if (get_msr(cpu, MSR_PKG_PERF_STATUS, &msr))
1786 return -16;
1787 p->rapl_pkg_perf_status = msr & 0xFFFFFFFF;
1788 }
1789 if (do_rapl & RAPL_DRAM_PERF_STATUS) {
1790 if (get_msr(cpu, MSR_DRAM_PERF_STATUS, &msr))
1791 return -16;
1792 p->rapl_dram_perf_status = msr & 0xFFFFFFFF;
1793 }
Len Brown812db3f2017-02-10 00:25:41 -05001794 if (DO_BIC(BIC_PkgTmp)) {
Len Brown889facb2012-11-08 00:48:57 -05001795 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
1796 return -17;
1797 p->pkg_temp_c = tcc_activation_temp - ((msr >> 16) & 0x7F);
1798 }
Len Brownfdf676e2016-02-27 01:28:12 -05001799
Len Brown812db3f2017-02-10 00:25:41 -05001800 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05001801 p->gfx_rc6_ms = gfx_cur_rc6_ms;
1802
Len Brown812db3f2017-02-10 00:25:41 -05001803 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05001804 p->gfx_mhz = gfx_cur_mhz;
1805
Len Brown388e9c82016-12-22 23:57:55 -05001806 for (i = 0, mp = sys.pp; mp; i++, mp = mp->next) {
Len Brown495c76542017-02-08 02:41:51 -05001807 if (get_mp(cpu, mp, &p->counter[i]))
Len Brown388e9c82016-12-22 23:57:55 -05001808 return -10;
1809 }
Len Brownf4fdf2b2017-05-27 21:06:55 -07001810done:
1811 gettimeofday(&t->tv_end, (struct timezone *)NULL);
Len Brown388e9c82016-12-22 23:57:55 -05001812
Len Brown103a8fe2010-10-22 23:53:03 -04001813 return 0;
1814}
1815
Len Brownee7e38e2015-02-09 23:39:45 -05001816/*
1817 * MSR_PKG_CST_CONFIG_CONTROL decoding for pkg_cstate_limit:
1818 * If you change the values, note they are used both in comparisons
1819 * (>= PCL__7) and to index pkg_cstate_limit_strings[].
1820 */
1821
1822#define PCLUKN 0 /* Unknown */
1823#define PCLRSV 1 /* Reserved */
1824#define PCL__0 2 /* PC0 */
1825#define PCL__1 3 /* PC1 */
1826#define PCL__2 4 /* PC2 */
1827#define PCL__3 5 /* PC3 */
1828#define PCL__4 6 /* PC4 */
1829#define PCL__6 7 /* PC6 */
1830#define PCL_6N 8 /* PC6 No Retention */
1831#define PCL_6R 9 /* PC6 Retention */
1832#define PCL__7 10 /* PC7 */
1833#define PCL_7S 11 /* PC7 Shrink */
Len Brown0b2bb692015-03-26 00:50:30 -04001834#define PCL__8 12 /* PC8 */
1835#define PCL__9 13 /* PC9 */
1836#define PCLUNL 14 /* Unlimited */
Len Brownee7e38e2015-02-09 23:39:45 -05001837
1838int pkg_cstate_limit = PCLUKN;
1839char *pkg_cstate_limit_strings[] = { "reserved", "unknown", "pc0", "pc1", "pc2",
Len Brown0b2bb692015-03-26 00:50:30 -04001840 "pc3", "pc4", "pc6", "pc6n", "pc6r", "pc7", "pc7s", "pc8", "pc9", "unlimited"};
Len Brownee7e38e2015-02-09 23:39:45 -05001841
Len Browne9257f52015-04-01 21:02:57 -04001842int 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};
1843int 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};
1844int 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 -05001845int 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 -05001846int 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 -04001847int 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 -04001848int bxt_pkg_cstate_limits[16] = {PCL__0, PCL__2, PCLUNL, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV, PCLRSV};
Artem Bityutskiy2085e122017-08-04 18:42:23 +03001849int skx_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 Brownee7e38e2015-02-09 23:39:45 -05001850
Len Browna2b7b742015-09-26 00:12:38 -04001851
1852static void
1853calculate_tsc_tweak()
1854{
Len Browna2b7b742015-09-26 00:12:38 -04001855 tsc_tweak = base_hz / tsc_hz;
1856}
1857
Len Brownfcd17212015-03-23 20:29:09 -04001858static void
1859dump_nhm_platform_info(void)
Len Brown103a8fe2010-10-22 23:53:03 -04001860{
1861 unsigned long long msr;
1862 unsigned int ratio;
1863
Len Brownec0adc52015-11-12 02:42:31 -05001864 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown103a8fe2010-10-22 23:53:03 -04001865
Len Brownb7d8c142016-02-13 23:36:17 -05001866 fprintf(outf, "cpu%d: MSR_PLATFORM_INFO: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001867
Len Brown103a8fe2010-10-22 23:53:03 -04001868 ratio = (msr >> 40) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001869 fprintf(outf, "%d * %.1f = %.1f MHz max efficiency frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001870 ratio, bclk, ratio * bclk);
1871
1872 ratio = (msr >> 8) & 0xFF;
Len Brown710f2732017-01-11 22:12:25 -05001873 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
Len Brown103a8fe2010-10-22 23:53:03 -04001874 ratio, bclk, ratio * bclk);
1875
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001876 get_msr(base_cpu, MSR_IA32_POWER_CTL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001877 fprintf(outf, "cpu%d: MSR_IA32_POWER_CTL: 0x%08llx (C1E auto-promotion: %sabled)\n",
Len Brownbfae2052015-06-17 12:27:21 -04001878 base_cpu, msr, msr & 0x2 ? "EN" : "DIS");
Len Brown67920412013-01-31 15:22:15 -05001879
Len Brownfcd17212015-03-23 20:29:09 -04001880 return;
1881}
1882
1883static void
1884dump_hsw_turbo_ratio_limits(void)
1885{
1886 unsigned long long msr;
1887 unsigned int ratio;
1888
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001889 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT2, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04001890
Len Brownb7d8c142016-02-13 23:36:17 -05001891 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT2: 0x%08llx\n", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04001892
1893 ratio = (msr >> 8) & 0xFF;
1894 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001895 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 18 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001896 ratio, bclk, ratio * bclk);
1897
1898 ratio = (msr >> 0) & 0xFF;
1899 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001900 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 17 active cores\n",
Len Brownfcd17212015-03-23 20:29:09 -04001901 ratio, bclk, ratio * bclk);
1902 return;
1903}
1904
1905static void
1906dump_ivt_turbo_ratio_limits(void)
1907{
1908 unsigned long long msr;
1909 unsigned int ratio;
Len Brown6574a5d2012-09-21 00:01:31 -04001910
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001911 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001912
Len Brownb7d8c142016-02-13 23:36:17 -05001913 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001914
1915 ratio = (msr >> 56) & 0xFF;
1916 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001917 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 16 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001918 ratio, bclk, ratio * bclk);
1919
1920 ratio = (msr >> 48) & 0xFF;
1921 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001922 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 15 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001923 ratio, bclk, ratio * bclk);
1924
1925 ratio = (msr >> 40) & 0xFF;
1926 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001927 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 14 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001928 ratio, bclk, ratio * bclk);
1929
1930 ratio = (msr >> 32) & 0xFF;
1931 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001932 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 13 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001933 ratio, bclk, ratio * bclk);
1934
1935 ratio = (msr >> 24) & 0xFF;
1936 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001937 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 12 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001938 ratio, bclk, ratio * bclk);
1939
1940 ratio = (msr >> 16) & 0xFF;
1941 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001942 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 11 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001943 ratio, bclk, ratio * bclk);
1944
1945 ratio = (msr >> 8) & 0xFF;
1946 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001947 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 10 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001948 ratio, bclk, ratio * bclk);
1949
1950 ratio = (msr >> 0) & 0xFF;
1951 if (ratio)
Len Brown710f2732017-01-11 22:12:25 -05001952 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 9 active cores\n",
Len Brown6574a5d2012-09-21 00:01:31 -04001953 ratio, bclk, ratio * bclk);
Len Brownfcd17212015-03-23 20:29:09 -04001954 return;
1955}
Len Brown31e07522017-01-31 23:07:49 -05001956int has_turbo_ratio_group_limits(int family, int model)
1957{
1958
1959 if (!genuine_intel)
1960 return 0;
1961
1962 switch (model) {
1963 case INTEL_FAM6_ATOM_GOLDMONT:
1964 case INTEL_FAM6_SKYLAKE_X:
1965 case INTEL_FAM6_ATOM_DENVERTON:
1966 return 1;
1967 }
1968 return 0;
1969}
Len Brown6574a5d2012-09-21 00:01:31 -04001970
Len Brownfcd17212015-03-23 20:29:09 -04001971static void
Len Brown31e07522017-01-31 23:07:49 -05001972dump_turbo_ratio_limits(int family, int model)
Len Brownfcd17212015-03-23 20:29:09 -04001973{
Len Brown31e07522017-01-31 23:07:49 -05001974 unsigned long long msr, core_counts;
1975 unsigned int ratio, group_size;
Len Brown103a8fe2010-10-22 23:53:03 -04001976
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04001977 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05001978 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n", base_cpu, msr);
Len Brown6574a5d2012-09-21 00:01:31 -04001979
Len Brown31e07522017-01-31 23:07:49 -05001980 if (has_turbo_ratio_group_limits(family, model)) {
1981 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT1, &core_counts);
1982 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT1: 0x%08llx\n", base_cpu, core_counts);
1983 } else {
1984 core_counts = 0x0807060504030201;
1985 }
1986
Len Brown6574a5d2012-09-21 00:01:31 -04001987 ratio = (msr >> 56) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001988 group_size = (core_counts >> 56) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001989 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001990 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1991 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001992
1993 ratio = (msr >> 48) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05001994 group_size = (core_counts >> 48) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04001995 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05001996 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
1997 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04001998
1999 ratio = (msr >> 40) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002000 group_size = (core_counts >> 40) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04002001 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002002 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2003 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04002004
2005 ratio = (msr >> 32) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002006 group_size = (core_counts >> 32) & 0xFF;
Len Brown6574a5d2012-09-21 00:01:31 -04002007 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002008 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2009 ratio, bclk, ratio * bclk, group_size);
Len Brown6574a5d2012-09-21 00:01:31 -04002010
Len Brown103a8fe2010-10-22 23:53:03 -04002011 ratio = (msr >> 24) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002012 group_size = (core_counts >> 24) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04002013 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002014 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2015 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04002016
2017 ratio = (msr >> 16) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002018 group_size = (core_counts >> 16) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04002019 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002020 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2021 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04002022
2023 ratio = (msr >> 8) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002024 group_size = (core_counts >> 8) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04002025 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002026 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2027 ratio, bclk, ratio * bclk, group_size);
Len Brown103a8fe2010-10-22 23:53:03 -04002028
2029 ratio = (msr >> 0) & 0xFF;
Len Brown31e07522017-01-31 23:07:49 -05002030 group_size = (core_counts >> 0) & 0xFF;
Len Brown103a8fe2010-10-22 23:53:03 -04002031 if (ratio)
Len Brown31e07522017-01-31 23:07:49 -05002032 fprintf(outf, "%d * %.1f = %.1f MHz max turbo %d active cores\n",
2033 ratio, bclk, ratio * bclk, group_size);
Len Brownfcd17212015-03-23 20:29:09 -04002034 return;
2035}
Len Brown3a9a9412014-08-15 02:39:52 -04002036
Len Brownfcd17212015-03-23 20:29:09 -04002037static void
Len Brown0f7887c2017-01-12 23:49:18 -05002038dump_atom_turbo_ratio_limits(void)
2039{
2040 unsigned long long msr;
2041 unsigned int ratio;
2042
2043 get_msr(base_cpu, MSR_ATOM_CORE_RATIOS, &msr);
2044 fprintf(outf, "cpu%d: MSR_ATOM_CORE_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
2045
2046 ratio = (msr >> 0) & 0x3F;
2047 if (ratio)
2048 fprintf(outf, "%d * %.1f = %.1f MHz minimum operating frequency\n",
2049 ratio, bclk, ratio * bclk);
2050
2051 ratio = (msr >> 8) & 0x3F;
2052 if (ratio)
2053 fprintf(outf, "%d * %.1f = %.1f MHz low frequency mode (LFM)\n",
2054 ratio, bclk, ratio * bclk);
2055
2056 ratio = (msr >> 16) & 0x3F;
2057 if (ratio)
2058 fprintf(outf, "%d * %.1f = %.1f MHz base frequency\n",
2059 ratio, bclk, ratio * bclk);
2060
2061 get_msr(base_cpu, MSR_ATOM_CORE_TURBO_RATIOS, &msr);
2062 fprintf(outf, "cpu%d: MSR_ATOM_CORE_TURBO_RATIOS: 0x%08llx\n", base_cpu, msr & 0xFFFFFFFF);
2063
2064 ratio = (msr >> 24) & 0x3F;
2065 if (ratio)
2066 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 4 active cores\n",
2067 ratio, bclk, ratio * bclk);
2068
2069 ratio = (msr >> 16) & 0x3F;
2070 if (ratio)
2071 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 3 active cores\n",
2072 ratio, bclk, ratio * bclk);
2073
2074 ratio = (msr >> 8) & 0x3F;
2075 if (ratio)
2076 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 2 active cores\n",
2077 ratio, bclk, ratio * bclk);
2078
2079 ratio = (msr >> 0) & 0x3F;
2080 if (ratio)
2081 fprintf(outf, "%d * %.1f = %.1f MHz max turbo 1 active core\n",
2082 ratio, bclk, ratio * bclk);
2083}
2084
2085static void
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002086dump_knl_turbo_ratio_limits(void)
2087{
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002088 const unsigned int buckets_no = 7;
2089
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002090 unsigned long long msr;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002091 int delta_cores, delta_ratio;
2092 int i, b_nr;
2093 unsigned int cores[buckets_no];
2094 unsigned int ratio[buckets_no];
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002095
Srinivas Pandruvadaebf59262016-07-06 16:07:56 -07002096 get_msr(base_cpu, MSR_TURBO_RATIO_LIMIT, &msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002097
Len Brownb7d8c142016-02-13 23:36:17 -05002098 fprintf(outf, "cpu%d: MSR_TURBO_RATIO_LIMIT: 0x%08llx\n",
Len Brownbfae2052015-06-17 12:27:21 -04002099 base_cpu, msr);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002100
2101 /**
2102 * Turbo encoding in KNL is as follows:
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002103 * [0] -- Reserved
2104 * [7:1] -- Base value of number of active cores of bucket 1.
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002105 * [15:8] -- Base value of freq ratio of bucket 1.
2106 * [20:16] -- +ve delta of number of active cores of bucket 2.
2107 * i.e. active cores of bucket 2 =
2108 * active cores of bucket 1 + delta
2109 * [23:21] -- Negative delta of freq ratio of bucket 2.
2110 * i.e. freq ratio of bucket 2 =
2111 * freq ratio of bucket 1 - delta
2112 * [28:24]-- +ve delta of number of active cores of bucket 3.
2113 * [31:29]-- -ve delta of freq ratio of bucket 3.
2114 * [36:32]-- +ve delta of number of active cores of bucket 4.
2115 * [39:37]-- -ve delta of freq ratio of bucket 4.
2116 * [44:40]-- +ve delta of number of active cores of bucket 5.
2117 * [47:45]-- -ve delta of freq ratio of bucket 5.
2118 * [52:48]-- +ve delta of number of active cores of bucket 6.
2119 * [55:53]-- -ve delta of freq ratio of bucket 6.
2120 * [60:56]-- +ve delta of number of active cores of bucket 7.
2121 * [63:61]-- -ve delta of freq ratio of bucket 7.
2122 */
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002123
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002124 b_nr = 0;
2125 cores[b_nr] = (msr & 0xFF) >> 1;
2126 ratio[b_nr] = (msr >> 8) & 0xFF;
2127
2128 for (i = 16; i < 64; i += 8) {
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002129 delta_cores = (msr >> i) & 0x1F;
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002130 delta_ratio = (msr >> (i + 5)) & 0x7;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002131
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002132 cores[b_nr + 1] = cores[b_nr] + delta_cores;
2133 ratio[b_nr + 1] = ratio[b_nr] - delta_ratio;
2134 b_nr++;
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002135 }
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002136
2137 for (i = buckets_no - 1; i >= 0; i--)
2138 if (i > 0 ? ratio[i] != ratio[i - 1] : 1)
Len Brownb7d8c142016-02-13 23:36:17 -05002139 fprintf(outf,
Len Brown710f2732017-01-11 22:12:25 -05002140 "%d * %.1f = %.1f MHz max turbo %d active cores\n",
Hubert Chrzaniukcbf97ab2016-02-10 14:55:22 +01002141 ratio[i], bclk, ratio[i] * bclk, cores[i]);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07002142}
2143
2144static void
Len Brownfcd17212015-03-23 20:29:09 -04002145dump_nhm_cst_cfg(void)
2146{
2147 unsigned long long msr;
2148
Len Brown1df2e552017-01-07 23:24:57 -05002149 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Brownfcd17212015-03-23 20:29:09 -04002150
2151#define SNB_C1_AUTO_UNDEMOTE (1UL << 27)
2152#define SNB_C3_AUTO_UNDEMOTE (1UL << 28)
2153
Len Brown1df2e552017-01-07 23:24:57 -05002154 fprintf(outf, "cpu%d: MSR_PKG_CST_CONFIG_CONTROL: 0x%08llx", base_cpu, msr);
Len Brownfcd17212015-03-23 20:29:09 -04002155
Artem Bityutskiy3e8b62b2017-09-05 15:25:42 +03002156 fprintf(outf, " (%s%s%s%s%slocked, pkg-cstate-limit=%d (%s)",
Len Brownfcd17212015-03-23 20:29:09 -04002157 (msr & SNB_C3_AUTO_UNDEMOTE) ? "UNdemote-C3, " : "",
2158 (msr & SNB_C1_AUTO_UNDEMOTE) ? "UNdemote-C1, " : "",
2159 (msr & NHM_C3_AUTO_DEMOTE) ? "demote-C3, " : "",
2160 (msr & NHM_C1_AUTO_DEMOTE) ? "demote-C1, " : "",
2161 (msr & (1 << 15)) ? "" : "UN",
Len Brown6c34f162016-03-13 03:21:22 -04002162 (unsigned int)msr & 0xF,
Len Brownfcd17212015-03-23 20:29:09 -04002163 pkg_cstate_limit_strings[pkg_cstate_limit]);
Artem Bityutskiyac980e12017-09-05 15:14:08 +03002164
2165#define AUTOMATIC_CSTATE_CONVERSION (1UL << 16)
2166 if (has_automatic_cstate_conversion) {
2167 fprintf(outf, ", automatic c-state conversion=%s",
2168 (msr & AUTOMATIC_CSTATE_CONVERSION) ? "on" : "off");
2169 }
2170
2171 fprintf(outf, ")\n");
2172
Len Brownfcd17212015-03-23 20:29:09 -04002173 return;
Len Brown103a8fe2010-10-22 23:53:03 -04002174}
2175
Len Brown6fb31432015-06-17 16:23:45 -04002176static void
2177dump_config_tdp(void)
2178{
2179 unsigned long long msr;
2180
2181 get_msr(base_cpu, MSR_CONFIG_TDP_NOMINAL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002182 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_NOMINAL: 0x%08llx", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002183 fprintf(outf, " (base_ratio=%d)\n", (unsigned int)msr & 0xFF);
Len Brown6fb31432015-06-17 16:23:45 -04002184
2185 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_1, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002186 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_1: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002187 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002188 fprintf(outf, "PKG_MIN_PWR_LVL1=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2189 fprintf(outf, "PKG_MAX_PWR_LVL1=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2190 fprintf(outf, "LVL1_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2191 fprintf(outf, "PKG_TDP_LVL1=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002192 }
Len Brownb7d8c142016-02-13 23:36:17 -05002193 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002194
2195 get_msr(base_cpu, MSR_CONFIG_TDP_LEVEL_2, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002196 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_LEVEL_2: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002197 if (msr) {
Chen Yu685b5352015-12-13 21:09:31 +08002198 fprintf(outf, "PKG_MIN_PWR_LVL2=%d ", (unsigned int)(msr >> 48) & 0x7FFF);
2199 fprintf(outf, "PKG_MAX_PWR_LVL2=%d ", (unsigned int)(msr >> 32) & 0x7FFF);
2200 fprintf(outf, "LVL2_RATIO=%d ", (unsigned int)(msr >> 16) & 0xFF);
2201 fprintf(outf, "PKG_TDP_LVL2=%d", (unsigned int)(msr) & 0x7FFF);
Len Brown6fb31432015-06-17 16:23:45 -04002202 }
Len Brownb7d8c142016-02-13 23:36:17 -05002203 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002204
2205 get_msr(base_cpu, MSR_CONFIG_TDP_CONTROL, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002206 fprintf(outf, "cpu%d: MSR_CONFIG_TDP_CONTROL: 0x%08llx (", base_cpu, msr);
Len Brown6fb31432015-06-17 16:23:45 -04002207 if ((msr) & 0x3)
Len Brownb7d8c142016-02-13 23:36:17 -05002208 fprintf(outf, "TDP_LEVEL=%d ", (unsigned int)(msr) & 0x3);
2209 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2210 fprintf(outf, ")\n");
Len Brown36229892016-02-26 20:51:02 -05002211
Len Brown6fb31432015-06-17 16:23:45 -04002212 get_msr(base_cpu, MSR_TURBO_ACTIVATION_RATIO, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05002213 fprintf(outf, "cpu%d: MSR_TURBO_ACTIVATION_RATIO: 0x%08llx (", base_cpu, msr);
Chen Yu685b5352015-12-13 21:09:31 +08002214 fprintf(outf, "MAX_NON_TURBO_RATIO=%d", (unsigned int)(msr) & 0xFF);
Len Brownb7d8c142016-02-13 23:36:17 -05002215 fprintf(outf, " lock=%d", (unsigned int)(msr >> 31) & 1);
2216 fprintf(outf, ")\n");
Len Brown6fb31432015-06-17 16:23:45 -04002217}
Len Brown5a634262016-04-06 17:15:55 -04002218
2219unsigned int irtl_time_units[] = {1, 32, 1024, 32768, 1048576, 33554432, 0, 0 };
2220
2221void print_irtl(void)
2222{
2223 unsigned long long msr;
2224
2225 get_msr(base_cpu, MSR_PKGC3_IRTL, &msr);
2226 fprintf(outf, "cpu%d: MSR_PKGC3_IRTL: 0x%08llx (", base_cpu, msr);
2227 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2228 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2229
2230 get_msr(base_cpu, MSR_PKGC6_IRTL, &msr);
2231 fprintf(outf, "cpu%d: MSR_PKGC6_IRTL: 0x%08llx (", base_cpu, msr);
2232 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2233 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2234
2235 get_msr(base_cpu, MSR_PKGC7_IRTL, &msr);
2236 fprintf(outf, "cpu%d: MSR_PKGC7_IRTL: 0x%08llx (", base_cpu, msr);
2237 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2238 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2239
2240 if (!do_irtl_hsw)
2241 return;
2242
2243 get_msr(base_cpu, MSR_PKGC8_IRTL, &msr);
2244 fprintf(outf, "cpu%d: MSR_PKGC8_IRTL: 0x%08llx (", base_cpu, msr);
2245 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2246 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2247
2248 get_msr(base_cpu, MSR_PKGC9_IRTL, &msr);
2249 fprintf(outf, "cpu%d: MSR_PKGC9_IRTL: 0x%08llx (", base_cpu, msr);
2250 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2251 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2252
2253 get_msr(base_cpu, MSR_PKGC10_IRTL, &msr);
2254 fprintf(outf, "cpu%d: MSR_PKGC10_IRTL: 0x%08llx (", base_cpu, msr);
2255 fprintf(outf, "%svalid, %lld ns)\n", msr & (1 << 15) ? "" : "NOT",
2256 (msr & 0x3FF) * irtl_time_units[(msr >> 10) & 0x3]);
2257
2258}
Len Brown36229892016-02-26 20:51:02 -05002259void free_fd_percpu(void)
2260{
2261 int i;
2262
Mika Westerberg01a67ad2016-04-22 11:13:23 +03002263 for (i = 0; i < topo.max_cpu_num + 1; ++i) {
Len Brown36229892016-02-26 20:51:02 -05002264 if (fd_percpu[i] != 0)
2265 close(fd_percpu[i]);
2266 }
2267
2268 free(fd_percpu);
Len Brown6fb31432015-06-17 16:23:45 -04002269}
2270
Len Brownc98d5d92012-06-04 00:56:40 -04002271void free_all_buffers(void)
Len Brown103a8fe2010-10-22 23:53:03 -04002272{
Len Brownc98d5d92012-06-04 00:56:40 -04002273 CPU_FREE(cpu_present_set);
2274 cpu_present_set = NULL;
Len Brown36229892016-02-26 20:51:02 -05002275 cpu_present_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002276
Len Brownc98d5d92012-06-04 00:56:40 -04002277 CPU_FREE(cpu_affinity_set);
2278 cpu_affinity_set = NULL;
2279 cpu_affinity_setsize = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002280
Len Brownc98d5d92012-06-04 00:56:40 -04002281 free(thread_even);
2282 free(core_even);
2283 free(package_even);
2284
2285 thread_even = NULL;
2286 core_even = NULL;
2287 package_even = NULL;
2288
2289 free(thread_odd);
2290 free(core_odd);
2291 free(package_odd);
2292
2293 thread_odd = NULL;
2294 core_odd = NULL;
2295 package_odd = NULL;
2296
2297 free(output_buffer);
2298 output_buffer = NULL;
2299 outp = NULL;
Len Brown36229892016-02-26 20:51:02 -05002300
2301 free_fd_percpu();
Len Brown562a2d32016-02-26 23:48:05 -05002302
2303 free(irq_column_2_cpu);
2304 free(irqs_per_cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002305}
2306
Josh Triplett57a42a32013-08-20 17:20:17 -07002307
2308/*
Josh Triplett95aebc42013-08-20 17:20:16 -07002309 * Parse a file containing a single int.
2310 */
2311int parse_int_file(const char *fmt, ...)
2312{
2313 va_list args;
2314 char path[PATH_MAX];
2315 FILE *filep;
2316 int value;
2317
2318 va_start(args, fmt);
2319 vsnprintf(path, sizeof(path), fmt, args);
2320 va_end(args);
Josh Triplett57a42a32013-08-20 17:20:17 -07002321 filep = fopen_or_die(path, "r");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002322 if (fscanf(filep, "%d", &value) != 1)
2323 err(1, "%s: failed to parse number from file", path);
Josh Triplett95aebc42013-08-20 17:20:16 -07002324 fclose(filep);
2325 return value;
2326}
2327
2328/*
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002329 * get_cpu_position_in_core(cpu)
2330 * return the position of the CPU among its HT siblings in the core
2331 * return -1 if the sibling is not in list
Len Brownc98d5d92012-06-04 00:56:40 -04002332 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002333int get_cpu_position_in_core(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002334{
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002335 char path[64];
2336 FILE *filep;
2337 int this_cpu;
2338 char character;
2339 int i;
2340
2341 sprintf(path,
2342 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list",
2343 cpu);
2344 filep = fopen(path, "r");
2345 if (filep == NULL) {
2346 perror(path);
2347 exit(1);
2348 }
2349
2350 for (i = 0; i < topo.num_threads_per_core; i++) {
2351 fscanf(filep, "%d", &this_cpu);
2352 if (this_cpu == cpu) {
2353 fclose(filep);
2354 return i;
2355 }
2356
2357 /* Account for no separator after last thread*/
2358 if (i != (topo.num_threads_per_core - 1))
2359 fscanf(filep, "%c", &character);
2360 }
2361
2362 fclose(filep);
2363 return -1;
Len Brown103a8fe2010-10-22 23:53:03 -04002364}
2365
Len Brownc98d5d92012-06-04 00:56:40 -04002366/*
2367 * cpu_is_first_core_in_package(cpu)
2368 * return 1 if given CPU is 1st core in package
2369 */
2370int cpu_is_first_core_in_package(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002371{
Josh Triplett95aebc42013-08-20 17:20:16 -07002372 return cpu == parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_siblings_list", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002373}
2374
2375int get_physical_package_id(int cpu)
2376{
Josh Triplett95aebc42013-08-20 17:20:16 -07002377 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/physical_package_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002378}
2379
2380int get_core_id(int cpu)
2381{
Josh Triplett95aebc42013-08-20 17:20:16 -07002382 return parse_int_file("/sys/devices/system/cpu/cpu%d/topology/core_id", cpu);
Len Brown103a8fe2010-10-22 23:53:03 -04002383}
2384
Len Brownc98d5d92012-06-04 00:56:40 -04002385int get_num_ht_siblings(int cpu)
2386{
2387 char path[80];
2388 FILE *filep;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002389 int sib1;
2390 int matches = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002391 char character;
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002392 char str[100];
2393 char *ch;
Len Brownc98d5d92012-06-04 00:56:40 -04002394
2395 sprintf(path, "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list", cpu);
Josh Triplett57a42a32013-08-20 17:20:17 -07002396 filep = fopen_or_die(path, "r");
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002397
Len Brownc98d5d92012-06-04 00:56:40 -04002398 /*
2399 * file format:
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002400 * A ',' separated or '-' separated set of numbers
2401 * (eg 1-2 or 1,3,4,5)
Len Brownc98d5d92012-06-04 00:56:40 -04002402 */
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002403 fscanf(filep, "%d%c\n", &sib1, &character);
2404 fseek(filep, 0, SEEK_SET);
2405 fgets(str, 100, filep);
2406 ch = strchr(str, character);
2407 while (ch != NULL) {
2408 matches++;
2409 ch = strchr(ch+1, character);
2410 }
Len Brownc98d5d92012-06-04 00:56:40 -04002411
2412 fclose(filep);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07002413 return matches+1;
Len Brownc98d5d92012-06-04 00:56:40 -04002414}
2415
Len Brown103a8fe2010-10-22 23:53:03 -04002416/*
Len Brownc98d5d92012-06-04 00:56:40 -04002417 * run func(thread, core, package) in topology order
2418 * skip non-present cpus
Len Brown103a8fe2010-10-22 23:53:03 -04002419 */
2420
Len Brownc98d5d92012-06-04 00:56:40 -04002421int for_all_cpus_2(int (func)(struct thread_data *, struct core_data *,
2422 struct pkg_data *, struct thread_data *, struct core_data *,
2423 struct pkg_data *), struct thread_data *thread_base,
2424 struct core_data *core_base, struct pkg_data *pkg_base,
2425 struct thread_data *thread_base2, struct core_data *core_base2,
2426 struct pkg_data *pkg_base2)
2427{
2428 int retval, pkg_no, core_no, thread_no;
2429
2430 for (pkg_no = 0; pkg_no < topo.num_packages; ++pkg_no) {
2431 for (core_no = 0; core_no < topo.num_cores_per_pkg; ++core_no) {
2432 for (thread_no = 0; thread_no <
2433 topo.num_threads_per_core; ++thread_no) {
2434 struct thread_data *t, *t2;
2435 struct core_data *c, *c2;
2436 struct pkg_data *p, *p2;
2437
2438 t = GET_THREAD(thread_base, thread_no, core_no, pkg_no);
2439
2440 if (cpu_is_not_present(t->cpu_id))
2441 continue;
2442
2443 t2 = GET_THREAD(thread_base2, thread_no, core_no, pkg_no);
2444
2445 c = GET_CORE(core_base, core_no, pkg_no);
2446 c2 = GET_CORE(core_base2, core_no, pkg_no);
2447
2448 p = GET_PKG(pkg_base, pkg_no);
2449 p2 = GET_PKG(pkg_base2, pkg_no);
2450
2451 retval = func(t, c, p, t2, c2, p2);
2452 if (retval)
2453 return retval;
2454 }
2455 }
2456 }
2457 return 0;
2458}
2459
2460/*
2461 * run func(cpu) on every cpu in /proc/stat
2462 * return max_cpu number
2463 */
2464int for_all_proc_cpus(int (func)(int))
Len Brown103a8fe2010-10-22 23:53:03 -04002465{
2466 FILE *fp;
Len Brownc98d5d92012-06-04 00:56:40 -04002467 int cpu_num;
Len Brown103a8fe2010-10-22 23:53:03 -04002468 int retval;
2469
Josh Triplett57a42a32013-08-20 17:20:17 -07002470 fp = fopen_or_die(proc_stat, "r");
Len Brown103a8fe2010-10-22 23:53:03 -04002471
2472 retval = fscanf(fp, "cpu %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d\n");
Josh Triplettb2c95d92013-08-20 17:20:18 -07002473 if (retval != 0)
2474 err(1, "%s: failed to parse format", proc_stat);
Len Brown103a8fe2010-10-22 23:53:03 -04002475
Len Brownc98d5d92012-06-04 00:56:40 -04002476 while (1) {
2477 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 -04002478 if (retval != 1)
2479 break;
2480
Len Brownc98d5d92012-06-04 00:56:40 -04002481 retval = func(cpu_num);
2482 if (retval) {
2483 fclose(fp);
2484 return(retval);
2485 }
Len Brown103a8fe2010-10-22 23:53:03 -04002486 }
2487 fclose(fp);
Len Brownc98d5d92012-06-04 00:56:40 -04002488 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002489}
2490
2491void re_initialize(void)
2492{
Len Brownc98d5d92012-06-04 00:56:40 -04002493 free_all_buffers();
2494 setup_all_buffers();
2495 printf("turbostat: re-initialized with num_cpus %d\n", topo.num_cpus);
Len Brown103a8fe2010-10-22 23:53:03 -04002496}
2497
Len Brownc98d5d92012-06-04 00:56:40 -04002498
Len Brown103a8fe2010-10-22 23:53:03 -04002499/*
Len Brownc98d5d92012-06-04 00:56:40 -04002500 * count_cpus()
2501 * remember the last one seen, it will be the max
Len Brown103a8fe2010-10-22 23:53:03 -04002502 */
Len Brownc98d5d92012-06-04 00:56:40 -04002503int count_cpus(int cpu)
Len Brown103a8fe2010-10-22 23:53:03 -04002504{
Len Brownc98d5d92012-06-04 00:56:40 -04002505 if (topo.max_cpu_num < cpu)
2506 topo.max_cpu_num = cpu;
Len Brown103a8fe2010-10-22 23:53:03 -04002507
Len Brownc98d5d92012-06-04 00:56:40 -04002508 topo.num_cpus += 1;
2509 return 0;
2510}
2511int mark_cpu_present(int cpu)
2512{
2513 CPU_SET_S(cpu, cpu_present_setsize, cpu_present_set);
Len Brown15aaa342012-03-29 22:19:58 -04002514 return 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002515}
2516
Len Brown562a2d32016-02-26 23:48:05 -05002517/*
2518 * snapshot_proc_interrupts()
2519 *
2520 * read and record summary of /proc/interrupts
2521 *
2522 * return 1 if config change requires a restart, else return 0
2523 */
2524int snapshot_proc_interrupts(void)
2525{
2526 static FILE *fp;
2527 int column, retval;
2528
2529 if (fp == NULL)
2530 fp = fopen_or_die("/proc/interrupts", "r");
2531 else
2532 rewind(fp);
2533
2534 /* read 1st line of /proc/interrupts to get cpu* name for each column */
2535 for (column = 0; column < topo.num_cpus; ++column) {
2536 int cpu_number;
2537
2538 retval = fscanf(fp, " CPU%d", &cpu_number);
2539 if (retval != 1)
2540 break;
2541
2542 if (cpu_number > topo.max_cpu_num) {
2543 warn("/proc/interrupts: cpu%d: > %d", cpu_number, topo.max_cpu_num);
2544 return 1;
2545 }
2546
2547 irq_column_2_cpu[column] = cpu_number;
2548 irqs_per_cpu[cpu_number] = 0;
2549 }
2550
2551 /* read /proc/interrupt count lines and sum up irqs per cpu */
2552 while (1) {
2553 int column;
2554 char buf[64];
2555
2556 retval = fscanf(fp, " %s:", buf); /* flush irq# "N:" */
2557 if (retval != 1)
2558 break;
2559
2560 /* read the count per cpu */
2561 for (column = 0; column < topo.num_cpus; ++column) {
2562
2563 int cpu_number, irq_count;
2564
2565 retval = fscanf(fp, " %d", &irq_count);
2566 if (retval != 1)
2567 break;
2568
2569 cpu_number = irq_column_2_cpu[column];
2570 irqs_per_cpu[cpu_number] += irq_count;
2571
2572 }
2573
2574 while (getc(fp) != '\n')
2575 ; /* flush interrupt description */
2576
2577 }
2578 return 0;
2579}
Len Brown27d47352016-02-27 00:37:54 -05002580/*
Len Brownfdf676e2016-02-27 01:28:12 -05002581 * snapshot_gfx_rc6_ms()
2582 *
2583 * record snapshot of
2584 * /sys/class/drm/card0/power/rc6_residency_ms
2585 *
2586 * return 1 if config change requires a restart, else return 0
2587 */
2588int snapshot_gfx_rc6_ms(void)
2589{
2590 FILE *fp;
2591 int retval;
2592
2593 fp = fopen_or_die("/sys/class/drm/card0/power/rc6_residency_ms", "r");
2594
2595 retval = fscanf(fp, "%lld", &gfx_cur_rc6_ms);
2596 if (retval != 1)
2597 err(1, "GFX rc6");
2598
2599 fclose(fp);
2600
2601 return 0;
2602}
2603/*
Len Brown27d47352016-02-27 00:37:54 -05002604 * snapshot_gfx_mhz()
2605 *
2606 * record snapshot of
2607 * /sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz
2608 *
2609 * return 1 if config change requires a restart, else return 0
2610 */
2611int snapshot_gfx_mhz(void)
2612{
2613 static FILE *fp;
2614 int retval;
2615
2616 if (fp == NULL)
2617 fp = fopen_or_die("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", "r");
Len Brown22048c52017-03-04 15:42:48 -05002618 else {
Len Brown27d47352016-02-27 00:37:54 -05002619 rewind(fp);
Len Brown22048c52017-03-04 15:42:48 -05002620 fflush(fp);
2621 }
Len Brown27d47352016-02-27 00:37:54 -05002622
2623 retval = fscanf(fp, "%d", &gfx_cur_mhz);
2624 if (retval != 1)
2625 err(1, "GFX MHz");
2626
2627 return 0;
2628}
Len Brown562a2d32016-02-26 23:48:05 -05002629
2630/*
Len Brownbe0e54c2018-06-01 12:35:53 -04002631 * snapshot_cpu_lpi()
2632 *
2633 * record snapshot of
2634 * /sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us
2635 *
2636 * return 1 if config change requires a restart, else return 0
2637 */
2638int snapshot_cpu_lpi_us(void)
2639{
2640 FILE *fp;
2641 int retval;
2642
2643 fp = fopen_or_die("/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us", "r");
2644
2645 retval = fscanf(fp, "%lld", &cpuidle_cur_cpu_lpi_us);
2646 if (retval != 1)
2647 err(1, "CPU LPI");
2648
2649 fclose(fp);
2650
2651 return 0;
2652}
2653/*
2654 * snapshot_sys_lpi()
2655 *
2656 * record snapshot of
2657 * /sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us
2658 *
2659 * return 1 if config change requires a restart, else return 0
2660 */
2661int snapshot_sys_lpi_us(void)
2662{
2663 FILE *fp;
2664 int retval;
2665
2666 fp = fopen_or_die("/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us", "r");
2667
2668 retval = fscanf(fp, "%lld", &cpuidle_cur_sys_lpi_us);
2669 if (retval != 1)
2670 err(1, "SYS LPI");
2671
2672 fclose(fp);
2673
2674 return 0;
2675}
2676/*
Len Brown562a2d32016-02-26 23:48:05 -05002677 * snapshot /proc and /sys files
2678 *
2679 * return 1 if configuration restart needed, else return 0
2680 */
2681int snapshot_proc_sysfs_files(void)
2682{
Len Brown218f0e82017-02-14 22:07:52 -05002683 if (DO_BIC(BIC_IRQ))
2684 if (snapshot_proc_interrupts())
2685 return 1;
Len Brown562a2d32016-02-26 23:48:05 -05002686
Len Brown812db3f2017-02-10 00:25:41 -05002687 if (DO_BIC(BIC_GFX_rc6))
Len Brownfdf676e2016-02-27 01:28:12 -05002688 snapshot_gfx_rc6_ms();
2689
Len Brown812db3f2017-02-10 00:25:41 -05002690 if (DO_BIC(BIC_GFXMHz))
Len Brown27d47352016-02-27 00:37:54 -05002691 snapshot_gfx_mhz();
2692
Len Brownbe0e54c2018-06-01 12:35:53 -04002693 if (DO_BIC(BIC_CPU_LPI))
2694 snapshot_cpu_lpi_us();
2695
2696 if (DO_BIC(BIC_SYS_LPI))
2697 snapshot_sys_lpi_us();
2698
Len Brown562a2d32016-02-26 23:48:05 -05002699 return 0;
2700}
2701
Len Brown8aa2ed02017-07-15 14:57:37 -04002702int exit_requested;
2703
2704static void signal_handler (int signal)
2705{
2706 switch (signal) {
2707 case SIGINT:
2708 exit_requested = 1;
2709 if (debug)
2710 fprintf(stderr, " SIGINT\n");
2711 break;
Len Brown07211962017-07-15 15:51:26 -04002712 case SIGUSR1:
2713 if (debug > 1)
2714 fprintf(stderr, "SIGUSR1\n");
2715 break;
Len Brown8aa2ed02017-07-15 14:57:37 -04002716 }
Len Brownb9ad8ee2017-07-19 19:28:37 -04002717 /* make sure this manually-invoked interval is at least 1ms long */
2718 nanosleep(&one_msec, NULL);
Len Brown8aa2ed02017-07-15 14:57:37 -04002719}
2720
2721void setup_signal_handler(void)
2722{
2723 struct sigaction sa;
2724
2725 memset(&sa, 0, sizeof(sa));
2726
2727 sa.sa_handler = &signal_handler;
2728
2729 if (sigaction(SIGINT, &sa, NULL) < 0)
2730 err(1, "sigaction SIGINT");
Len Brown07211962017-07-15 15:51:26 -04002731 if (sigaction(SIGUSR1, &sa, NULL) < 0)
2732 err(1, "sigaction SIGUSR1");
Len Brown8aa2ed02017-07-15 14:57:37 -04002733}
Len Brownb9ad8ee2017-07-19 19:28:37 -04002734
Artem Bityutskiy47936f92017-10-04 15:01:47 +03002735void do_sleep(void)
Len Brownb9ad8ee2017-07-19 19:28:37 -04002736{
2737 struct timeval select_timeout;
2738 fd_set readfds;
2739 int retval;
2740
2741 FD_ZERO(&readfds);
2742 FD_SET(0, &readfds);
2743
Artem Bityutskiy47936f92017-10-04 15:01:47 +03002744 if (!isatty(fileno(stdin))) {
2745 nanosleep(&interval_ts, NULL);
2746 return;
2747 }
Len Brownb9ad8ee2017-07-19 19:28:37 -04002748
Artem Bityutskiy47936f92017-10-04 15:01:47 +03002749 select_timeout = interval_tv;
Len Brownb9ad8ee2017-07-19 19:28:37 -04002750 retval = select(1, &readfds, NULL, NULL, &select_timeout);
2751
2752 if (retval == 1) {
Len Brownb9ad8ee2017-07-19 19:28:37 -04002753 switch (getc(stdin)) {
2754 case 'q':
2755 exit_requested = 1;
2756 break;
2757 }
2758 /* make sure this manually-invoked interval is at least 1ms long */
2759 nanosleep(&one_msec, NULL);
2760 }
Len Brownb9ad8ee2017-07-19 19:28:37 -04002761}
Artem Bityutskiy47936f92017-10-04 15:01:47 +03002762
Len Brown103a8fe2010-10-22 23:53:03 -04002763void turbostat_loop()
2764{
Len Brownc98d5d92012-06-04 00:56:40 -04002765 int retval;
Len Browne52966c2012-11-08 22:38:05 -05002766 int restarted = 0;
Len Brownc98d5d92012-06-04 00:56:40 -04002767
Len Brown8aa2ed02017-07-15 14:57:37 -04002768 setup_signal_handler();
2769
Len Brown103a8fe2010-10-22 23:53:03 -04002770restart:
Len Browne52966c2012-11-08 22:38:05 -05002771 restarted++;
2772
Len Brown562a2d32016-02-26 23:48:05 -05002773 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04002774 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002775 if (retval < -1) {
2776 exit(retval);
2777 } else if (retval == -1) {
Len Browne52966c2012-11-08 22:38:05 -05002778 if (restarted > 1) {
2779 exit(retval);
2780 }
Len Brownc98d5d92012-06-04 00:56:40 -04002781 re_initialize();
2782 goto restart;
2783 }
Len Browne52966c2012-11-08 22:38:05 -05002784 restarted = 0;
Len Brown103a8fe2010-10-22 23:53:03 -04002785 gettimeofday(&tv_even, (struct timezone *)NULL);
2786
2787 while (1) {
Len Brownc98d5d92012-06-04 00:56:40 -04002788 if (for_all_proc_cpus(cpu_is_not_present)) {
Len Brown103a8fe2010-10-22 23:53:03 -04002789 re_initialize();
2790 goto restart;
2791 }
Len Brownb9ad8ee2017-07-19 19:28:37 -04002792 do_sleep();
Len Brown562a2d32016-02-26 23:48:05 -05002793 if (snapshot_proc_sysfs_files())
2794 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002795 retval = for_all_cpus(get_counters, ODD_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002796 if (retval < -1) {
2797 exit(retval);
2798 } else if (retval == -1) {
Len Brown15aaa342012-03-29 22:19:58 -04002799 re_initialize();
2800 goto restart;
2801 }
Len Brown103a8fe2010-10-22 23:53:03 -04002802 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002803 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002804 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS)) {
2805 re_initialize();
2806 goto restart;
2807 }
Len Brownc98d5d92012-06-04 00:56:40 -04002808 compute_average(EVEN_COUNTERS);
2809 format_all_counters(EVEN_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002810 flush_output_stdout();
Len Brown8aa2ed02017-07-15 14:57:37 -04002811 if (exit_requested)
2812 break;
Len Brownb9ad8ee2017-07-19 19:28:37 -04002813 do_sleep();
Len Brown562a2d32016-02-26 23:48:05 -05002814 if (snapshot_proc_sysfs_files())
2815 goto restart;
Len Brownc98d5d92012-06-04 00:56:40 -04002816 retval = for_all_cpus(get_counters, EVEN_COUNTERS);
Len Brownd91bb172012-11-01 00:08:19 -04002817 if (retval < -1) {
2818 exit(retval);
2819 } else if (retval == -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04002820 re_initialize();
2821 goto restart;
2822 }
Len Brown103a8fe2010-10-22 23:53:03 -04002823 gettimeofday(&tv_even, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04002824 timersub(&tv_even, &tv_odd, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04002825 if (for_all_cpus_2(delta_cpu, EVEN_COUNTERS, ODD_COUNTERS)) {
2826 re_initialize();
2827 goto restart;
2828 }
Len Brownc98d5d92012-06-04 00:56:40 -04002829 compute_average(ODD_COUNTERS);
2830 format_all_counters(ODD_COUNTERS);
Len Brownb7d8c142016-02-13 23:36:17 -05002831 flush_output_stdout();
Len Brown8aa2ed02017-07-15 14:57:37 -04002832 if (exit_requested)
2833 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002834 }
2835}
2836
2837void check_dev_msr()
2838{
2839 struct stat sb;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002840 char pathname[32];
Len Brown103a8fe2010-10-22 23:53:03 -04002841
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002842 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2843 if (stat(pathname, &sb))
Len Browna21d38c2015-03-24 16:37:35 -04002844 if (system("/sbin/modprobe msr > /dev/null 2>&1"))
2845 err(-5, "no /dev/cpu/0/msr, Try \"# modprobe msr\" ");
Len Brown103a8fe2010-10-22 23:53:03 -04002846}
2847
Len Brown98481e72014-08-15 00:36:50 -04002848void check_permissions()
Len Brown103a8fe2010-10-22 23:53:03 -04002849{
Len Brown98481e72014-08-15 00:36:50 -04002850 struct __user_cap_header_struct cap_header_data;
2851 cap_user_header_t cap_header = &cap_header_data;
2852 struct __user_cap_data_struct cap_data_data;
2853 cap_user_data_t cap_data = &cap_data_data;
2854 extern int capget(cap_user_header_t hdrp, cap_user_data_t datap);
2855 int do_exit = 0;
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002856 char pathname[32];
Len Brown98481e72014-08-15 00:36:50 -04002857
2858 /* check for CAP_SYS_RAWIO */
2859 cap_header->pid = getpid();
2860 cap_header->version = _LINUX_CAPABILITY_VERSION;
2861 if (capget(cap_header, cap_data) < 0)
2862 err(-6, "capget(2) failed");
2863
2864 if ((cap_data->effective & (1 << CAP_SYS_RAWIO)) == 0) {
2865 do_exit++;
2866 warnx("capget(CAP_SYS_RAWIO) failed,"
2867 " try \"# setcap cap_sys_rawio=ep %s\"", progname);
2868 }
2869
2870 /* test file permissions */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04002871 sprintf(pathname, "/dev/cpu/%d/msr", base_cpu);
2872 if (euidaccess(pathname, R_OK)) {
Len Brown98481e72014-08-15 00:36:50 -04002873 do_exit++;
2874 warn("/dev/cpu/0/msr open failed, try chown or chmod +r /dev/cpu/*/msr");
2875 }
2876
2877 /* if all else fails, thell them to be root */
2878 if (do_exit)
2879 if (getuid() != 0)
Len Brownd7899442015-01-23 00:12:33 -05002880 warnx("... or simply run as root");
Len Brown98481e72014-08-15 00:36:50 -04002881
2882 if (do_exit)
2883 exit(-6);
Len Brown103a8fe2010-10-22 23:53:03 -04002884}
2885
Len Brownd7899442015-01-23 00:12:33 -05002886/*
2887 * NHM adds support for additional MSRs:
2888 *
2889 * MSR_SMI_COUNT 0x00000034
2890 *
Len Brownec0adc52015-11-12 02:42:31 -05002891 * MSR_PLATFORM_INFO 0x000000ce
Len Brown1df2e552017-01-07 23:24:57 -05002892 * MSR_PKG_CST_CONFIG_CONTROL 0x000000e2
Len Brownd7899442015-01-23 00:12:33 -05002893 *
Len Browncf4cbe52017-01-01 13:08:33 -05002894 * MSR_MISC_PWR_MGMT 0x000001aa
2895 *
Len Brownd7899442015-01-23 00:12:33 -05002896 * MSR_PKG_C3_RESIDENCY 0x000003f8
2897 * MSR_PKG_C6_RESIDENCY 0x000003f9
2898 * MSR_CORE_C3_RESIDENCY 0x000003fc
2899 * MSR_CORE_C6_RESIDENCY 0x000003fd
2900 *
Len Brownee7e38e2015-02-09 23:39:45 -05002901 * Side effect:
Len Brown1df2e552017-01-07 23:24:57 -05002902 * sets global pkg_cstate_limit to decode MSR_PKG_CST_CONFIG_CONTROL
Len Brown33148d62017-01-21 01:26:16 -05002903 * sets has_misc_feature_control
Len Brownd7899442015-01-23 00:12:33 -05002904 */
Len Brownee7e38e2015-02-09 23:39:45 -05002905int probe_nhm_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04002906{
Len Brownee7e38e2015-02-09 23:39:45 -05002907 unsigned long long msr;
Len Brown21ed5572015-10-19 22:37:40 -04002908 unsigned int base_ratio;
Len Brownee7e38e2015-02-09 23:39:45 -05002909 int *pkg_cstate_limits;
2910
Len Brown103a8fe2010-10-22 23:53:03 -04002911 if (!genuine_intel)
2912 return 0;
2913
2914 if (family != 6)
2915 return 0;
2916
Len Brown21ed5572015-10-19 22:37:40 -04002917 bclk = discover_bclk(family, model);
2918
Len Brown103a8fe2010-10-22 23:53:03 -04002919 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04002920 case INTEL_FAM6_NEHALEM_EP: /* Core i7, Xeon 5500 series - Bloomfield, Gainstown NHM-EP */
2921 case INTEL_FAM6_NEHALEM: /* Core i7 and i5 Processor - Clarksfield, Lynnfield, Jasper Forest */
Len Brown103a8fe2010-10-22 23:53:03 -04002922 case 0x1F: /* Core i7 and i5 Processor - Nehalem */
Len Brown869ce692016-06-16 23:22:37 -04002923 case INTEL_FAM6_WESTMERE: /* Westmere Client - Clarkdale, Arrandale */
2924 case INTEL_FAM6_WESTMERE_EP: /* Westmere EP - Gulftown */
2925 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
2926 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
Len Brownee7e38e2015-02-09 23:39:45 -05002927 pkg_cstate_limits = nhm_pkg_cstate_limits;
2928 break;
Len Brown869ce692016-06-16 23:22:37 -04002929 case INTEL_FAM6_SANDYBRIDGE: /* SNB */
2930 case INTEL_FAM6_SANDYBRIDGE_X: /* SNB Xeon */
2931 case INTEL_FAM6_IVYBRIDGE: /* IVB */
2932 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
Len Brownee7e38e2015-02-09 23:39:45 -05002933 pkg_cstate_limits = snb_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002934 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002935 break;
Len Brown869ce692016-06-16 23:22:37 -04002936 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 */
Len Brownee7e38e2015-02-09 23:39:45 -05002948 pkg_cstate_limits = hsw_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002949 has_misc_feature_control = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002950 break;
Len Brownd8ebb442016-12-01 20:27:46 -05002951 case INTEL_FAM6_SKYLAKE_X: /* SKX */
2952 pkg_cstate_limits = skx_pkg_cstate_limits;
Len Brown33148d62017-01-21 01:26:16 -05002953 has_misc_feature_control = 1;
Len Brownd8ebb442016-12-01 20:27:46 -05002954 break;
Len Brown869ce692016-06-16 23:22:37 -04002955 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
Len Browncf4cbe52017-01-01 13:08:33 -05002956 no_MSR_MISC_PWR_MGMT = 1;
Len Brown869ce692016-06-16 23:22:37 -04002957 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brownee7e38e2015-02-09 23:39:45 -05002958 pkg_cstate_limits = slv_pkg_cstate_limits;
2959 break;
Len Brown869ce692016-06-16 23:22:37 -04002960 case INTEL_FAM6_ATOM_AIRMONT: /* AMT */
Len Brownee7e38e2015-02-09 23:39:45 -05002961 pkg_cstate_limits = amt_pkg_cstate_limits;
Len Browncf4cbe52017-01-01 13:08:33 -05002962 no_MSR_MISC_PWR_MGMT = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002963 break;
Len Brown869ce692016-06-16 23:22:37 -04002964 case INTEL_FAM6_XEON_PHI_KNL: /* PHI */
Len Brown005c82d2016-12-01 01:35:38 -05002965 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownee7e38e2015-02-09 23:39:45 -05002966 pkg_cstate_limits = phi_pkg_cstate_limits;
2967 break;
Len Brown869ce692016-06-16 23:22:37 -04002968 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05002969 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Brown869ce692016-06-16 23:22:37 -04002970 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Browne4085d52016-04-06 17:15:56 -04002971 pkg_cstate_limits = bxt_pkg_cstate_limits;
2972 break;
Len Brown103a8fe2010-10-22 23:53:03 -04002973 default:
2974 return 0;
2975 }
Len Brown1df2e552017-01-07 23:24:57 -05002976 get_msr(base_cpu, MSR_PKG_CST_CONFIG_CONTROL, &msr);
Len Browne9257f52015-04-01 21:02:57 -04002977 pkg_cstate_limit = pkg_cstate_limits[msr & 0xF];
Len Brownee7e38e2015-02-09 23:39:45 -05002978
Len Brownec0adc52015-11-12 02:42:31 -05002979 get_msr(base_cpu, MSR_PLATFORM_INFO, &msr);
Len Brown21ed5572015-10-19 22:37:40 -04002980 base_ratio = (msr >> 8) & 0xFF;
2981
2982 base_hz = base_ratio * bclk * 1000000;
2983 has_base_hz = 1;
Len Brownee7e38e2015-02-09 23:39:45 -05002984 return 1;
Len Brown103a8fe2010-10-22 23:53:03 -04002985}
Len Brown0f7887c2017-01-12 23:49:18 -05002986/*
Len Brown495c76542017-02-08 02:41:51 -05002987 * SLV client has support for unique MSRs:
Len Brown0f7887c2017-01-12 23:49:18 -05002988 *
2989 * MSR_CC6_DEMOTION_POLICY_CONFIG
2990 * MSR_MC6_DEMOTION_POLICY_CONFIG
2991 */
2992
2993int has_slv_msrs(unsigned int family, unsigned int model)
2994{
2995 if (!genuine_intel)
2996 return 0;
2997
2998 switch (model) {
2999 case INTEL_FAM6_ATOM_SILVERMONT1:
3000 case INTEL_FAM6_ATOM_MERRIFIELD:
3001 case INTEL_FAM6_ATOM_MOOREFIELD:
3002 return 1;
3003 }
3004 return 0;
3005}
Len Brown7170a372017-01-27 02:13:27 -05003006int is_dnv(unsigned int family, unsigned int model)
3007{
3008
3009 if (!genuine_intel)
3010 return 0;
3011
3012 switch (model) {
3013 case INTEL_FAM6_ATOM_DENVERTON:
3014 return 1;
3015 }
3016 return 0;
3017}
Len Brownade0eba2017-02-10 01:56:47 -05003018int is_bdx(unsigned int family, unsigned int model)
3019{
3020
3021 if (!genuine_intel)
3022 return 0;
3023
3024 switch (model) {
3025 case INTEL_FAM6_BROADWELL_X:
3026 case INTEL_FAM6_BROADWELL_XEON_D:
3027 return 1;
3028 }
3029 return 0;
3030}
Len Brown34c761972017-01-27 02:36:41 -05003031int is_skx(unsigned int family, unsigned int model)
3032{
3033
3034 if (!genuine_intel)
3035 return 0;
3036
3037 switch (model) {
3038 case INTEL_FAM6_SKYLAKE_X:
3039 return 1;
3040 }
3041 return 0;
3042}
Len Brown0f7887c2017-01-12 23:49:18 -05003043
Len Brown31e07522017-01-31 23:07:49 -05003044int has_turbo_ratio_limit(unsigned int family, unsigned int model)
Len Brownd7899442015-01-23 00:12:33 -05003045{
Len Brown0f7887c2017-01-12 23:49:18 -05003046 if (has_slv_msrs(family, model))
3047 return 0;
3048
Len Brownd7899442015-01-23 00:12:33 -05003049 switch (model) {
3050 /* Nehalem compatible, but do not include turbo-ratio limit support */
Len Brown869ce692016-06-16 23:22:37 -04003051 case INTEL_FAM6_NEHALEM_EX: /* Nehalem-EX Xeon - Beckton */
3052 case INTEL_FAM6_WESTMERE_EX: /* Westmere-EX Xeon - Eagleton */
3053 case INTEL_FAM6_XEON_PHI_KNL: /* PHI - Knights Landing (different MSR definition) */
Len Brown005c82d2016-12-01 01:35:38 -05003054 case INTEL_FAM6_XEON_PHI_KNM:
Len Brownd7899442015-01-23 00:12:33 -05003055 return 0;
3056 default:
3057 return 1;
3058 }
3059}
Len Brown0f7887c2017-01-12 23:49:18 -05003060int has_atom_turbo_ratio_limit(unsigned int family, unsigned int model)
3061{
3062 if (has_slv_msrs(family, model))
3063 return 1;
3064
3065 return 0;
3066}
Len Brown6574a5d2012-09-21 00:01:31 -04003067int has_ivt_turbo_ratio_limit(unsigned int family, unsigned int model)
3068{
3069 if (!genuine_intel)
3070 return 0;
3071
3072 if (family != 6)
3073 return 0;
3074
3075 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003076 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
3077 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brown6574a5d2012-09-21 00:01:31 -04003078 return 1;
3079 default:
3080 return 0;
3081 }
3082}
Len Brownfcd17212015-03-23 20:29:09 -04003083int has_hsw_turbo_ratio_limit(unsigned int family, unsigned int model)
3084{
3085 if (!genuine_intel)
3086 return 0;
3087
3088 if (family != 6)
3089 return 0;
3090
3091 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003092 case INTEL_FAM6_HASWELL_X: /* HSW Xeon */
Len Brownfcd17212015-03-23 20:29:09 -04003093 return 1;
3094 default:
3095 return 0;
3096 }
3097}
3098
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003099int has_knl_turbo_ratio_limit(unsigned int family, unsigned int model)
3100{
3101 if (!genuine_intel)
3102 return 0;
3103
3104 if (family != 6)
3105 return 0;
3106
3107 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003108 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05003109 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003110 return 1;
3111 default:
3112 return 0;
3113 }
3114}
Len Brown31e07522017-01-31 23:07:49 -05003115int has_glm_turbo_ratio_limit(unsigned int family, unsigned int model)
3116{
3117 if (!genuine_intel)
3118 return 0;
3119
3120 if (family != 6)
3121 return 0;
3122
3123 switch (model) {
3124 case INTEL_FAM6_ATOM_GOLDMONT:
3125 case INTEL_FAM6_SKYLAKE_X:
3126 return 1;
3127 default:
3128 return 0;
3129 }
3130}
Len Brown6fb31432015-06-17 16:23:45 -04003131int has_config_tdp(unsigned int family, unsigned int model)
3132{
3133 if (!genuine_intel)
3134 return 0;
3135
3136 if (family != 6)
3137 return 0;
3138
3139 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003140 case INTEL_FAM6_IVYBRIDGE: /* IVB */
3141 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3142 case INTEL_FAM6_HASWELL_X: /* HSX */
3143 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3144 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3145 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3146 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
3147 case INTEL_FAM6_BROADWELL_X: /* BDX */
3148 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3149 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3150 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3151 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3152 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3153 case INTEL_FAM6_SKYLAKE_X: /* SKX */
Len Brown6fb31432015-06-17 16:23:45 -04003154
Len Brown869ce692016-06-16 23:22:37 -04003155 case INTEL_FAM6_XEON_PHI_KNL: /* Knights Landing */
Len Brown005c82d2016-12-01 01:35:38 -05003156 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown6fb31432015-06-17 16:23:45 -04003157 return 1;
3158 default:
3159 return 0;
3160 }
3161}
3162
Len Brownfcd17212015-03-23 20:29:09 -04003163static void
Colin Ian King1b693172016-03-02 13:50:25 +00003164dump_cstate_pstate_config_info(unsigned int family, unsigned int model)
Len Brownfcd17212015-03-23 20:29:09 -04003165{
3166 if (!do_nhm_platform_info)
3167 return;
3168
3169 dump_nhm_platform_info();
3170
3171 if (has_hsw_turbo_ratio_limit(family, model))
3172 dump_hsw_turbo_ratio_limits();
3173
3174 if (has_ivt_turbo_ratio_limit(family, model))
3175 dump_ivt_turbo_ratio_limits();
3176
Len Brown31e07522017-01-31 23:07:49 -05003177 if (has_turbo_ratio_limit(family, model))
3178 dump_turbo_ratio_limits(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04003179
Len Brown0f7887c2017-01-12 23:49:18 -05003180 if (has_atom_turbo_ratio_limit(family, model))
3181 dump_atom_turbo_ratio_limits();
3182
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07003183 if (has_knl_turbo_ratio_limit(family, model))
3184 dump_knl_turbo_ratio_limits();
3185
Len Brown6fb31432015-06-17 16:23:45 -04003186 if (has_config_tdp(family, model))
3187 dump_config_tdp();
3188
Len Brownfcd17212015-03-23 20:29:09 -04003189 dump_nhm_cst_cfg();
3190}
3191
Len Brown41618e62017-02-09 18:25:22 -05003192static void
3193dump_sysfs_cstate_config(void)
3194{
3195 char path[64];
3196 char name_buf[16];
3197 char desc[64];
3198 FILE *input;
3199 int state;
3200 char *sp;
3201
3202 if (!DO_BIC(BIC_sysfs))
3203 return;
3204
3205 for (state = 0; state < 10; ++state) {
3206
3207 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
3208 base_cpu, state);
3209 input = fopen(path, "r");
3210 if (input == NULL)
3211 continue;
3212 fgets(name_buf, sizeof(name_buf), input);
3213
3214 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
3215 sp = strchr(name_buf, '-');
3216 if (!sp)
3217 sp = strchrnul(name_buf, '\n');
3218 *sp = '\0';
3219
3220 fclose(input);
3221
3222 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/desc",
3223 base_cpu, state);
3224 input = fopen(path, "r");
3225 if (input == NULL)
3226 continue;
3227 fgets(desc, sizeof(desc), input);
3228
3229 fprintf(outf, "cpu%d: %s: %s", base_cpu, name_buf, desc);
3230 fclose(input);
3231 }
3232}
Len Brown7293fcc2017-02-22 00:11:12 -05003233static void
3234dump_sysfs_pstate_config(void)
3235{
3236 char path[64];
3237 char driver_buf[64];
3238 char governor_buf[64];
3239 FILE *input;
3240 int turbo;
3241
3242 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_driver",
3243 base_cpu);
3244 input = fopen(path, "r");
3245 if (input == NULL) {
3246 fprintf(stderr, "NSFOD %s\n", path);
3247 return;
3248 }
3249 fgets(driver_buf, sizeof(driver_buf), input);
3250 fclose(input);
3251
3252 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_governor",
3253 base_cpu);
3254 input = fopen(path, "r");
3255 if (input == NULL) {
3256 fprintf(stderr, "NSFOD %s\n", path);
3257 return;
3258 }
3259 fgets(governor_buf, sizeof(governor_buf), input);
3260 fclose(input);
3261
3262 fprintf(outf, "cpu%d: cpufreq driver: %s", base_cpu, driver_buf);
3263 fprintf(outf, "cpu%d: cpufreq governor: %s", base_cpu, governor_buf);
3264
3265 sprintf(path, "/sys/devices/system/cpu/cpufreq/boost");
3266 input = fopen(path, "r");
3267 if (input != NULL) {
3268 fscanf(input, "%d", &turbo);
3269 fprintf(outf, "cpufreq boost: %d\n", turbo);
3270 fclose(input);
3271 }
3272
3273 sprintf(path, "/sys/devices/system/cpu/intel_pstate/no_turbo");
3274 input = fopen(path, "r");
3275 if (input != NULL) {
3276 fscanf(input, "%d", &turbo);
3277 fprintf(outf, "cpufreq intel_pstate no_turbo: %d\n", turbo);
3278 fclose(input);
3279 }
3280}
Len Brown41618e62017-02-09 18:25:22 -05003281
Len Brown6574a5d2012-09-21 00:01:31 -04003282
Len Brown889facb2012-11-08 00:48:57 -05003283/*
3284 * print_epb()
3285 * Decode the ENERGY_PERF_BIAS MSR
3286 */
3287int print_epb(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3288{
3289 unsigned long long msr;
3290 char *epb_string;
3291 int cpu;
3292
3293 if (!has_epb)
3294 return 0;
3295
3296 cpu = t->cpu_id;
3297
3298 /* EPB is per-package */
3299 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3300 return 0;
3301
3302 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003303 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003304 return -1;
3305 }
3306
3307 if (get_msr(cpu, MSR_IA32_ENERGY_PERF_BIAS, &msr))
3308 return 0;
3309
Len Browne9be7dd2015-05-26 12:19:37 -04003310 switch (msr & 0xF) {
Len Brown889facb2012-11-08 00:48:57 -05003311 case ENERGY_PERF_BIAS_PERFORMANCE:
3312 epb_string = "performance";
3313 break;
3314 case ENERGY_PERF_BIAS_NORMAL:
3315 epb_string = "balanced";
3316 break;
3317 case ENERGY_PERF_BIAS_POWERSAVE:
3318 epb_string = "powersave";
3319 break;
3320 default:
3321 epb_string = "custom";
3322 break;
3323 }
Len Brownb7d8c142016-02-13 23:36:17 -05003324 fprintf(outf, "cpu%d: MSR_IA32_ENERGY_PERF_BIAS: 0x%08llx (%s)\n", cpu, msr, epb_string);
Len Brown889facb2012-11-08 00:48:57 -05003325
3326 return 0;
3327}
Len Brown7f5c2582015-12-01 01:36:39 -05003328/*
3329 * print_hwp()
3330 * Decode the MSR_HWP_CAPABILITIES
3331 */
3332int print_hwp(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3333{
3334 unsigned long long msr;
3335 int cpu;
3336
3337 if (!has_hwp)
3338 return 0;
3339
3340 cpu = t->cpu_id;
3341
3342 /* MSR_HWP_CAPABILITIES is per-package */
3343 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3344 return 0;
3345
3346 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003347 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown7f5c2582015-12-01 01:36:39 -05003348 return -1;
3349 }
3350
3351 if (get_msr(cpu, MSR_PM_ENABLE, &msr))
3352 return 0;
3353
Len Brownb7d8c142016-02-13 23:36:17 -05003354 fprintf(outf, "cpu%d: MSR_PM_ENABLE: 0x%08llx (%sHWP)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003355 cpu, msr, (msr & (1 << 0)) ? "" : "No-");
3356
3357 /* MSR_PM_ENABLE[1] == 1 if HWP is enabled and MSRs visible */
3358 if ((msr & (1 << 0)) == 0)
3359 return 0;
3360
3361 if (get_msr(cpu, MSR_HWP_CAPABILITIES, &msr))
3362 return 0;
3363
Len Brownb7d8c142016-02-13 23:36:17 -05003364 fprintf(outf, "cpu%d: MSR_HWP_CAPABILITIES: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003365 "(high %d guar %d eff %d low %d)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003366 cpu, msr,
3367 (unsigned int)HWP_HIGHEST_PERF(msr),
3368 (unsigned int)HWP_GUARANTEED_PERF(msr),
3369 (unsigned int)HWP_MOSTEFFICIENT_PERF(msr),
3370 (unsigned int)HWP_LOWEST_PERF(msr));
3371
3372 if (get_msr(cpu, MSR_HWP_REQUEST, &msr))
3373 return 0;
3374
Len Brownb7d8c142016-02-13 23:36:17 -05003375 fprintf(outf, "cpu%d: MSR_HWP_REQUEST: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003376 "(min %d max %d des %d epp 0x%x window 0x%x pkg 0x%x)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003377 cpu, msr,
3378 (unsigned int)(((msr) >> 0) & 0xff),
3379 (unsigned int)(((msr) >> 8) & 0xff),
3380 (unsigned int)(((msr) >> 16) & 0xff),
3381 (unsigned int)(((msr) >> 24) & 0xff),
3382 (unsigned int)(((msr) >> 32) & 0xff3),
3383 (unsigned int)(((msr) >> 42) & 0x1));
3384
3385 if (has_hwp_pkg) {
3386 if (get_msr(cpu, MSR_HWP_REQUEST_PKG, &msr))
3387 return 0;
3388
Len Brownb7d8c142016-02-13 23:36:17 -05003389 fprintf(outf, "cpu%d: MSR_HWP_REQUEST_PKG: 0x%08llx "
Len Brown6dbd25a2017-03-04 18:18:28 -05003390 "(min %d max %d des %d epp 0x%x window 0x%x)\n",
Len Brown7f5c2582015-12-01 01:36:39 -05003391 cpu, msr,
3392 (unsigned int)(((msr) >> 0) & 0xff),
3393 (unsigned int)(((msr) >> 8) & 0xff),
3394 (unsigned int)(((msr) >> 16) & 0xff),
3395 (unsigned int)(((msr) >> 24) & 0xff),
3396 (unsigned int)(((msr) >> 32) & 0xff3));
3397 }
3398 if (has_hwp_notify) {
3399 if (get_msr(cpu, MSR_HWP_INTERRUPT, &msr))
3400 return 0;
3401
Len Brownb7d8c142016-02-13 23:36:17 -05003402 fprintf(outf, "cpu%d: MSR_HWP_INTERRUPT: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003403 "(%s_Guaranteed_Perf_Change, %s_Excursion_Min)\n",
3404 cpu, msr,
3405 ((msr) & 0x1) ? "EN" : "Dis",
3406 ((msr) & 0x2) ? "EN" : "Dis");
3407 }
3408 if (get_msr(cpu, MSR_HWP_STATUS, &msr))
3409 return 0;
3410
Len Brownb7d8c142016-02-13 23:36:17 -05003411 fprintf(outf, "cpu%d: MSR_HWP_STATUS: 0x%08llx "
Len Brown7f5c2582015-12-01 01:36:39 -05003412 "(%sGuaranteed_Perf_Change, %sExcursion_Min)\n",
3413 cpu, msr,
3414 ((msr) & 0x1) ? "" : "No-",
3415 ((msr) & 0x2) ? "" : "No-");
Len Brown889facb2012-11-08 00:48:57 -05003416
3417 return 0;
3418}
3419
Len Brown3a9a9412014-08-15 02:39:52 -04003420/*
3421 * print_perf_limit()
3422 */
3423int print_perf_limit(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3424{
3425 unsigned long long msr;
3426 int cpu;
3427
3428 cpu = t->cpu_id;
3429
3430 /* per-package */
3431 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3432 return 0;
3433
3434 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003435 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown3a9a9412014-08-15 02:39:52 -04003436 return -1;
3437 }
3438
3439 if (do_core_perf_limit_reasons) {
3440 get_msr(cpu, MSR_CORE_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003441 fprintf(outf, "cpu%d: MSR_CORE_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3442 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s%s%s%s%s%s%s)",
Len Browne33cbe82015-03-13 16:30:57 -04003443 (msr & 1 << 15) ? "bit15, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003444 (msr & 1 << 14) ? "bit14, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003445 (msr & 1 << 13) ? "Transitions, " : "",
3446 (msr & 1 << 12) ? "MultiCoreTurbo, " : "",
3447 (msr & 1 << 11) ? "PkgPwrL2, " : "",
3448 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3449 (msr & 1 << 9) ? "CorePwr, " : "",
3450 (msr & 1 << 8) ? "Amps, " : "",
3451 (msr & 1 << 6) ? "VR-Therm, " : "",
3452 (msr & 1 << 5) ? "Auto-HWP, " : "",
3453 (msr & 1 << 4) ? "Graphics, " : "",
3454 (msr & 1 << 2) ? "bit2, " : "",
3455 (msr & 1 << 1) ? "ThermStatus, " : "",
3456 (msr & 1 << 0) ? "PROCHOT, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003457 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 -04003458 (msr & 1 << 31) ? "bit31, " : "",
Len Brown3a9a9412014-08-15 02:39:52 -04003459 (msr & 1 << 30) ? "bit30, " : "",
Len Browne33cbe82015-03-13 16:30:57 -04003460 (msr & 1 << 29) ? "Transitions, " : "",
3461 (msr & 1 << 28) ? "MultiCoreTurbo, " : "",
3462 (msr & 1 << 27) ? "PkgPwrL2, " : "",
3463 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3464 (msr & 1 << 25) ? "CorePwr, " : "",
3465 (msr & 1 << 24) ? "Amps, " : "",
3466 (msr & 1 << 22) ? "VR-Therm, " : "",
3467 (msr & 1 << 21) ? "Auto-HWP, " : "",
3468 (msr & 1 << 20) ? "Graphics, " : "",
3469 (msr & 1 << 18) ? "bit18, " : "",
3470 (msr & 1 << 17) ? "ThermStatus, " : "",
3471 (msr & 1 << 16) ? "PROCHOT, " : "");
Len Brown3a9a9412014-08-15 02:39:52 -04003472
3473 }
3474 if (do_gfx_perf_limit_reasons) {
3475 get_msr(cpu, MSR_GFX_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003476 fprintf(outf, "cpu%d: MSR_GFX_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3477 fprintf(outf, " (Active: %s%s%s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003478 (msr & 1 << 0) ? "PROCHOT, " : "",
3479 (msr & 1 << 1) ? "ThermStatus, " : "",
3480 (msr & 1 << 4) ? "Graphics, " : "",
3481 (msr & 1 << 6) ? "VR-Therm, " : "",
3482 (msr & 1 << 8) ? "Amps, " : "",
3483 (msr & 1 << 9) ? "GFXPwr, " : "",
3484 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3485 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003486 fprintf(outf, " (Logged: %s%s%s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003487 (msr & 1 << 16) ? "PROCHOT, " : "",
3488 (msr & 1 << 17) ? "ThermStatus, " : "",
3489 (msr & 1 << 20) ? "Graphics, " : "",
3490 (msr & 1 << 22) ? "VR-Therm, " : "",
3491 (msr & 1 << 24) ? "Amps, " : "",
3492 (msr & 1 << 25) ? "GFXPwr, " : "",
3493 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3494 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3495 }
3496 if (do_ring_perf_limit_reasons) {
3497 get_msr(cpu, MSR_RING_PERF_LIMIT_REASONS, &msr);
Len Brownb7d8c142016-02-13 23:36:17 -05003498 fprintf(outf, "cpu%d: MSR_RING_PERF_LIMIT_REASONS, 0x%08llx", cpu, msr);
3499 fprintf(outf, " (Active: %s%s%s%s%s%s)",
Len Brown3a9a9412014-08-15 02:39:52 -04003500 (msr & 1 << 0) ? "PROCHOT, " : "",
3501 (msr & 1 << 1) ? "ThermStatus, " : "",
3502 (msr & 1 << 6) ? "VR-Therm, " : "",
3503 (msr & 1 << 8) ? "Amps, " : "",
3504 (msr & 1 << 10) ? "PkgPwrL1, " : "",
3505 (msr & 1 << 11) ? "PkgPwrL2, " : "");
Len Brownb7d8c142016-02-13 23:36:17 -05003506 fprintf(outf, " (Logged: %s%s%s%s%s%s)\n",
Len Brown3a9a9412014-08-15 02:39:52 -04003507 (msr & 1 << 16) ? "PROCHOT, " : "",
3508 (msr & 1 << 17) ? "ThermStatus, " : "",
3509 (msr & 1 << 22) ? "VR-Therm, " : "",
3510 (msr & 1 << 24) ? "Amps, " : "",
3511 (msr & 1 << 26) ? "PkgPwrL1, " : "",
3512 (msr & 1 << 27) ? "PkgPwrL2, " : "");
3513 }
3514 return 0;
3515}
3516
Len Brown889facb2012-11-08 00:48:57 -05003517#define RAPL_POWER_GRANULARITY 0x7FFF /* 15 bit power granularity */
3518#define RAPL_TIME_GRANULARITY 0x3F /* 6 bit time granularity */
3519
Colin Ian King1b693172016-03-02 13:50:25 +00003520double get_tdp(unsigned int model)
Len Brown144b44b2013-11-09 00:30:16 -05003521{
3522 unsigned long long msr;
3523
3524 if (do_rapl & RAPL_PKG_POWER_INFO)
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003525 if (!get_msr(base_cpu, MSR_PKG_POWER_INFO, &msr))
Len Brown144b44b2013-11-09 00:30:16 -05003526 return ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units;
3527
3528 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003529 case INTEL_FAM6_ATOM_SILVERMONT1:
3530 case INTEL_FAM6_ATOM_SILVERMONT2:
Len Brown144b44b2013-11-09 00:30:16 -05003531 return 30.0;
3532 default:
3533 return 135.0;
3534 }
3535}
3536
Andrey Semin40ee8e32014-12-05 00:07:00 -05003537/*
3538 * rapl_dram_energy_units_probe()
3539 * Energy units are either hard-coded, or come from RAPL Energy Unit MSR.
3540 */
3541static double
3542rapl_dram_energy_units_probe(int model, double rapl_energy_units)
3543{
3544 /* only called for genuine_intel, family 6 */
3545
3546 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003547 case INTEL_FAM6_HASWELL_X: /* HSX */
3548 case INTEL_FAM6_BROADWELL_X: /* BDX */
3549 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3550 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003551 case INTEL_FAM6_XEON_PHI_KNM:
Andrey Semin40ee8e32014-12-05 00:07:00 -05003552 return (rapl_dram_energy_units = 15.3 / 1000000);
3553 default:
3554 return (rapl_energy_units);
3555 }
3556}
3557
Len Brown144b44b2013-11-09 00:30:16 -05003558
Len Brown889facb2012-11-08 00:48:57 -05003559/*
3560 * rapl_probe()
3561 *
Len Brown144b44b2013-11-09 00:30:16 -05003562 * sets do_rapl, rapl_power_units, rapl_energy_units, rapl_time_units
Len Brown889facb2012-11-08 00:48:57 -05003563 */
3564void rapl_probe(unsigned int family, unsigned int model)
3565{
3566 unsigned long long msr;
Len Brown144b44b2013-11-09 00:30:16 -05003567 unsigned int time_unit;
Len Brown889facb2012-11-08 00:48:57 -05003568 double tdp;
3569
3570 if (!genuine_intel)
3571 return;
3572
3573 if (family != 6)
3574 return;
3575
3576 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003577 case INTEL_FAM6_SANDYBRIDGE:
3578 case INTEL_FAM6_IVYBRIDGE:
3579 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3580 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3581 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3582 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3583 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
Len Brown144b44b2013-11-09 00:30:16 -05003584 do_rapl = RAPL_PKG | RAPL_CORES | RAPL_CORE_POLICY | RAPL_GFX | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003585 if (rapl_joules) {
3586 BIC_PRESENT(BIC_Pkg_J);
3587 BIC_PRESENT(BIC_Cor_J);
3588 BIC_PRESENT(BIC_GFX_J);
3589 } else {
3590 BIC_PRESENT(BIC_PkgWatt);
3591 BIC_PRESENT(BIC_CorWatt);
3592 BIC_PRESENT(BIC_GFXWatt);
3593 }
Len Brown889facb2012-11-08 00:48:57 -05003594 break;
Len Brown869ce692016-06-16 23:22:37 -04003595 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003596 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne4085d52016-04-06 17:15:56 -04003597 do_rapl = RAPL_PKG | RAPL_PKG_POWER_INFO;
Len Brown812db3f2017-02-10 00:25:41 -05003598 if (rapl_joules)
3599 BIC_PRESENT(BIC_Pkg_J);
3600 else
3601 BIC_PRESENT(BIC_PkgWatt);
Len Browne4085d52016-04-06 17:15:56 -04003602 break;
Len Brown869ce692016-06-16 23:22:37 -04003603 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3604 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3605 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3606 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown81824922017-03-04 17:23:07 -05003607 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 -05003608 BIC_PRESENT(BIC_PKG__);
3609 BIC_PRESENT(BIC_RAM__);
3610 if (rapl_joules) {
3611 BIC_PRESENT(BIC_Pkg_J);
3612 BIC_PRESENT(BIC_Cor_J);
3613 BIC_PRESENT(BIC_RAM_J);
Len Brown81824922017-03-04 17:23:07 -05003614 BIC_PRESENT(BIC_GFX_J);
Len Brown812db3f2017-02-10 00:25:41 -05003615 } else {
3616 BIC_PRESENT(BIC_PkgWatt);
3617 BIC_PRESENT(BIC_CorWatt);
3618 BIC_PRESENT(BIC_RAMWatt);
Len Brown81824922017-03-04 17:23:07 -05003619 BIC_PRESENT(BIC_GFXWatt);
Len Brown812db3f2017-02-10 00:25:41 -05003620 }
Len Brown0b2bb692015-03-26 00:50:30 -04003621 break;
Len Brown869ce692016-06-16 23:22:37 -04003622 case INTEL_FAM6_HASWELL_X: /* HSX */
3623 case INTEL_FAM6_BROADWELL_X: /* BDX */
3624 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3625 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3626 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05003627 case INTEL_FAM6_XEON_PHI_KNM:
Len Brown0b2bb692015-03-26 00:50:30 -04003628 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 -05003629 BIC_PRESENT(BIC_PKG__);
3630 BIC_PRESENT(BIC_RAM__);
3631 if (rapl_joules) {
3632 BIC_PRESENT(BIC_Pkg_J);
3633 BIC_PRESENT(BIC_RAM_J);
3634 } else {
3635 BIC_PRESENT(BIC_PkgWatt);
3636 BIC_PRESENT(BIC_RAMWatt);
3637 }
Len Browne6f9bb32013-12-03 02:19:19 -05003638 break;
Len Brown869ce692016-06-16 23:22:37 -04003639 case INTEL_FAM6_SANDYBRIDGE_X:
3640 case INTEL_FAM6_IVYBRIDGE_X:
Len Brown0b2bb692015-03-26 00:50:30 -04003641 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 -05003642 BIC_PRESENT(BIC_PKG__);
3643 BIC_PRESENT(BIC_RAM__);
3644 if (rapl_joules) {
3645 BIC_PRESENT(BIC_Pkg_J);
3646 BIC_PRESENT(BIC_Cor_J);
3647 BIC_PRESENT(BIC_RAM_J);
3648 } else {
3649 BIC_PRESENT(BIC_PkgWatt);
3650 BIC_PRESENT(BIC_CorWatt);
3651 BIC_PRESENT(BIC_RAMWatt);
3652 }
Len Brown144b44b2013-11-09 00:30:16 -05003653 break;
Len Brown869ce692016-06-16 23:22:37 -04003654 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
3655 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Jacob Pan91484942016-06-16 09:48:20 -07003656 do_rapl = RAPL_PKG | RAPL_CORES;
Len Brown812db3f2017-02-10 00:25:41 -05003657 if (rapl_joules) {
3658 BIC_PRESENT(BIC_Pkg_J);
3659 BIC_PRESENT(BIC_Cor_J);
3660 } else {
3661 BIC_PRESENT(BIC_PkgWatt);
3662 BIC_PRESENT(BIC_CorWatt);
3663 }
Len Brown889facb2012-11-08 00:48:57 -05003664 break;
Len Brown869ce692016-06-16 23:22:37 -04003665 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Jacob Pan0f644902016-06-16 09:48:22 -07003666 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 -05003667 BIC_PRESENT(BIC_PKG__);
3668 BIC_PRESENT(BIC_RAM__);
3669 if (rapl_joules) {
3670 BIC_PRESENT(BIC_Pkg_J);
3671 BIC_PRESENT(BIC_Cor_J);
3672 BIC_PRESENT(BIC_RAM_J);
3673 } else {
3674 BIC_PRESENT(BIC_PkgWatt);
3675 BIC_PRESENT(BIC_CorWatt);
3676 BIC_PRESENT(BIC_RAMWatt);
3677 }
Jacob Pan0f644902016-06-16 09:48:22 -07003678 break;
Len Brown889facb2012-11-08 00:48:57 -05003679 default:
3680 return;
3681 }
3682
3683 /* units on package 0, verify later other packages match */
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04003684 if (get_msr(base_cpu, MSR_RAPL_POWER_UNIT, &msr))
Len Brown889facb2012-11-08 00:48:57 -05003685 return;
3686
3687 rapl_power_units = 1.0 / (1 << (msr & 0xF));
Len Brown869ce692016-06-16 23:22:37 -04003688 if (model == INTEL_FAM6_ATOM_SILVERMONT1)
Len Brown144b44b2013-11-09 00:30:16 -05003689 rapl_energy_units = 1.0 * (1 << (msr >> 8 & 0x1F)) / 1000000;
3690 else
3691 rapl_energy_units = 1.0 / (1 << (msr >> 8 & 0x1F));
Len Brown889facb2012-11-08 00:48:57 -05003692
Andrey Semin40ee8e32014-12-05 00:07:00 -05003693 rapl_dram_energy_units = rapl_dram_energy_units_probe(model, rapl_energy_units);
3694
Len Brown144b44b2013-11-09 00:30:16 -05003695 time_unit = msr >> 16 & 0xF;
3696 if (time_unit == 0)
3697 time_unit = 0xA;
Len Brown889facb2012-11-08 00:48:57 -05003698
Len Brown144b44b2013-11-09 00:30:16 -05003699 rapl_time_units = 1.0 / (1 << (time_unit));
3700
3701 tdp = get_tdp(model);
Len Brown889facb2012-11-08 00:48:57 -05003702
3703 rapl_joule_counter_range = 0xFFFFFFFF * rapl_energy_units / tdp;
Len Brown96e47152017-01-21 02:26:00 -05003704 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05003705 fprintf(outf, "RAPL: %.0f sec. Joule Counter Range, at %.0f Watts\n", rapl_joule_counter_range, tdp);
Len Brown889facb2012-11-08 00:48:57 -05003706
3707 return;
3708}
3709
Colin Ian King1b693172016-03-02 13:50:25 +00003710void perf_limit_reasons_probe(unsigned int family, unsigned int model)
Len Brown3a9a9412014-08-15 02:39:52 -04003711{
3712 if (!genuine_intel)
3713 return;
3714
3715 if (family != 6)
3716 return;
3717
3718 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003719 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3720 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3721 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
Len Brown3a9a9412014-08-15 02:39:52 -04003722 do_gfx_perf_limit_reasons = 1;
Len Brown869ce692016-06-16 23:22:37 -04003723 case INTEL_FAM6_HASWELL_X: /* HSX */
Len Brown3a9a9412014-08-15 02:39:52 -04003724 do_core_perf_limit_reasons = 1;
3725 do_ring_perf_limit_reasons = 1;
3726 default:
3727 return;
3728 }
3729}
3730
Artem Bityutskiyac980e12017-09-05 15:14:08 +03003731void automatic_cstate_conversion_probe(unsigned int family, unsigned int model)
3732{
3733 if (is_skx(family, model) || is_bdx(family, model))
3734 has_automatic_cstate_conversion = 1;
3735}
3736
Len Brown889facb2012-11-08 00:48:57 -05003737int print_thermal(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3738{
3739 unsigned long long msr;
Len Brownf4896fa52017-03-04 18:10:45 -05003740 unsigned int dts, dts2;
Len Brown889facb2012-11-08 00:48:57 -05003741 int cpu;
3742
3743 if (!(do_dts || do_ptm))
3744 return 0;
3745
3746 cpu = t->cpu_id;
3747
3748 /* DTS is per-core, no need to print for each thread */
Len Brown388e9c82016-12-22 23:57:55 -05003749 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE))
Len Brown889facb2012-11-08 00:48:57 -05003750 return 0;
3751
3752 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003753 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003754 return -1;
3755 }
3756
3757 if (do_ptm && (t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE)) {
3758 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_STATUS, &msr))
3759 return 0;
3760
3761 dts = (msr >> 16) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003762 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_STATUS: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003763 cpu, msr, tcc_activation_temp - dts);
3764
Len Brown889facb2012-11-08 00:48:57 -05003765 if (get_msr(cpu, MSR_IA32_PACKAGE_THERM_INTERRUPT, &msr))
3766 return 0;
3767
3768 dts = (msr >> 16) & 0x7F;
3769 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003770 fprintf(outf, "cpu%d: MSR_IA32_PACKAGE_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003771 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
Len Brown889facb2012-11-08 00:48:57 -05003772 }
3773
3774
Len Brownf4896fa52017-03-04 18:10:45 -05003775 if (do_dts && debug) {
Len Brown889facb2012-11-08 00:48:57 -05003776 unsigned int resolution;
3777
3778 if (get_msr(cpu, MSR_IA32_THERM_STATUS, &msr))
3779 return 0;
3780
3781 dts = (msr >> 16) & 0x7F;
3782 resolution = (msr >> 27) & 0xF;
Len Brownb7d8c142016-02-13 23:36:17 -05003783 fprintf(outf, "cpu%d: MSR_IA32_THERM_STATUS: 0x%08llx (%d C +/- %d)\n",
Len Brown889facb2012-11-08 00:48:57 -05003784 cpu, msr, tcc_activation_temp - dts, resolution);
3785
Len Brown889facb2012-11-08 00:48:57 -05003786 if (get_msr(cpu, MSR_IA32_THERM_INTERRUPT, &msr))
3787 return 0;
3788
3789 dts = (msr >> 16) & 0x7F;
3790 dts2 = (msr >> 8) & 0x7F;
Len Brownb7d8c142016-02-13 23:36:17 -05003791 fprintf(outf, "cpu%d: MSR_IA32_THERM_INTERRUPT: 0x%08llx (%d C, %d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05003792 cpu, msr, tcc_activation_temp - dts, tcc_activation_temp - dts2);
Len Brown889facb2012-11-08 00:48:57 -05003793 }
3794
3795 return 0;
3796}
Len Brown36229892016-02-26 20:51:02 -05003797
Len Brown889facb2012-11-08 00:48:57 -05003798void print_power_limit_msr(int cpu, unsigned long long msr, char *label)
3799{
Len Brownb7d8c142016-02-13 23:36:17 -05003800 fprintf(outf, "cpu%d: %s: %sabled (%f Watts, %f sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003801 cpu, label,
3802 ((msr >> 15) & 1) ? "EN" : "DIS",
3803 ((msr >> 0) & 0x7FFF) * rapl_power_units,
3804 (1.0 + (((msr >> 22) & 0x3)/4.0)) * (1 << ((msr >> 17) & 0x1F)) * rapl_time_units,
3805 (((msr >> 16) & 1) ? "EN" : "DIS"));
3806
3807 return;
3808}
3809
3810int print_rapl(struct thread_data *t, struct core_data *c, struct pkg_data *p)
3811{
3812 unsigned long long msr;
3813 int cpu;
Len Brown889facb2012-11-08 00:48:57 -05003814
3815 if (!do_rapl)
3816 return 0;
3817
3818 /* RAPL counters are per package, so print only for 1st thread/package */
3819 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
3820 return 0;
3821
3822 cpu = t->cpu_id;
3823 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05003824 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05003825 return -1;
3826 }
3827
3828 if (get_msr(cpu, MSR_RAPL_POWER_UNIT, &msr))
3829 return -1;
3830
Len Brown96e47152017-01-21 02:26:00 -05003831 fprintf(outf, "cpu%d: MSR_RAPL_POWER_UNIT: 0x%08llx (%f Watts, %f Joules, %f sec.)\n", cpu, msr,
3832 rapl_power_units, rapl_energy_units, rapl_time_units);
3833
Len Brown144b44b2013-11-09 00:30:16 -05003834 if (do_rapl & RAPL_PKG_POWER_INFO) {
3835
Len Brown889facb2012-11-08 00:48:57 -05003836 if (get_msr(cpu, MSR_PKG_POWER_INFO, &msr))
3837 return -5;
3838
3839
Len Brownb7d8c142016-02-13 23:36:17 -05003840 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 -05003841 cpu, msr,
3842 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3843 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3844 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3845 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
3846
Len Brown144b44b2013-11-09 00:30:16 -05003847 }
3848 if (do_rapl & RAPL_PKG) {
3849
Len Brown889facb2012-11-08 00:48:57 -05003850 if (get_msr(cpu, MSR_PKG_POWER_LIMIT, &msr))
3851 return -9;
3852
Len Brownb7d8c142016-02-13 23:36:17 -05003853 fprintf(outf, "cpu%d: MSR_PKG_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003854 cpu, msr, (msr >> 63) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003855
3856 print_power_limit_msr(cpu, msr, "PKG Limit #1");
Len Brownb7d8c142016-02-13 23:36:17 -05003857 fprintf(outf, "cpu%d: PKG Limit #2: %sabled (%f Watts, %f* sec, clamp %sabled)\n",
Len Brown889facb2012-11-08 00:48:57 -05003858 cpu,
3859 ((msr >> 47) & 1) ? "EN" : "DIS",
3860 ((msr >> 32) & 0x7FFF) * rapl_power_units,
3861 (1.0 + (((msr >> 54) & 0x3)/4.0)) * (1 << ((msr >> 49) & 0x1F)) * rapl_time_units,
3862 ((msr >> 48) & 1) ? "EN" : "DIS");
3863 }
3864
Len Brown0b2bb692015-03-26 00:50:30 -04003865 if (do_rapl & RAPL_DRAM_POWER_INFO) {
Len Brown889facb2012-11-08 00:48:57 -05003866 if (get_msr(cpu, MSR_DRAM_POWER_INFO, &msr))
3867 return -6;
3868
Len Brownb7d8c142016-02-13 23:36:17 -05003869 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 -05003870 cpu, msr,
3871 ((msr >> 0) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3872 ((msr >> 16) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3873 ((msr >> 32) & RAPL_POWER_GRANULARITY) * rapl_power_units,
3874 ((msr >> 48) & RAPL_TIME_GRANULARITY) * rapl_time_units);
Len Brown0b2bb692015-03-26 00:50:30 -04003875 }
3876 if (do_rapl & RAPL_DRAM) {
Len Brown889facb2012-11-08 00:48:57 -05003877 if (get_msr(cpu, MSR_DRAM_POWER_LIMIT, &msr))
3878 return -9;
Len Brownb7d8c142016-02-13 23:36:17 -05003879 fprintf(outf, "cpu%d: MSR_DRAM_POWER_LIMIT: 0x%08llx (%slocked)\n",
Len Brown96e47152017-01-21 02:26:00 -05003880 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
Len Brown889facb2012-11-08 00:48:57 -05003881
3882 print_power_limit_msr(cpu, msr, "DRAM Limit");
3883 }
Len Brown144b44b2013-11-09 00:30:16 -05003884 if (do_rapl & RAPL_CORE_POLICY) {
Len Brown96e47152017-01-21 02:26:00 -05003885 if (get_msr(cpu, MSR_PP0_POLICY, &msr))
3886 return -7;
Len Brown889facb2012-11-08 00:48:57 -05003887
Len Brown96e47152017-01-21 02:26:00 -05003888 fprintf(outf, "cpu%d: MSR_PP0_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown144b44b2013-11-09 00:30:16 -05003889 }
Jacob Pan91484942016-06-16 09:48:20 -07003890 if (do_rapl & RAPL_CORES_POWER_LIMIT) {
Len Brown96e47152017-01-21 02:26:00 -05003891 if (get_msr(cpu, MSR_PP0_POWER_LIMIT, &msr))
3892 return -9;
3893 fprintf(outf, "cpu%d: MSR_PP0_POWER_LIMIT: 0x%08llx (%slocked)\n",
3894 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3895 print_power_limit_msr(cpu, msr, "Cores Limit");
Len Brown889facb2012-11-08 00:48:57 -05003896 }
3897 if (do_rapl & RAPL_GFX) {
Len Brown96e47152017-01-21 02:26:00 -05003898 if (get_msr(cpu, MSR_PP1_POLICY, &msr))
3899 return -8;
Len Brown889facb2012-11-08 00:48:57 -05003900
Len Brown96e47152017-01-21 02:26:00 -05003901 fprintf(outf, "cpu%d: MSR_PP1_POLICY: %lld\n", cpu, msr & 0xF);
Len Brown889facb2012-11-08 00:48:57 -05003902
Len Brown96e47152017-01-21 02:26:00 -05003903 if (get_msr(cpu, MSR_PP1_POWER_LIMIT, &msr))
3904 return -9;
3905 fprintf(outf, "cpu%d: MSR_PP1_POWER_LIMIT: 0x%08llx (%slocked)\n",
3906 cpu, msr, (msr >> 31) & 1 ? "" : "UN");
3907 print_power_limit_msr(cpu, msr, "GFX Limit");
Len Brown889facb2012-11-08 00:48:57 -05003908 }
3909 return 0;
3910}
3911
Len Brownd7899442015-01-23 00:12:33 -05003912/*
3913 * SNB adds support for additional MSRs:
3914 *
3915 * MSR_PKG_C7_RESIDENCY 0x000003fa
3916 * MSR_CORE_C7_RESIDENCY 0x000003fe
3917 * MSR_PKG_C2_RESIDENCY 0x0000060d
3918 */
Len Brown103a8fe2010-10-22 23:53:03 -04003919
Len Brownd7899442015-01-23 00:12:33 -05003920int has_snb_msrs(unsigned int family, unsigned int model)
Len Brown103a8fe2010-10-22 23:53:03 -04003921{
3922 if (!genuine_intel)
3923 return 0;
3924
3925 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003926 case INTEL_FAM6_SANDYBRIDGE:
3927 case INTEL_FAM6_SANDYBRIDGE_X:
3928 case INTEL_FAM6_IVYBRIDGE: /* IVB */
3929 case INTEL_FAM6_IVYBRIDGE_X: /* IVB Xeon */
3930 case INTEL_FAM6_HASWELL_CORE: /* HSW */
3931 case INTEL_FAM6_HASWELL_X: /* HSW */
3932 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3933 case INTEL_FAM6_HASWELL_GT3E: /* HSW */
3934 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3935 case INTEL_FAM6_BROADWELL_GT3E: /* BDW */
3936 case INTEL_FAM6_BROADWELL_X: /* BDX */
3937 case INTEL_FAM6_BROADWELL_XEON_D: /* BDX-DE */
3938 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3939 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3940 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3941 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3942 case INTEL_FAM6_SKYLAKE_X: /* SKX */
3943 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003944 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Xiaolong Wang5bbac262016-09-30 17:53:40 +08003945 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brown103a8fe2010-10-22 23:53:03 -04003946 return 1;
3947 }
3948 return 0;
3949}
3950
Len Brownd7899442015-01-23 00:12:33 -05003951/*
3952 * HSW adds support for additional MSRs:
3953 *
Len Brown5a634262016-04-06 17:15:55 -04003954 * MSR_PKG_C8_RESIDENCY 0x00000630
3955 * MSR_PKG_C9_RESIDENCY 0x00000631
3956 * MSR_PKG_C10_RESIDENCY 0x00000632
3957 *
3958 * MSR_PKGC8_IRTL 0x00000633
3959 * MSR_PKGC9_IRTL 0x00000634
3960 * MSR_PKGC10_IRTL 0x00000635
3961 *
Len Brownd7899442015-01-23 00:12:33 -05003962 */
3963int has_hsw_msrs(unsigned int family, unsigned int model)
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003964{
3965 if (!genuine_intel)
3966 return 0;
3967
3968 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003969 case INTEL_FAM6_HASWELL_ULT: /* HSW */
3970 case INTEL_FAM6_BROADWELL_CORE: /* BDW */
3971 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3972 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3973 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3974 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
3975 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05003976 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Kristen Carlson Accardica587102012-11-21 05:22:43 -08003977 return 1;
3978 }
3979 return 0;
3980}
3981
Len Brown0b2bb692015-03-26 00:50:30 -04003982/*
3983 * SKL adds support for additional MSRS:
3984 *
3985 * MSR_PKG_WEIGHTED_CORE_C0_RES 0x00000658
3986 * MSR_PKG_ANY_CORE_C0_RES 0x00000659
3987 * MSR_PKG_ANY_GFXE_C0_RES 0x0000065A
3988 * MSR_PKG_BOTH_CORE_GFXE_C0_RES 0x0000065B
3989 */
3990int has_skl_msrs(unsigned int family, unsigned int model)
3991{
3992 if (!genuine_intel)
3993 return 0;
3994
3995 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04003996 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
3997 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
3998 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
3999 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Brown0b2bb692015-03-26 00:50:30 -04004000 return 1;
4001 }
4002 return 0;
4003}
4004
Len Brown144b44b2013-11-09 00:30:16 -05004005int is_slm(unsigned int family, unsigned int model)
4006{
4007 if (!genuine_intel)
4008 return 0;
4009 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04004010 case INTEL_FAM6_ATOM_SILVERMONT1: /* BYT */
4011 case INTEL_FAM6_ATOM_SILVERMONT2: /* AVN */
Len Brown144b44b2013-11-09 00:30:16 -05004012 return 1;
4013 }
4014 return 0;
4015}
4016
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07004017int is_knl(unsigned int family, unsigned int model)
4018{
4019 if (!genuine_intel)
4020 return 0;
4021 switch (model) {
Len Brown869ce692016-06-16 23:22:37 -04004022 case INTEL_FAM6_XEON_PHI_KNL: /* KNL */
Len Brown005c82d2016-12-01 01:35:38 -05004023 case INTEL_FAM6_XEON_PHI_KNM:
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07004024 return 1;
4025 }
4026 return 0;
4027}
4028
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02004029unsigned int get_aperf_mperf_multiplier(unsigned int family, unsigned int model)
4030{
4031 if (is_knl(family, model))
4032 return 1024;
4033 return 1;
4034}
4035
Len Brown144b44b2013-11-09 00:30:16 -05004036#define SLM_BCLK_FREQS 5
4037double slm_freq_table[SLM_BCLK_FREQS] = { 83.3, 100.0, 133.3, 116.7, 80.0};
4038
4039double slm_bclk(void)
4040{
4041 unsigned long long msr = 3;
4042 unsigned int i;
4043 double freq;
4044
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004045 if (get_msr(base_cpu, MSR_FSB_FREQ, &msr))
Len Brownb7d8c142016-02-13 23:36:17 -05004046 fprintf(outf, "SLM BCLK: unknown\n");
Len Brown144b44b2013-11-09 00:30:16 -05004047
4048 i = msr & 0xf;
4049 if (i >= SLM_BCLK_FREQS) {
Len Brownb7d8c142016-02-13 23:36:17 -05004050 fprintf(outf, "SLM BCLK[%d] invalid\n", i);
Colin Ian King0a91e552016-04-25 13:03:15 +01004051 i = 3;
Len Brown144b44b2013-11-09 00:30:16 -05004052 }
4053 freq = slm_freq_table[i];
4054
Len Brown96e47152017-01-21 02:26:00 -05004055 if (!quiet)
Len Brown8f6196c2017-01-07 22:40:23 -05004056 fprintf(outf, "SLM BCLK: %.1f Mhz\n", freq);
Len Brown144b44b2013-11-09 00:30:16 -05004057
4058 return freq;
4059}
4060
Len Brown103a8fe2010-10-22 23:53:03 -04004061double discover_bclk(unsigned int family, unsigned int model)
4062{
Chrzaniuk, Hubert121b48b2016-02-10 16:35:17 +01004063 if (has_snb_msrs(family, model) || is_knl(family, model))
Len Brown103a8fe2010-10-22 23:53:03 -04004064 return 100.00;
Len Brown144b44b2013-11-09 00:30:16 -05004065 else if (is_slm(family, model))
4066 return slm_bclk();
Len Brown103a8fe2010-10-22 23:53:03 -04004067 else
4068 return 133.33;
4069}
4070
Len Brown889facb2012-11-08 00:48:57 -05004071/*
4072 * MSR_IA32_TEMPERATURE_TARGET indicates the temperature where
4073 * the Thermal Control Circuit (TCC) activates.
4074 * This is usually equal to tjMax.
4075 *
4076 * Older processors do not have this MSR, so there we guess,
4077 * but also allow cmdline over-ride with -T.
4078 *
4079 * Several MSR temperature values are in units of degrees-C
4080 * below this value, including the Digital Thermal Sensor (DTS),
4081 * Package Thermal Management Sensor (PTM), and thermal event thresholds.
4082 */
4083int set_temperature_target(struct thread_data *t, struct core_data *c, struct pkg_data *p)
4084{
4085 unsigned long long msr;
4086 unsigned int target_c_local;
4087 int cpu;
4088
4089 /* tcc_activation_temp is used only for dts or ptm */
4090 if (!(do_dts || do_ptm))
4091 return 0;
4092
4093 /* this is a per-package concept */
4094 if (!(t->flags & CPU_IS_FIRST_THREAD_IN_CORE) || !(t->flags & CPU_IS_FIRST_CORE_IN_PACKAGE))
4095 return 0;
4096
4097 cpu = t->cpu_id;
4098 if (cpu_migrate(cpu)) {
Len Brownb7d8c142016-02-13 23:36:17 -05004099 fprintf(outf, "Could not migrate to CPU %d\n", cpu);
Len Brown889facb2012-11-08 00:48:57 -05004100 return -1;
4101 }
4102
4103 if (tcc_activation_temp_override != 0) {
4104 tcc_activation_temp = tcc_activation_temp_override;
Len Brownb7d8c142016-02-13 23:36:17 -05004105 fprintf(outf, "cpu%d: Using cmdline TCC Target (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05004106 cpu, tcc_activation_temp);
4107 return 0;
4108 }
4109
4110 /* Temperature Target MSR is Nehalem and newer only */
Len Brownd7899442015-01-23 00:12:33 -05004111 if (!do_nhm_platform_info)
Len Brown889facb2012-11-08 00:48:57 -05004112 goto guess;
4113
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004114 if (get_msr(base_cpu, MSR_IA32_TEMPERATURE_TARGET, &msr))
Len Brown889facb2012-11-08 00:48:57 -05004115 goto guess;
4116
Jean Delvare34821242014-05-01 11:40:19 +02004117 target_c_local = (msr >> 16) & 0xFF;
Len Brown889facb2012-11-08 00:48:57 -05004118
Len Brown96e47152017-01-21 02:26:00 -05004119 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004120 fprintf(outf, "cpu%d: MSR_IA32_TEMPERATURE_TARGET: 0x%08llx (%d C)\n",
Len Brown889facb2012-11-08 00:48:57 -05004121 cpu, msr, target_c_local);
4122
Jean Delvare34821242014-05-01 11:40:19 +02004123 if (!target_c_local)
Len Brown889facb2012-11-08 00:48:57 -05004124 goto guess;
4125
4126 tcc_activation_temp = target_c_local;
4127
4128 return 0;
4129
4130guess:
4131 tcc_activation_temp = TJMAX_DEFAULT;
Len Brownb7d8c142016-02-13 23:36:17 -05004132 fprintf(outf, "cpu%d: Guessing tjMax %d C, Please use -T to specify\n",
Len Brown889facb2012-11-08 00:48:57 -05004133 cpu, tcc_activation_temp);
4134
4135 return 0;
4136}
Len Brown69807a62015-11-21 12:22:47 -05004137
Len Brownaa8d8cc2016-03-11 13:26:03 -05004138void decode_feature_control_msr(void)
4139{
4140 unsigned long long msr;
4141
4142 if (!get_msr(base_cpu, MSR_IA32_FEATURE_CONTROL, &msr))
4143 fprintf(outf, "cpu%d: MSR_IA32_FEATURE_CONTROL: 0x%08llx (%sLocked %s)\n",
4144 base_cpu, msr,
4145 msr & FEATURE_CONTROL_LOCKED ? "" : "UN-",
4146 msr & (1 << 18) ? "SGX" : "");
4147}
4148
Len Brown69807a62015-11-21 12:22:47 -05004149void decode_misc_enable_msr(void)
4150{
4151 unsigned long long msr;
4152
Len Brownf26b1512017-06-23 20:45:54 -07004153 if (!genuine_intel)
4154 return;
4155
Len Brown69807a62015-11-21 12:22:47 -05004156 if (!get_msr(base_cpu, MSR_IA32_MISC_ENABLE, &msr))
Len Browne6512622017-01-11 23:17:24 -05004157 fprintf(outf, "cpu%d: MSR_IA32_MISC_ENABLE: 0x%08llx (%sTCC %sEIST %sMWAIT %sPREFETCH %sTURBO)\n",
Len Brown69807a62015-11-21 12:22:47 -05004158 base_cpu, msr,
Len Browne6512622017-01-11 23:17:24 -05004159 msr & MSR_IA32_MISC_ENABLE_TM1 ? "" : "No-",
4160 msr & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP ? "" : "No-",
Len Brownfd3933c2017-11-08 23:15:42 -05004161 msr & MSR_IA32_MISC_ENABLE_MWAIT ? "" : "No-",
Len Browne6512622017-01-11 23:17:24 -05004162 msr & MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE ? "No-" : "",
4163 msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ? "No-" : "");
Len Brown69807a62015-11-21 12:22:47 -05004164}
4165
Len Brown33148d62017-01-21 01:26:16 -05004166void decode_misc_feature_control(void)
4167{
4168 unsigned long long msr;
4169
4170 if (!has_misc_feature_control)
4171 return;
4172
4173 if (!get_msr(base_cpu, MSR_MISC_FEATURE_CONTROL, &msr))
4174 fprintf(outf, "cpu%d: MSR_MISC_FEATURE_CONTROL: 0x%08llx (%sL2-Prefetch %sL2-Prefetch-pair %sL1-Prefetch %sL1-IP-Prefetch)\n",
4175 base_cpu, msr,
4176 msr & (0 << 0) ? "No-" : "",
4177 msr & (1 << 0) ? "No-" : "",
4178 msr & (2 << 0) ? "No-" : "",
4179 msr & (3 << 0) ? "No-" : "");
4180}
Len Brownf0057312015-12-03 01:35:36 -05004181/*
4182 * Decode MSR_MISC_PWR_MGMT
4183 *
4184 * Decode the bits according to the Nehalem documentation
4185 * bit[0] seems to continue to have same meaning going forward
4186 * bit[1] less so...
4187 */
4188void decode_misc_pwr_mgmt_msr(void)
4189{
4190 unsigned long long msr;
4191
4192 if (!do_nhm_platform_info)
4193 return;
4194
Len Browncf4cbe52017-01-01 13:08:33 -05004195 if (no_MSR_MISC_PWR_MGMT)
4196 return;
4197
Len Brownf0057312015-12-03 01:35:36 -05004198 if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08004199 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 -05004200 base_cpu, msr,
4201 msr & (1 << 0) ? "DIS" : "EN",
Srinivas Pandruvadaddadb8a2016-11-11 14:29:48 -08004202 msr & (1 << 1) ? "EN" : "DIS",
4203 msr & (1 << 8) ? "EN" : "DIS");
Len Brownf0057312015-12-03 01:35:36 -05004204}
Len Brown71616c82017-01-07 22:37:48 -05004205/*
4206 * Decode MSR_CC6_DEMOTION_POLICY_CONFIG, MSR_MC6_DEMOTION_POLICY_CONFIG
4207 *
4208 * This MSRs are present on Silvermont processors,
4209 * Intel Atom processor E3000 series (Baytrail), and friends.
4210 */
4211void decode_c6_demotion_policy_msr(void)
4212{
4213 unsigned long long msr;
4214
4215 if (!get_msr(base_cpu, MSR_CC6_DEMOTION_POLICY_CONFIG, &msr))
4216 fprintf(outf, "cpu%d: MSR_CC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-CC6-Demotion)\n",
4217 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
4218
4219 if (!get_msr(base_cpu, MSR_MC6_DEMOTION_POLICY_CONFIG, &msr))
4220 fprintf(outf, "cpu%d: MSR_MC6_DEMOTION_POLICY_CONFIG: 0x%08llx (%sable-MC6-Demotion)\n",
4221 base_cpu, msr, msr & (1 << 0) ? "EN" : "DIS");
4222}
Len Brown7f5c2582015-12-01 01:36:39 -05004223
Len Brownfcd17212015-03-23 20:29:09 -04004224void process_cpuid()
Len Brown103a8fe2010-10-22 23:53:03 -04004225{
Len Brown61a87ba2015-11-23 02:30:51 -05004226 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level;
Len Brown103a8fe2010-10-22 23:53:03 -04004227 unsigned int fms, family, model, stepping;
Len Brownb3a34e92017-01-21 00:50:08 -05004228 unsigned int has_turbo;
Len Brown103a8fe2010-10-22 23:53:03 -04004229
4230 eax = ebx = ecx = edx = 0;
4231
Len Brown5aea2f72016-03-13 03:14:35 -04004232 __cpuid(0, max_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004233
4234 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e)
4235 genuine_intel = 1;
4236
Len Brown96e47152017-01-21 02:26:00 -05004237 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004238 fprintf(outf, "CPUID(0): %.4s%.4s%.4s ",
Len Brown103a8fe2010-10-22 23:53:03 -04004239 (char *)&ebx, (char *)&edx, (char *)&ecx);
4240
Len Brown5aea2f72016-03-13 03:14:35 -04004241 __cpuid(1, fms, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004242 family = (fms >> 8) & 0xf;
4243 model = (fms >> 4) & 0xf;
4244 stepping = fms & 0xf;
4245 if (family == 6 || family == 0xf)
4246 model += ((fms >> 16) & 0xf) << 4;
4247
Len Brown96e47152017-01-21 02:26:00 -05004248 if (!quiet) {
Len Brownb7d8c142016-02-13 23:36:17 -05004249 fprintf(outf, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n",
Len Brown103a8fe2010-10-22 23:53:03 -04004250 max_level, family, model, stepping, family, model, stepping);
Len Brownaa8d8cc2016-03-11 13:26:03 -05004251 fprintf(outf, "CPUID(1): %s %s %s %s %s %s %s %s %s\n",
Len Brown69807a62015-11-21 12:22:47 -05004252 ecx & (1 << 0) ? "SSE3" : "-",
4253 ecx & (1 << 3) ? "MONITOR" : "-",
Len Brownaa8d8cc2016-03-11 13:26:03 -05004254 ecx & (1 << 6) ? "SMX" : "-",
Len Brown69807a62015-11-21 12:22:47 -05004255 ecx & (1 << 7) ? "EIST" : "-",
4256 ecx & (1 << 8) ? "TM2" : "-",
4257 edx & (1 << 4) ? "TSC" : "-",
4258 edx & (1 << 5) ? "MSR" : "-",
4259 edx & (1 << 22) ? "ACPI-TM" : "-",
4260 edx & (1 << 29) ? "TM" : "-");
4261 }
Len Brown103a8fe2010-10-22 23:53:03 -04004262
Josh Triplettb2c95d92013-08-20 17:20:18 -07004263 if (!(edx & (1 << 5)))
4264 errx(1, "CPUID: no MSR");
Len Brown103a8fe2010-10-22 23:53:03 -04004265
4266 /*
4267 * check max extended function levels of CPUID.
4268 * This is needed to check for invariant TSC.
4269 * This check is valid for both Intel and AMD.
4270 */
4271 ebx = ecx = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04004272 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx);
Len Brown103a8fe2010-10-22 23:53:03 -04004273
Len Brown61a87ba2015-11-23 02:30:51 -05004274 if (max_extended_level >= 0x80000007) {
Len Brown103a8fe2010-10-22 23:53:03 -04004275
Len Brownd7899442015-01-23 00:12:33 -05004276 /*
4277 * Non-Stop TSC is advertised by CPUID.EAX=0x80000007: EDX.bit8
4278 * this check is valid for both Intel and AMD
4279 */
Len Brown5aea2f72016-03-13 03:14:35 -04004280 __cpuid(0x80000007, eax, ebx, ecx, edx);
Len Brownd7899442015-01-23 00:12:33 -05004281 has_invariant_tsc = edx & (1 << 8);
4282 }
Len Brown103a8fe2010-10-22 23:53:03 -04004283
4284 /*
4285 * APERF/MPERF is advertised by CPUID.EAX=0x6: ECX.bit0
4286 * this check is valid for both Intel and AMD
4287 */
4288
Len Brown5aea2f72016-03-13 03:14:35 -04004289 __cpuid(0x6, eax, ebx, ecx, edx);
Thomas Renninger8209e052011-01-21 15:11:19 +01004290 has_aperf = ecx & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05004291 if (has_aperf) {
4292 BIC_PRESENT(BIC_Avg_MHz);
4293 BIC_PRESENT(BIC_Busy);
4294 BIC_PRESENT(BIC_Bzy_MHz);
4295 }
Len Brown889facb2012-11-08 00:48:57 -05004296 do_dts = eax & (1 << 0);
Len Brown812db3f2017-02-10 00:25:41 -05004297 if (do_dts)
4298 BIC_PRESENT(BIC_CoreTmp);
Len Brownb3a34e92017-01-21 00:50:08 -05004299 has_turbo = eax & (1 << 1);
Len Brown889facb2012-11-08 00:48:57 -05004300 do_ptm = eax & (1 << 6);
Len Brown812db3f2017-02-10 00:25:41 -05004301 if (do_ptm)
4302 BIC_PRESENT(BIC_PkgTmp);
Len Brown7f5c2582015-12-01 01:36:39 -05004303 has_hwp = eax & (1 << 7);
4304 has_hwp_notify = eax & (1 << 8);
4305 has_hwp_activity_window = eax & (1 << 9);
4306 has_hwp_epp = eax & (1 << 10);
4307 has_hwp_pkg = eax & (1 << 11);
Len Brown889facb2012-11-08 00:48:57 -05004308 has_epb = ecx & (1 << 3);
4309
Len Brown96e47152017-01-21 02:26:00 -05004310 if (!quiet)
Len Brownb3a34e92017-01-21 00:50:08 -05004311 fprintf(outf, "CPUID(6): %sAPERF, %sTURBO, %sDTS, %sPTM, %sHWP, "
Len Brown7f5c2582015-12-01 01:36:39 -05004312 "%sHWPnotify, %sHWPwindow, %sHWPepp, %sHWPpkg, %sEPB\n",
4313 has_aperf ? "" : "No-",
Len Brownb3a34e92017-01-21 00:50:08 -05004314 has_turbo ? "" : "No-",
Len Brown7f5c2582015-12-01 01:36:39 -05004315 do_dts ? "" : "No-",
4316 do_ptm ? "" : "No-",
4317 has_hwp ? "" : "No-",
4318 has_hwp_notify ? "" : "No-",
4319 has_hwp_activity_window ? "" : "No-",
4320 has_hwp_epp ? "" : "No-",
4321 has_hwp_pkg ? "" : "No-",
4322 has_epb ? "" : "No-");
Len Brown103a8fe2010-10-22 23:53:03 -04004323
Len Brown96e47152017-01-21 02:26:00 -05004324 if (!quiet)
Len Brown69807a62015-11-21 12:22:47 -05004325 decode_misc_enable_msr();
4326
Len Brown33148d62017-01-21 01:26:16 -05004327
Len Brown96e47152017-01-21 02:26:00 -05004328 if (max_level >= 0x7 && !quiet) {
Len Brownaa8d8cc2016-03-11 13:26:03 -05004329 int has_sgx;
4330
4331 ecx = 0;
4332
4333 __cpuid_count(0x7, 0, eax, ebx, ecx, edx);
4334
4335 has_sgx = ebx & (1 << 2);
4336 fprintf(outf, "CPUID(7): %sSGX\n", has_sgx ? "" : "No-");
4337
4338 if (has_sgx)
4339 decode_feature_control_msr();
4340 }
4341
Len Brown61a87ba2015-11-23 02:30:51 -05004342 if (max_level >= 0x15) {
Len Brown8a5bdf42015-04-01 21:02:57 -04004343 unsigned int eax_crystal;
4344 unsigned int ebx_tsc;
4345
4346 /*
4347 * CPUID 15H TSC/Crystal ratio, possibly Crystal Hz
4348 */
4349 eax_crystal = ebx_tsc = crystal_hz = edx = 0;
Len Brown5aea2f72016-03-13 03:14:35 -04004350 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx);
Len Brown8a5bdf42015-04-01 21:02:57 -04004351
4352 if (ebx_tsc != 0) {
4353
Len Brown96e47152017-01-21 02:26:00 -05004354 if (!quiet && (ebx != 0))
Len Brownb7d8c142016-02-13 23:36:17 -05004355 fprintf(outf, "CPUID(0x15): eax_crystal: %d ebx_tsc: %d ecx_crystal_hz: %d\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004356 eax_crystal, ebx_tsc, crystal_hz);
4357
4358 if (crystal_hz == 0)
4359 switch(model) {
Len Brown869ce692016-06-16 23:22:37 -04004360 case INTEL_FAM6_SKYLAKE_MOBILE: /* SKL */
4361 case INTEL_FAM6_SKYLAKE_DESKTOP: /* SKL */
4362 case INTEL_FAM6_KABYLAKE_MOBILE: /* KBL */
4363 case INTEL_FAM6_KABYLAKE_DESKTOP: /* KBL */
Len Browne8efbc82016-04-06 17:15:57 -04004364 crystal_hz = 24000000; /* 24.0 MHz */
4365 break;
Len Brown7268d402016-12-01 23:10:39 -05004366 case INTEL_FAM6_ATOM_DENVERTON: /* DNV */
Len Brownec53e592016-04-06 17:15:58 -04004367 crystal_hz = 25000000; /* 25.0 MHz */
4368 break;
Len Brown869ce692016-06-16 23:22:37 -04004369 case INTEL_FAM6_ATOM_GOLDMONT: /* BXT */
Len Brownac01ac12017-01-27 01:45:35 -05004370 case INTEL_FAM6_ATOM_GEMINI_LAKE:
Len Browne8efbc82016-04-06 17:15:57 -04004371 crystal_hz = 19200000; /* 19.2 MHz */
Len Brown8a5bdf42015-04-01 21:02:57 -04004372 break;
4373 default:
4374 crystal_hz = 0;
4375 }
4376
4377 if (crystal_hz) {
4378 tsc_hz = (unsigned long long) crystal_hz * ebx_tsc / eax_crystal;
Len Brown96e47152017-01-21 02:26:00 -05004379 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004380 fprintf(outf, "TSC: %lld MHz (%d Hz * %d / %d / 1000000)\n",
Len Brown8a5bdf42015-04-01 21:02:57 -04004381 tsc_hz / 1000000, crystal_hz, ebx_tsc, eax_crystal);
4382 }
4383 }
4384 }
Len Brown61a87ba2015-11-23 02:30:51 -05004385 if (max_level >= 0x16) {
4386 unsigned int base_mhz, max_mhz, bus_mhz, edx;
4387
4388 /*
4389 * CPUID 16H Base MHz, Max MHz, Bus MHz
4390 */
4391 base_mhz = max_mhz = bus_mhz = edx = 0;
4392
Len Brown5aea2f72016-03-13 03:14:35 -04004393 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx);
Len Brown96e47152017-01-21 02:26:00 -05004394 if (!quiet)
Len Brownb7d8c142016-02-13 23:36:17 -05004395 fprintf(outf, "CPUID(0x16): base_mhz: %d max_mhz: %d bus_mhz: %d\n",
Len Brown61a87ba2015-11-23 02:30:51 -05004396 base_mhz, max_mhz, bus_mhz);
4397 }
Len Brown8a5bdf42015-04-01 21:02:57 -04004398
Hubert Chrzaniukb2b34df2015-09-14 13:31:00 +02004399 if (has_aperf)
4400 aperf_mperf_multiplier = get_aperf_mperf_multiplier(family, model);
4401
Len Brown812db3f2017-02-10 00:25:41 -05004402 BIC_PRESENT(BIC_IRQ);
4403 BIC_PRESENT(BIC_TSC_MHz);
4404
4405 if (probe_nhm_msrs(family, model)) {
4406 do_nhm_platform_info = 1;
4407 BIC_PRESENT(BIC_CPU_c1);
4408 BIC_PRESENT(BIC_CPU_c3);
4409 BIC_PRESENT(BIC_CPU_c6);
4410 BIC_PRESENT(BIC_SMI);
4411 }
Len Brownd7899442015-01-23 00:12:33 -05004412 do_snb_cstates = has_snb_msrs(family, model);
Len Brown812db3f2017-02-10 00:25:41 -05004413
4414 if (do_snb_cstates)
4415 BIC_PRESENT(BIC_CPU_c7);
4416
Len Brown5a634262016-04-06 17:15:55 -04004417 do_irtl_snb = has_snb_msrs(family, model);
Len Brown0f47c082017-01-27 00:50:45 -05004418 if (do_snb_cstates && (pkg_cstate_limit >= PCL__2))
4419 BIC_PRESENT(BIC_Pkgpc2);
4420 if (pkg_cstate_limit >= PCL__3)
4421 BIC_PRESENT(BIC_Pkgpc3);
4422 if (pkg_cstate_limit >= PCL__6)
4423 BIC_PRESENT(BIC_Pkgpc6);
4424 if (do_snb_cstates && (pkg_cstate_limit >= PCL__7))
4425 BIC_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004426 if (has_slv_msrs(family, model)) {
Len Brown0f47c082017-01-27 00:50:45 -05004427 BIC_NOT_PRESENT(BIC_Pkgpc2);
4428 BIC_NOT_PRESENT(BIC_Pkgpc3);
4429 BIC_PRESENT(BIC_Pkgpc6);
4430 BIC_NOT_PRESENT(BIC_Pkgpc7);
Len Brown0539ba12017-02-10 00:27:20 -05004431 BIC_PRESENT(BIC_Mod_c6);
4432 use_c1_residency_msr = 1;
4433 }
Len Brown7170a372017-01-27 02:13:27 -05004434 if (is_dnv(family, model)) {
4435 BIC_PRESENT(BIC_CPU_c1);
4436 BIC_NOT_PRESENT(BIC_CPU_c3);
4437 BIC_NOT_PRESENT(BIC_Pkgpc3);
4438 BIC_NOT_PRESENT(BIC_CPU_c7);
4439 BIC_NOT_PRESENT(BIC_Pkgpc7);
4440 use_c1_residency_msr = 1;
4441 }
Len Brown34c761972017-01-27 02:36:41 -05004442 if (is_skx(family, model)) {
4443 BIC_NOT_PRESENT(BIC_CPU_c3);
4444 BIC_NOT_PRESENT(BIC_Pkgpc3);
4445 BIC_NOT_PRESENT(BIC_CPU_c7);
4446 BIC_NOT_PRESENT(BIC_Pkgpc7);
4447 }
Len Brownade0eba2017-02-10 01:56:47 -05004448 if (is_bdx(family, model)) {
4449 BIC_NOT_PRESENT(BIC_CPU_c7);
4450 BIC_NOT_PRESENT(BIC_Pkgpc7);
4451 }
Len Brown0f47c082017-01-27 00:50:45 -05004452 if (has_hsw_msrs(family, model)) {
4453 BIC_PRESENT(BIC_Pkgpc8);
4454 BIC_PRESENT(BIC_Pkgpc9);
4455 BIC_PRESENT(BIC_Pkgpc10);
4456 }
Len Brown5a634262016-04-06 17:15:55 -04004457 do_irtl_hsw = has_hsw_msrs(family, model);
Len Browna99d8732017-05-20 20:11:55 -04004458 if (has_skl_msrs(family, model)) {
4459 BIC_PRESENT(BIC_Totl_c0);
4460 BIC_PRESENT(BIC_Any_c0);
4461 BIC_PRESENT(BIC_GFX_c0);
4462 BIC_PRESENT(BIC_CPUGFX);
4463 }
Len Brown144b44b2013-11-09 00:30:16 -05004464 do_slm_cstates = is_slm(family, model);
Dasaratharaman Chandramoulifb5d4322015-05-20 09:49:34 -07004465 do_knl_cstates = is_knl(family, model);
Len Brown103a8fe2010-10-22 23:53:03 -04004466
Len Brown96e47152017-01-21 02:26:00 -05004467 if (!quiet)
Len Brownf0057312015-12-03 01:35:36 -05004468 decode_misc_pwr_mgmt_msr();
4469
Len Brown96e47152017-01-21 02:26:00 -05004470 if (!quiet && has_slv_msrs(family, model))
Len Brown71616c82017-01-07 22:37:48 -05004471 decode_c6_demotion_policy_msr();
4472
Len Brown889facb2012-11-08 00:48:57 -05004473 rapl_probe(family, model);
Len Brown3a9a9412014-08-15 02:39:52 -04004474 perf_limit_reasons_probe(family, model);
Artem Bityutskiyac980e12017-09-05 15:14:08 +03004475 automatic_cstate_conversion_probe(family, model);
Len Brown889facb2012-11-08 00:48:57 -05004476
Len Brown96e47152017-01-21 02:26:00 -05004477 if (!quiet)
Colin Ian King1b693172016-03-02 13:50:25 +00004478 dump_cstate_pstate_config_info(family, model);
Len Brownfcd17212015-03-23 20:29:09 -04004479
Len Brown41618e62017-02-09 18:25:22 -05004480 if (!quiet)
4481 dump_sysfs_cstate_config();
Len Brown7293fcc2017-02-22 00:11:12 -05004482 if (!quiet)
4483 dump_sysfs_pstate_config();
Len Brown41618e62017-02-09 18:25:22 -05004484
Len Browna2b7b742015-09-26 00:12:38 -04004485 if (has_skl_msrs(family, model))
4486 calculate_tsc_tweak();
4487
Len Brown812db3f2017-02-10 00:25:41 -05004488 if (!access("/sys/class/drm/card0/power/rc6_residency_ms", R_OK))
4489 BIC_PRESENT(BIC_GFX_rc6);
Len Brownfdf676e2016-02-27 01:28:12 -05004490
Len Brown812db3f2017-02-10 00:25:41 -05004491 if (!access("/sys/class/graphics/fb0/device/drm/card0/gt_cur_freq_mhz", R_OK))
4492 BIC_PRESENT(BIC_GFXMHz);
Len Brown27d47352016-02-27 00:37:54 -05004493
Len Brownbe0e54c2018-06-01 12:35:53 -04004494 if (!access("/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us", R_OK))
4495 BIC_PRESENT(BIC_CPU_LPI);
4496 else
4497 BIC_NOT_PRESENT(BIC_CPU_LPI);
4498
4499 if (!access("/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us", R_OK))
4500 BIC_PRESENT(BIC_SYS_LPI);
4501 else
4502 BIC_NOT_PRESENT(BIC_SYS_LPI);
4503
Len Brown96e47152017-01-21 02:26:00 -05004504 if (!quiet)
Len Brown33148d62017-01-21 01:26:16 -05004505 decode_misc_feature_control();
4506
Len Brown889facb2012-11-08 00:48:57 -05004507 return;
Len Brown103a8fe2010-10-22 23:53:03 -04004508}
4509
Len Brown103a8fe2010-10-22 23:53:03 -04004510
4511/*
4512 * in /dev/cpu/ return success for names that are numbers
4513 * ie. filter out ".", "..", "microcode".
4514 */
4515int dir_filter(const struct dirent *dirp)
4516{
4517 if (isdigit(dirp->d_name[0]))
4518 return 1;
4519 else
4520 return 0;
4521}
4522
4523int open_dev_cpu_msr(int dummy1)
4524{
4525 return 0;
4526}
4527
Len Brownc98d5d92012-06-04 00:56:40 -04004528void topology_probe()
4529{
4530 int i;
4531 int max_core_id = 0;
4532 int max_package_id = 0;
4533 int max_siblings = 0;
4534 struct cpu_topology {
4535 int core_id;
4536 int physical_package_id;
4537 } *cpus;
4538
4539 /* Initialize num_cpus, max_cpu_num */
4540 topo.num_cpus = 0;
4541 topo.max_cpu_num = 0;
4542 for_all_proc_cpus(count_cpus);
4543 if (!summary_only && topo.num_cpus > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004544 BIC_PRESENT(BIC_CPU);
Len Brownc98d5d92012-06-04 00:56:40 -04004545
Len Brownd8af6f52015-02-10 01:56:38 -05004546 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004547 fprintf(outf, "num_cpus %d max_cpu_num %d\n", topo.num_cpus, topo.max_cpu_num);
Len Brownc98d5d92012-06-04 00:56:40 -04004548
4549 cpus = calloc(1, (topo.max_cpu_num + 1) * sizeof(struct cpu_topology));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004550 if (cpus == NULL)
4551 err(1, "calloc cpus");
Len Brownc98d5d92012-06-04 00:56:40 -04004552
4553 /*
4554 * Allocate and initialize cpu_present_set
4555 */
4556 cpu_present_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004557 if (cpu_present_set == NULL)
4558 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004559 cpu_present_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4560 CPU_ZERO_S(cpu_present_setsize, cpu_present_set);
4561 for_all_proc_cpus(mark_cpu_present);
4562
4563 /*
Len Brown1ef7d212017-02-10 23:54:15 -05004564 * Validate that all cpus in cpu_subset are also in cpu_present_set
4565 */
4566 for (i = 0; i < CPU_SUBSET_MAXCPUS; ++i) {
4567 if (CPU_ISSET_S(i, cpu_subset_size, cpu_subset))
4568 if (!CPU_ISSET_S(i, cpu_present_setsize, cpu_present_set))
4569 err(1, "cpu%d not present", i);
4570 }
4571
4572 /*
Len Brownc98d5d92012-06-04 00:56:40 -04004573 * Allocate and initialize cpu_affinity_set
4574 */
4575 cpu_affinity_set = CPU_ALLOC((topo.max_cpu_num + 1));
Josh Triplettb2c95d92013-08-20 17:20:18 -07004576 if (cpu_affinity_set == NULL)
4577 err(3, "CPU_ALLOC");
Len Brownc98d5d92012-06-04 00:56:40 -04004578 cpu_affinity_setsize = CPU_ALLOC_SIZE((topo.max_cpu_num + 1));
4579 CPU_ZERO_S(cpu_affinity_setsize, cpu_affinity_set);
4580
4581
4582 /*
4583 * For online cpus
4584 * find max_core_id, max_package_id
4585 */
4586 for (i = 0; i <= topo.max_cpu_num; ++i) {
4587 int siblings;
4588
4589 if (cpu_is_not_present(i)) {
Len Brownd8af6f52015-02-10 01:56:38 -05004590 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004591 fprintf(outf, "cpu%d NOT PRESENT\n", i);
Len Brownc98d5d92012-06-04 00:56:40 -04004592 continue;
4593 }
4594 cpus[i].core_id = get_core_id(i);
4595 if (cpus[i].core_id > max_core_id)
4596 max_core_id = cpus[i].core_id;
4597
4598 cpus[i].physical_package_id = get_physical_package_id(i);
4599 if (cpus[i].physical_package_id > max_package_id)
4600 max_package_id = cpus[i].physical_package_id;
4601
4602 siblings = get_num_ht_siblings(i);
4603 if (siblings > max_siblings)
4604 max_siblings = siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004605 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004606 fprintf(outf, "cpu %d pkg %d core %d\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004607 i, cpus[i].physical_package_id, cpus[i].core_id);
4608 }
4609 topo.num_cores_per_pkg = max_core_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004610 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004611 fprintf(outf, "max_core_id %d, sizing for %d cores per package\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004612 max_core_id, topo.num_cores_per_pkg);
Len Brown0f47c082017-01-27 00:50:45 -05004613 if (!summary_only && topo.num_cores_per_pkg > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004614 BIC_PRESENT(BIC_Core);
Len Brownc98d5d92012-06-04 00:56:40 -04004615
4616 topo.num_packages = max_package_id + 1;
Len Brownd8af6f52015-02-10 01:56:38 -05004617 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004618 fprintf(outf, "max_package_id %d, sizing for %d packages\n",
Len Brownc98d5d92012-06-04 00:56:40 -04004619 max_package_id, topo.num_packages);
Len Brown7da6e3e2017-02-21 23:43:41 -05004620 if (!summary_only && topo.num_packages > 1)
Len Brown812db3f2017-02-10 00:25:41 -05004621 BIC_PRESENT(BIC_Package);
Len Brownc98d5d92012-06-04 00:56:40 -04004622
4623 topo.num_threads_per_core = max_siblings;
Len Brownd8af6f52015-02-10 01:56:38 -05004624 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004625 fprintf(outf, "max_siblings %d\n", max_siblings);
Len Brownc98d5d92012-06-04 00:56:40 -04004626
4627 free(cpus);
4628}
4629
4630void
4631allocate_counters(struct thread_data **t, struct core_data **c, struct pkg_data **p)
4632{
4633 int i;
4634
4635 *t = calloc(topo.num_threads_per_core * topo.num_cores_per_pkg *
Len Brown678a3bd2017-02-09 22:22:13 -05004636 topo.num_packages, sizeof(struct thread_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004637 if (*t == NULL)
4638 goto error;
4639
4640 for (i = 0; i < topo.num_threads_per_core *
4641 topo.num_cores_per_pkg * topo.num_packages; i++)
4642 (*t)[i].cpu_id = -1;
4643
4644 *c = calloc(topo.num_cores_per_pkg * topo.num_packages,
Len Brown678a3bd2017-02-09 22:22:13 -05004645 sizeof(struct core_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004646 if (*c == NULL)
4647 goto error;
4648
4649 for (i = 0; i < topo.num_cores_per_pkg * topo.num_packages; i++)
4650 (*c)[i].core_id = -1;
4651
Len Brown678a3bd2017-02-09 22:22:13 -05004652 *p = calloc(topo.num_packages, sizeof(struct pkg_data));
Len Brownc98d5d92012-06-04 00:56:40 -04004653 if (*p == NULL)
4654 goto error;
4655
4656 for (i = 0; i < topo.num_packages; i++)
4657 (*p)[i].package_id = i;
4658
4659 return;
4660error:
Josh Triplettb2c95d92013-08-20 17:20:18 -07004661 err(1, "calloc counters");
Len Brownc98d5d92012-06-04 00:56:40 -04004662}
4663/*
4664 * init_counter()
4665 *
4666 * set cpu_id, core_num, pkg_num
4667 * set FIRST_THREAD_IN_CORE and FIRST_CORE_IN_PACKAGE
4668 *
4669 * increment topo.num_cores when 1st core in pkg seen
4670 */
4671void init_counter(struct thread_data *thread_base, struct core_data *core_base,
4672 struct pkg_data *pkg_base, int thread_num, int core_num,
4673 int pkg_num, int cpu_id)
4674{
4675 struct thread_data *t;
4676 struct core_data *c;
4677 struct pkg_data *p;
4678
4679 t = GET_THREAD(thread_base, thread_num, core_num, pkg_num);
4680 c = GET_CORE(core_base, core_num, pkg_num);
4681 p = GET_PKG(pkg_base, pkg_num);
4682
4683 t->cpu_id = cpu_id;
4684 if (thread_num == 0) {
4685 t->flags |= CPU_IS_FIRST_THREAD_IN_CORE;
4686 if (cpu_is_first_core_in_package(cpu_id))
4687 t->flags |= CPU_IS_FIRST_CORE_IN_PACKAGE;
4688 }
4689
4690 c->core_id = core_num;
4691 p->package_id = pkg_num;
4692}
4693
4694
4695int initialize_counters(int cpu_id)
4696{
4697 int my_thread_id, my_core_id, my_package_id;
4698
4699 my_package_id = get_physical_package_id(cpu_id);
4700 my_core_id = get_core_id(cpu_id);
Dasaratharaman Chandramoulie275b382015-04-15 10:09:50 -07004701 my_thread_id = get_cpu_position_in_core(cpu_id);
4702 if (!my_thread_id)
Len Brownc98d5d92012-06-04 00:56:40 -04004703 topo.num_cores++;
Len Brownc98d5d92012-06-04 00:56:40 -04004704
4705 init_counter(EVEN_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4706 init_counter(ODD_COUNTERS, my_thread_id, my_core_id, my_package_id, cpu_id);
4707 return 0;
4708}
4709
4710void allocate_output_buffer()
4711{
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004712 output_buffer = calloc(1, (1 + topo.num_cpus) * 1024);
Len Brownc98d5d92012-06-04 00:56:40 -04004713 outp = output_buffer;
Josh Triplettb2c95d92013-08-20 17:20:18 -07004714 if (outp == NULL)
4715 err(-1, "calloc output buffer");
Len Brownc98d5d92012-06-04 00:56:40 -04004716}
Len Brown36229892016-02-26 20:51:02 -05004717void allocate_fd_percpu(void)
4718{
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004719 fd_percpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown36229892016-02-26 20:51:02 -05004720 if (fd_percpu == NULL)
4721 err(-1, "calloc fd_percpu");
4722}
Len Brown562a2d32016-02-26 23:48:05 -05004723void allocate_irq_buffers(void)
4724{
4725 irq_column_2_cpu = calloc(topo.num_cpus, sizeof(int));
4726 if (irq_column_2_cpu == NULL)
4727 err(-1, "calloc %d", topo.num_cpus);
Len Brownc98d5d92012-06-04 00:56:40 -04004728
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004729 irqs_per_cpu = calloc(topo.max_cpu_num + 1, sizeof(int));
Len Brown562a2d32016-02-26 23:48:05 -05004730 if (irqs_per_cpu == NULL)
Mika Westerberg01a67ad2016-04-22 11:13:23 +03004731 err(-1, "calloc %d", topo.max_cpu_num + 1);
Len Brown562a2d32016-02-26 23:48:05 -05004732}
Len Brownc98d5d92012-06-04 00:56:40 -04004733void setup_all_buffers(void)
4734{
4735 topology_probe();
Len Brown562a2d32016-02-26 23:48:05 -05004736 allocate_irq_buffers();
Len Brown36229892016-02-26 20:51:02 -05004737 allocate_fd_percpu();
Len Brownc98d5d92012-06-04 00:56:40 -04004738 allocate_counters(&thread_even, &core_even, &package_even);
4739 allocate_counters(&thread_odd, &core_odd, &package_odd);
4740 allocate_output_buffer();
4741 for_all_proc_cpus(initialize_counters);
4742}
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004743
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004744void set_base_cpu(void)
4745{
4746 base_cpu = sched_getcpu();
4747 if (base_cpu < 0)
4748 err(-ENODEV, "No valid cpus found");
4749
4750 if (debug > 1)
Len Brownb7d8c142016-02-13 23:36:17 -05004751 fprintf(outf, "base_cpu = %d\n", base_cpu);
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004752}
4753
Len Brown103a8fe2010-10-22 23:53:03 -04004754void turbostat_init()
4755{
Prarit Bhargava7ce7d5d2015-05-25 08:34:28 -04004756 setup_all_buffers();
4757 set_base_cpu();
Len Brown103a8fe2010-10-22 23:53:03 -04004758 check_dev_msr();
Len Brown98481e72014-08-15 00:36:50 -04004759 check_permissions();
Len Brownfcd17212015-03-23 20:29:09 -04004760 process_cpuid();
Len Brown103a8fe2010-10-22 23:53:03 -04004761
Len Brown103a8fe2010-10-22 23:53:03 -04004762
Len Brown96e47152017-01-21 02:26:00 -05004763 if (!quiet)
Len Brown7f5c2582015-12-01 01:36:39 -05004764 for_all_cpus(print_hwp, ODD_COUNTERS);
4765
Len Brown96e47152017-01-21 02:26:00 -05004766 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004767 for_all_cpus(print_epb, ODD_COUNTERS);
4768
Len Brown96e47152017-01-21 02:26:00 -05004769 if (!quiet)
Len Brown3a9a9412014-08-15 02:39:52 -04004770 for_all_cpus(print_perf_limit, ODD_COUNTERS);
4771
Len Brown96e47152017-01-21 02:26:00 -05004772 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004773 for_all_cpus(print_rapl, ODD_COUNTERS);
4774
4775 for_all_cpus(set_temperature_target, ODD_COUNTERS);
4776
Len Brown96e47152017-01-21 02:26:00 -05004777 if (!quiet)
Len Brown889facb2012-11-08 00:48:57 -05004778 for_all_cpus(print_thermal, ODD_COUNTERS);
Len Brown5a634262016-04-06 17:15:55 -04004779
Len Brown96e47152017-01-21 02:26:00 -05004780 if (!quiet && do_irtl_snb)
Len Brown5a634262016-04-06 17:15:55 -04004781 print_irtl();
Len Brown103a8fe2010-10-22 23:53:03 -04004782}
4783
4784int fork_it(char **argv)
4785{
Len Brown103a8fe2010-10-22 23:53:03 -04004786 pid_t child_pid;
Len Brownd91bb172012-11-01 00:08:19 -04004787 int status;
Len Brownd15cf7c2012-06-03 23:24:00 -04004788
Len Brown218f0e82017-02-14 22:07:52 -05004789 snapshot_proc_sysfs_files();
Len Brownd91bb172012-11-01 00:08:19 -04004790 status = for_all_cpus(get_counters, EVEN_COUNTERS);
4791 if (status)
4792 exit(status);
Len Brownc98d5d92012-06-04 00:56:40 -04004793 /* clear affinity side-effect of get_counters() */
4794 sched_setaffinity(0, cpu_present_setsize, cpu_present_set);
Len Brown103a8fe2010-10-22 23:53:03 -04004795 gettimeofday(&tv_even, (struct timezone *)NULL);
4796
4797 child_pid = fork();
4798 if (!child_pid) {
4799 /* child */
4800 execvp(argv[0], argv);
Len Brown0815a3d2017-02-23 17:00:51 -05004801 err(errno, "exec %s", argv[0]);
Len Brown103a8fe2010-10-22 23:53:03 -04004802 } else {
Len Brown103a8fe2010-10-22 23:53:03 -04004803
4804 /* parent */
Josh Triplettb2c95d92013-08-20 17:20:18 -07004805 if (child_pid == -1)
4806 err(1, "fork");
Len Brown103a8fe2010-10-22 23:53:03 -04004807
4808 signal(SIGINT, SIG_IGN);
4809 signal(SIGQUIT, SIG_IGN);
Josh Triplettb2c95d92013-08-20 17:20:18 -07004810 if (waitpid(child_pid, &status, 0) == -1)
4811 err(status, "waitpid");
Len Brown103a8fe2010-10-22 23:53:03 -04004812 }
Len Brownc98d5d92012-06-04 00:56:40 -04004813 /*
4814 * n.b. fork_it() does not check for errors from for_all_cpus()
4815 * because re-starting is problematic when forking
4816 */
Len Brown218f0e82017-02-14 22:07:52 -05004817 snapshot_proc_sysfs_files();
Len Brownc98d5d92012-06-04 00:56:40 -04004818 for_all_cpus(get_counters, ODD_COUNTERS);
Len Brown103a8fe2010-10-22 23:53:03 -04004819 gettimeofday(&tv_odd, (struct timezone *)NULL);
Len Brown103a8fe2010-10-22 23:53:03 -04004820 timersub(&tv_odd, &tv_even, &tv_delta);
Len Brownba3dec92016-04-22 20:31:46 -04004821 if (for_all_cpus_2(delta_cpu, ODD_COUNTERS, EVEN_COUNTERS))
4822 fprintf(outf, "%s: Counter reset detected\n", progname);
4823 else {
4824 compute_average(EVEN_COUNTERS);
4825 format_all_counters(EVEN_COUNTERS);
4826 }
Len Brown103a8fe2010-10-22 23:53:03 -04004827
Len Brownb7d8c142016-02-13 23:36:17 -05004828 fprintf(outf, "%.6f sec\n", tv_delta.tv_sec + tv_delta.tv_usec/1000000.0);
4829
4830 flush_output_stderr();
Len Brown103a8fe2010-10-22 23:53:03 -04004831
Len Brownd91bb172012-11-01 00:08:19 -04004832 return status;
Len Brown103a8fe2010-10-22 23:53:03 -04004833}
4834
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004835int get_and_dump_counters(void)
4836{
4837 int status;
4838
Len Brown218f0e82017-02-14 22:07:52 -05004839 snapshot_proc_sysfs_files();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004840 status = for_all_cpus(get_counters, ODD_COUNTERS);
4841 if (status)
4842 return status;
4843
4844 status = for_all_cpus(dump_counters, ODD_COUNTERS);
4845 if (status)
4846 return status;
4847
Len Brownb7d8c142016-02-13 23:36:17 -05004848 flush_output_stdout();
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02004849
4850 return status;
4851}
4852
Len Brownd8af6f52015-02-10 01:56:38 -05004853void print_version() {
Len Brownf7d44a82017-05-27 21:24:58 -07004854 fprintf(outf, "turbostat version 17.06.23"
Len Brownd8af6f52015-02-10 01:56:38 -05004855 " - Len Brown <lenb@kernel.org>\n");
4856}
4857
Len Brown495c76542017-02-08 02:41:51 -05004858int add_counter(unsigned int msr_num, char *path, char *name,
4859 unsigned int width, enum counter_scope scope,
Len Brown41618e62017-02-09 18:25:22 -05004860 enum counter_type type, enum counter_format format, int flags)
Len Brown388e9c82016-12-22 23:57:55 -05004861{
4862 struct msr_counter *msrp;
4863
4864 msrp = calloc(1, sizeof(struct msr_counter));
4865 if (msrp == NULL) {
4866 perror("calloc");
4867 exit(1);
4868 }
4869
4870 msrp->msr_num = msr_num;
4871 strncpy(msrp->name, name, NAME_BYTES);
Len Brown495c76542017-02-08 02:41:51 -05004872 if (path)
4873 strncpy(msrp->path, path, PATH_BYTES);
Len Brown388e9c82016-12-22 23:57:55 -05004874 msrp->width = width;
4875 msrp->type = type;
4876 msrp->format = format;
Len Brown41618e62017-02-09 18:25:22 -05004877 msrp->flags = flags;
Len Brown388e9c82016-12-22 23:57:55 -05004878
4879 switch (scope) {
4880
4881 case SCOPE_CPU:
Len Brown388e9c82016-12-22 23:57:55 -05004882 msrp->next = sys.tp;
4883 sys.tp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004884 sys.added_thread_counters++;
4885 if (sys.added_thread_counters > MAX_ADDED_COUNTERS) {
4886 fprintf(stderr, "exceeded max %d added thread counters\n",
4887 MAX_ADDED_COUNTERS);
4888 exit(-1);
4889 }
Len Brown388e9c82016-12-22 23:57:55 -05004890 break;
4891
4892 case SCOPE_CORE:
Len Brown388e9c82016-12-22 23:57:55 -05004893 msrp->next = sys.cp;
4894 sys.cp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004895 sys.added_core_counters++;
4896 if (sys.added_core_counters > MAX_ADDED_COUNTERS) {
4897 fprintf(stderr, "exceeded max %d added core counters\n",
4898 MAX_ADDED_COUNTERS);
4899 exit(-1);
4900 }
Len Brown388e9c82016-12-22 23:57:55 -05004901 break;
4902
4903 case SCOPE_PACKAGE:
Len Brown388e9c82016-12-22 23:57:55 -05004904 msrp->next = sys.pp;
4905 sys.pp = msrp;
Len Brown678a3bd2017-02-09 22:22:13 -05004906 sys.added_package_counters++;
4907 if (sys.added_package_counters > MAX_ADDED_COUNTERS) {
4908 fprintf(stderr, "exceeded max %d added package counters\n",
4909 MAX_ADDED_COUNTERS);
4910 exit(-1);
4911 }
Len Brown388e9c82016-12-22 23:57:55 -05004912 break;
4913 }
4914
4915 return 0;
4916}
4917
4918void parse_add_command(char *add_command)
4919{
4920 int msr_num = 0;
Len Brown495c76542017-02-08 02:41:51 -05004921 char *path = NULL;
Len Brown0f47c082017-01-27 00:50:45 -05004922 char name_buffer[NAME_BYTES] = "";
Len Brown388e9c82016-12-22 23:57:55 -05004923 int width = 64;
4924 int fail = 0;
4925 enum counter_scope scope = SCOPE_CPU;
4926 enum counter_type type = COUNTER_CYCLES;
4927 enum counter_format format = FORMAT_DELTA;
4928
4929 while (add_command) {
4930
4931 if (sscanf(add_command, "msr0x%x", &msr_num) == 1)
4932 goto next;
4933
4934 if (sscanf(add_command, "msr%d", &msr_num) == 1)
4935 goto next;
4936
Len Brown495c76542017-02-08 02:41:51 -05004937 if (*add_command == '/') {
4938 path = add_command;
4939 goto next;
4940 }
4941
Len Brown388e9c82016-12-22 23:57:55 -05004942 if (sscanf(add_command, "u%d", &width) == 1) {
4943 if ((width == 32) || (width == 64))
4944 goto next;
4945 width = 64;
4946 }
4947 if (!strncmp(add_command, "cpu", strlen("cpu"))) {
4948 scope = SCOPE_CPU;
4949 goto next;
4950 }
4951 if (!strncmp(add_command, "core", strlen("core"))) {
4952 scope = SCOPE_CORE;
4953 goto next;
4954 }
4955 if (!strncmp(add_command, "package", strlen("package"))) {
4956 scope = SCOPE_PACKAGE;
4957 goto next;
4958 }
4959 if (!strncmp(add_command, "cycles", strlen("cycles"))) {
4960 type = COUNTER_CYCLES;
4961 goto next;
4962 }
4963 if (!strncmp(add_command, "seconds", strlen("seconds"))) {
4964 type = COUNTER_SECONDS;
4965 goto next;
4966 }
Len Brown41618e62017-02-09 18:25:22 -05004967 if (!strncmp(add_command, "usec", strlen("usec"))) {
4968 type = COUNTER_USEC;
4969 goto next;
4970 }
Len Brown388e9c82016-12-22 23:57:55 -05004971 if (!strncmp(add_command, "raw", strlen("raw"))) {
4972 format = FORMAT_RAW;
4973 goto next;
4974 }
4975 if (!strncmp(add_command, "delta", strlen("delta"))) {
4976 format = FORMAT_DELTA;
4977 goto next;
4978 }
4979 if (!strncmp(add_command, "percent", strlen("percent"))) {
4980 format = FORMAT_PERCENT;
4981 goto next;
4982 }
4983
4984 if (sscanf(add_command, "%18s,%*s", name_buffer) == 1) { /* 18 < NAME_BYTES */
4985 char *eos;
4986
4987 eos = strchr(name_buffer, ',');
4988 if (eos)
4989 *eos = '\0';
4990 goto next;
4991 }
4992
4993next:
4994 add_command = strchr(add_command, ',');
Len Brown495c76542017-02-08 02:41:51 -05004995 if (add_command) {
4996 *add_command = '\0';
Len Brown388e9c82016-12-22 23:57:55 -05004997 add_command++;
Len Brown495c76542017-02-08 02:41:51 -05004998 }
Len Brown388e9c82016-12-22 23:57:55 -05004999
5000 }
Len Brown495c76542017-02-08 02:41:51 -05005001 if ((msr_num == 0) && (path == NULL)) {
5002 fprintf(stderr, "--add: (msrDDD | msr0xXXX | /path_to_counter ) required\n");
Len Brown388e9c82016-12-22 23:57:55 -05005003 fail++;
5004 }
5005
5006 /* generate default column header */
5007 if (*name_buffer == '\0') {
Len Brown5f3aea52017-02-23 18:10:27 -05005008 if (width == 32)
5009 sprintf(name_buffer, "M0x%x%s", msr_num, format == FORMAT_PERCENT ? "%" : "");
5010 else
5011 sprintf(name_buffer, "M0X%x%s", msr_num, format == FORMAT_PERCENT ? "%" : "");
Len Brown388e9c82016-12-22 23:57:55 -05005012 }
5013
Len Brown41618e62017-02-09 18:25:22 -05005014 if (add_counter(msr_num, path, name_buffer, width, scope, type, format, 0))
Len Brown388e9c82016-12-22 23:57:55 -05005015 fail++;
5016
5017 if (fail) {
5018 help();
5019 exit(1);
5020 }
5021}
Len Brown41618e62017-02-09 18:25:22 -05005022
Len Browndd778a52017-02-21 23:21:13 -05005023int is_deferred_skip(char *name)
5024{
5025 int i;
5026
5027 for (i = 0; i < deferred_skip_index; ++i)
5028 if (!strcmp(name, deferred_skip_names[i]))
5029 return 1;
5030 return 0;
5031}
5032
Len Brown41618e62017-02-09 18:25:22 -05005033void probe_sysfs(void)
5034{
5035 char path[64];
5036 char name_buf[16];
5037 FILE *input;
5038 int state;
5039 char *sp;
5040
5041 if (!DO_BIC(BIC_sysfs))
5042 return;
5043
5044 for (state = 10; state > 0; --state) {
5045
5046 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
5047 base_cpu, state);
5048 input = fopen(path, "r");
5049 if (input == NULL)
5050 continue;
5051 fgets(name_buf, sizeof(name_buf), input);
5052
5053 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
5054 sp = strchr(name_buf, '-');
5055 if (!sp)
5056 sp = strchrnul(name_buf, '\n');
5057 *sp = '%';
5058 *(sp + 1) = '\0';
5059
5060 fclose(input);
5061
5062 sprintf(path, "cpuidle/state%d/time", state);
5063
Len Browndd778a52017-02-21 23:21:13 -05005064 if (is_deferred_skip(name_buf))
5065 continue;
5066
Len Brown41618e62017-02-09 18:25:22 -05005067 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_USEC,
5068 FORMAT_PERCENT, SYSFS_PERCPU);
5069 }
5070
5071 for (state = 10; state > 0; --state) {
5072
5073 sprintf(path, "/sys/devices/system/cpu/cpu%d/cpuidle/state%d/name",
5074 base_cpu, state);
5075 input = fopen(path, "r");
5076 if (input == NULL)
5077 continue;
5078 fgets(name_buf, sizeof(name_buf), input);
5079 /* truncate "C1-HSW\n" to "C1", or truncate "C1\n" to "C1" */
5080 sp = strchr(name_buf, '-');
5081 if (!sp)
5082 sp = strchrnul(name_buf, '\n');
5083 *sp = '\0';
5084 fclose(input);
5085
5086 sprintf(path, "cpuidle/state%d/usage", state);
5087
Len Browndd778a52017-02-21 23:21:13 -05005088 if (is_deferred_skip(name_buf))
5089 continue;
5090
Len Brown41618e62017-02-09 18:25:22 -05005091 add_counter(0, path, name_buf, 64, SCOPE_CPU, COUNTER_ITEMS,
5092 FORMAT_DELTA, SYSFS_PERCPU);
5093 }
5094
5095}
5096
Len Brown1ef7d212017-02-10 23:54:15 -05005097
5098/*
5099 * parse cpuset with following syntax
5100 * 1,2,4..6,8-10 and set bits in cpu_subset
5101 */
5102void parse_cpu_command(char *optarg)
5103{
5104 unsigned int start, end;
5105 char *next;
5106
Len Brown4e4e1e72017-02-21 22:33:42 -05005107 if (!strcmp(optarg, "core")) {
5108 if (cpu_subset)
5109 goto error;
5110 show_core_only++;
5111 return;
5112 }
5113 if (!strcmp(optarg, "package")) {
5114 if (cpu_subset)
5115 goto error;
5116 show_pkg_only++;
5117 return;
5118 }
5119 if (show_core_only || show_pkg_only)
5120 goto error;
5121
Len Brown1ef7d212017-02-10 23:54:15 -05005122 cpu_subset = CPU_ALLOC(CPU_SUBSET_MAXCPUS);
5123 if (cpu_subset == NULL)
5124 err(3, "CPU_ALLOC");
5125 cpu_subset_size = CPU_ALLOC_SIZE(CPU_SUBSET_MAXCPUS);
5126
5127 CPU_ZERO_S(cpu_subset_size, cpu_subset);
5128
5129 next = optarg;
5130
5131 while (next && *next) {
5132
5133 if (*next == '-') /* no negative cpu numbers */
5134 goto error;
5135
5136 start = strtoul(next, &next, 10);
5137
5138 if (start >= CPU_SUBSET_MAXCPUS)
5139 goto error;
5140 CPU_SET_S(start, cpu_subset_size, cpu_subset);
5141
5142 if (*next == '\0')
5143 break;
5144
5145 if (*next == ',') {
5146 next += 1;
5147 continue;
5148 }
5149
5150 if (*next == '-') {
5151 next += 1; /* start range */
5152 } else if (*next == '.') {
5153 next += 1;
5154 if (*next == '.')
5155 next += 1; /* start range */
5156 else
5157 goto error;
5158 }
5159
5160 end = strtoul(next, &next, 10);
5161 if (end <= start)
5162 goto error;
5163
5164 while (++start <= end) {
5165 if (start >= CPU_SUBSET_MAXCPUS)
5166 goto error;
5167 CPU_SET_S(start, cpu_subset_size, cpu_subset);
5168 }
5169
5170 if (*next == ',')
5171 next += 1;
5172 else if (*next != '\0')
5173 goto error;
5174 }
5175
5176 return;
5177
5178error:
Len Brown4e4e1e72017-02-21 22:33:42 -05005179 fprintf(stderr, "\"--cpu %s\" malformed\n", optarg);
5180 help();
Len Brown1ef7d212017-02-10 23:54:15 -05005181 exit(-1);
5182}
5183
Len Brown812db3f2017-02-10 00:25:41 -05005184
Len Brown103a8fe2010-10-22 23:53:03 -04005185void cmdline(int argc, char **argv)
5186{
5187 int opt;
Len Brownd8af6f52015-02-10 01:56:38 -05005188 int option_index = 0;
5189 static struct option long_options[] = {
Len Brown388e9c82016-12-22 23:57:55 -05005190 {"add", required_argument, 0, 'a'},
Len Brown1ef7d212017-02-10 23:54:15 -05005191 {"cpu", required_argument, 0, 'c'},
Len Brownd8af6f52015-02-10 01:56:38 -05005192 {"Dump", no_argument, 0, 'D'},
Len Brown96e47152017-01-21 02:26:00 -05005193 {"debug", no_argument, 0, 'd'}, /* internal, not documented */
Len Brown3f44a5c2017-10-17 15:42:56 -04005194 {"enable", required_argument, 0, 'e'},
Len Brownd8af6f52015-02-10 01:56:38 -05005195 {"interval", required_argument, 0, 'i'},
5196 {"help", no_argument, 0, 'h'},
Len Brown812db3f2017-02-10 00:25:41 -05005197 {"hide", required_argument, 0, 'H'}, // meh, -h taken by --help
Len Brownd8af6f52015-02-10 01:56:38 -05005198 {"Joules", no_argument, 0, 'J'},
Len Brownc8ade362017-02-15 17:15:11 -05005199 {"list", no_argument, 0, 'l'},
Len Brownb7d8c142016-02-13 23:36:17 -05005200 {"out", required_argument, 0, 'o'},
Len Brown96e47152017-01-21 02:26:00 -05005201 {"quiet", no_argument, 0, 'q'},
Len Brown812db3f2017-02-10 00:25:41 -05005202 {"show", required_argument, 0, 's'},
Len Brownd8af6f52015-02-10 01:56:38 -05005203 {"Summary", no_argument, 0, 'S'},
5204 {"TCC", required_argument, 0, 'T'},
5205 {"version", no_argument, 0, 'v' },
5206 {0, 0, 0, 0 }
5207 };
Len Brown103a8fe2010-10-22 23:53:03 -04005208
5209 progname = argv[0];
5210
Len Brown3f44a5c2017-10-17 15:42:56 -04005211 while ((opt = getopt_long_only(argc, argv, "+C:c:Dde:hi:Jo:qST:v",
Len Brownd8af6f52015-02-10 01:56:38 -05005212 long_options, &option_index)) != -1) {
Len Brown103a8fe2010-10-22 23:53:03 -04005213 switch (opt) {
Len Brown388e9c82016-12-22 23:57:55 -05005214 case 'a':
5215 parse_add_command(optarg);
5216 break;
Len Brown1ef7d212017-02-10 23:54:15 -05005217 case 'c':
5218 parse_cpu_command(optarg);
5219 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005220 case 'D':
5221 dump_only++;
Len Brown8e180f32012-09-22 01:25:08 -04005222 break;
Len Brown3f44a5c2017-10-17 15:42:56 -04005223 case 'e':
5224 /* --enable specified counter */
5225 bic_enabled |= bic_lookup(optarg, SHOW_LIST);
5226 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005227 case 'd':
5228 debug++;
Len Brown3f44a5c2017-10-17 15:42:56 -04005229 ENABLE_BIC(BIC_DISABLED_BY_DEFAULT);
Len Brown2f32edf2012-09-21 23:45:46 -04005230 break;
Len Brown812db3f2017-02-10 00:25:41 -05005231 case 'H':
Len Brown3f44a5c2017-10-17 15:42:56 -04005232 /*
5233 * --hide: do not show those specified
5234 * multiple invocations simply clear more bits in enabled mask
5235 */
5236 bic_enabled &= ~bic_lookup(optarg, HIDE_LIST);
Len Brown812db3f2017-02-10 00:25:41 -05005237 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005238 case 'h':
5239 default:
5240 help();
5241 exit(1);
5242 case 'i':
Len Brown2a0609c2016-02-12 22:44:48 -05005243 {
5244 double interval = strtod(optarg, NULL);
5245
5246 if (interval < 0.001) {
Len Brownb7d8c142016-02-13 23:36:17 -05005247 fprintf(outf, "interval %f seconds is too small\n",
Len Brown2a0609c2016-02-12 22:44:48 -05005248 interval);
5249 exit(2);
5250 }
5251
Artem Bityutskiy47936f92017-10-04 15:01:47 +03005252 interval_tv.tv_sec = interval_ts.tv_sec = interval;
Len Brownb9ad8ee2017-07-19 19:28:37 -04005253 interval_tv.tv_usec = (interval - interval_tv.tv_sec) * 1000000;
Artem Bityutskiy47936f92017-10-04 15:01:47 +03005254 interval_ts.tv_nsec = (interval - interval_ts.tv_sec) * 1000000000;
Len Brown2a0609c2016-02-12 22:44:48 -05005255 }
Len Brown889facb2012-11-08 00:48:57 -05005256 break;
Dirk Brandewie5c56be92013-12-16 10:23:41 -08005257 case 'J':
5258 rapl_joules++;
5259 break;
Len Brownc8ade362017-02-15 17:15:11 -05005260 case 'l':
Len Brown3f44a5c2017-10-17 15:42:56 -04005261 ENABLE_BIC(BIC_DISABLED_BY_DEFAULT);
Len Brownc8ade362017-02-15 17:15:11 -05005262 list_header_only++;
5263 quiet++;
5264 break;
Len Brownb7d8c142016-02-13 23:36:17 -05005265 case 'o':
5266 outf = fopen_or_die(optarg, "w");
5267 break;
Len Brown96e47152017-01-21 02:26:00 -05005268 case 'q':
5269 quiet = 1;
5270 break;
Len Brown812db3f2017-02-10 00:25:41 -05005271 case 's':
Len Brown3f44a5c2017-10-17 15:42:56 -04005272 /*
5273 * --show: show only those specified
5274 * The 1st invocation will clear and replace the enabled mask
5275 * subsequent invocations can add to it.
5276 */
5277 if (shown == 0)
5278 bic_enabled = bic_lookup(optarg, SHOW_LIST);
5279 else
5280 bic_enabled |= bic_lookup(optarg, SHOW_LIST);
5281 shown = 1;
Len Brown812db3f2017-02-10 00:25:41 -05005282 break;
Len Brownd8af6f52015-02-10 01:56:38 -05005283 case 'S':
5284 summary_only++;
5285 break;
5286 case 'T':
5287 tcc_activation_temp_override = atoi(optarg);
5288 break;
5289 case 'v':
5290 print_version();
5291 exit(0);
5292 break;
Len Brown103a8fe2010-10-22 23:53:03 -04005293 }
5294 }
5295}
5296
5297int main(int argc, char **argv)
5298{
Len Brownb7d8c142016-02-13 23:36:17 -05005299 outf = stderr;
5300
Len Brown103a8fe2010-10-22 23:53:03 -04005301 cmdline(argc, argv);
5302
Len Brown96e47152017-01-21 02:26:00 -05005303 if (!quiet)
Len Brownd8af6f52015-02-10 01:56:38 -05005304 print_version();
Len Brown103a8fe2010-10-22 23:53:03 -04005305
Len Brown41618e62017-02-09 18:25:22 -05005306 probe_sysfs();
5307
Len Brown103a8fe2010-10-22 23:53:03 -04005308 turbostat_init();
5309
Andy Shevchenko3b4d5c72014-01-23 17:13:15 +02005310 /* dump counters and exit */
5311 if (dump_only)
5312 return get_and_dump_counters();
5313
Len Brownc8ade362017-02-15 17:15:11 -05005314 /* list header and exit */
5315 if (list_header_only) {
5316 print_header(",");
5317 flush_output_stdout();
5318 return 0;
5319 }
5320
Len Brown103a8fe2010-10-22 23:53:03 -04005321 /*
5322 * if any params left, it must be a command to fork
5323 */
5324 if (argc - optind)
5325 return fork_it(argv + optind);
5326 else
5327 turbostat_loop();
5328
5329 return 0;
5330}