| /* |
| * Copyright (c) 2012 Google, Inc |
| * Contributed by Stephane Eranian <eranian@gmail.com> |
| * |
| * Permission is hereby granted, free of charge, to any person obtaining a copy |
| * of this software and associated documentation files (the "Software"), to deal |
| * in the Software without restriction, including without limitation the rights |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
| * of the Software, and to permit persons to whom the Software is furnished to do so, |
| * subject to the following conditions: |
| * |
| * The above copyright notice and this permission notice shall be included in all |
| * copies or substantial portions of the Software. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
| * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A |
| * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF |
| * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE |
| * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| * |
| * This file is part of libpfm, a performance monitoring support library for |
| * applications on Linux. |
| * |
| * PMU: snbep_unc_pcu (Intel SandyBridge-EP PCU uncore) |
| */ |
| |
| static const intel_x86_umask_t snbep_unc_p_power_state_occupancy[]={ |
| { .uname = "CORES_C0", |
| .udesc = "Counts number of cores in C0", |
| .ucode = 0x4000, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| { .uname = "CORES_C3", |
| .udesc = "Counts number of cores in C3", |
| .ucode = 0x8000, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| { .uname = "CORES_C6", |
| .udesc = "Counts number of cores in C6", |
| .ucode = 0xc000, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| }; |
| |
| static const intel_x86_umask_t snbep_unc_p_occupancy_counters[]={ |
| { .uname = "C0", |
| .udesc = "Counts number of cores in C0", |
| .ucode = 0x0100, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| { .uname = "C3", |
| .udesc = "Counts number of cores in C3", |
| .ucode = 0x0200, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| { .uname = "C6", |
| .udesc = "Counts number of cores in C6", |
| .ucode = 0x0300, |
| .uflags = INTEL_X86_NCOMBO, |
| }, |
| }; |
| |
| static const intel_x86_entry_t intel_snbep_unc_p_pe[]={ |
| { .name = "UNC_P_CLOCKTICKS", |
| .desc = "PCU Uncore clockticks", |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| .cntmsk = 0xf, |
| .code = 0x00, |
| }, |
| { .name = "UNC_P_CORE0_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x3 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE1_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x4 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE2_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x5 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE3_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x6 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE4_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x7 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE5_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x8 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE6_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0x9 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_CORE7_TRANSITION_CYCLES", |
| .desc = "Core C State Transition Cycles", |
| .code = 0xa | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE0", |
| .desc = "Core C State Demotions", |
| .code = 0x1e, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE1", |
| .desc = "Core C State Demotions", |
| .code = 0x1f, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE2", |
| .desc = "Core C State Demotions", |
| .code = 0x20, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE3", |
| .desc = "Core C State Demotions", |
| .code = 0x21, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE4", |
| .desc = "Core C State Demotions", |
| .code = 0x22, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE5", |
| .desc = "Core C State Demotions", |
| .code = 0x23, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE6", |
| .desc = "Core C State Demotions", |
| .code = 0x24, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_DEMOTIONS_CORE7", |
| .desc = "Core C State Demotions", |
| .code = 0x25, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_FREQ_BAND0_CYCLES", |
| .desc = "Frequency Residency", |
| .code = 0xb, |
| .cntmsk = 0xf, |
| .flags = INTEL_X86_NO_AUTOENCODE, |
| .modmsk = SNBEP_UNC_PCU_BAND_ATTRS, |
| .modmsk_req = _SNBEP_UNC_ATTR_FF, |
| }, |
| { .name = "UNC_P_FREQ_BAND1_CYCLES", |
| .desc = "Frequency Residency", |
| .code = 0xc, |
| .cntmsk = 0xf, |
| .flags = INTEL_X86_NO_AUTOENCODE, |
| .modmsk = SNBEP_UNC_PCU_BAND_ATTRS, |
| .modmsk_req = _SNBEP_UNC_ATTR_FF, |
| }, |
| { .name = "UNC_P_FREQ_BAND2_CYCLES", |
| .desc = "Frequency Residency", |
| .code = 0xd, |
| .cntmsk = 0xf, |
| .flags = INTEL_X86_NO_AUTOENCODE, |
| .modmsk = SNBEP_UNC_PCU_BAND_ATTRS, |
| .modmsk_req = _SNBEP_UNC_ATTR_FF, |
| }, |
| { .name = "UNC_P_FREQ_BAND3_CYCLES", |
| .desc = "Frequency Residency", |
| .code = 0xe, |
| .cntmsk = 0xf, |
| .flags = INTEL_X86_NO_AUTOENCODE, |
| .modmsk = SNBEP_UNC_PCU_BAND_ATTRS, |
| .modmsk_req = _SNBEP_UNC_ATTR_FF, |
| }, |
| { .name = "UNC_P_FREQ_MAX_CURRENT_CYCLES", |
| .desc = "Current Strongest Upper Limit Cycles", |
| .code = 0x7, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_FREQ_MAX_LIMIT_THERMAL_CYCLES", |
| .desc = "Thermal Strongest Upper Limit Cycles", |
| .code = 0x4, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_FREQ_MAX_OS_CYCLES", |
| .desc = "OS Strongest Upper Limit Cycles", |
| .code = 0x6, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_FREQ_MAX_POWER_CYCLES", |
| .desc = "Power Strongest Upper Limit Cycles", |
| .code = 0x5, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_FREQ_MIN_IO_P_CYCLES", |
| .desc = "IO P Limit Strongest Lower Limit Cycles", |
| .code = 0x1 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .ngrp = 1, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| .numasks = LIBPFM_ARRAY_SIZE(snbep_unc_p_occupancy_counters), |
| .umasks = snbep_unc_p_occupancy_counters |
| }, |
| { .name = "UNC_P_FREQ_MIN_PERF_P_CYCLES", |
| .desc = "Perf P Limit Strongest Lower Limit Cycles", |
| .code = 0x2 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .ngrp = 1, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| .numasks = LIBPFM_ARRAY_SIZE(snbep_unc_p_occupancy_counters), |
| .umasks = snbep_unc_p_occupancy_counters |
| }, |
| { .name = "UNC_P_FREQ_TRANS_CYCLES", |
| .desc = "Cycles spent changing Frequency", |
| .code = 0x0 | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .ngrp = 1, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| .numasks = LIBPFM_ARRAY_SIZE(snbep_unc_p_occupancy_counters), |
| .umasks = snbep_unc_p_occupancy_counters |
| }, |
| { .name = "UNC_P_MEMORY_PHASE_SHEDDING_CYCLES", |
| .desc = "Memory Phase Shedding Cycles", |
| .code = 0x2f, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_POWER_STATE_OCCUPANCY", |
| .desc = "Number of cores in C0", |
| .code = 0x80, |
| .cntmsk = 0xf, |
| .ngrp = 1, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| .numasks = LIBPFM_ARRAY_SIZE(snbep_unc_p_power_state_occupancy), |
| .umasks = snbep_unc_p_power_state_occupancy |
| }, |
| { .name = "UNC_P_PROCHOT_EXTERNAL_CYCLES", |
| .desc = "External Prochot", |
| .code = 0xa, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_PROCHOT_INTERNAL_CYCLES", |
| .desc = "Internal Prochot", |
| .code = 0x9, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_TOTAL_TRANSITION_CYCLES", |
| .desc = "Total Core C State Transition Cycles", |
| .code = 0xb | (1ULL << 21), /* sel_ext */ |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_VOLT_TRANS_CYCLES_CHANGE", |
| .desc = "Cycles Changing Voltage", |
| .code = 0x3, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_VOLT_TRANS_CYCLES_DECREASE", |
| .desc = "Cycles Decreasing Voltage", |
| .code = 0x2, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_VOLT_TRANS_CYCLES_INCREASE", |
| .desc = "Cycles Increasing Voltage", |
| .code = 0x1, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| { .name = "UNC_P_VR_HOT_CYCLES", |
| .desc = "VR Hot", |
| .code = 0x32, |
| .cntmsk = 0xf, |
| .modmsk = SNBEP_UNC_PCU_ATTRS, |
| }, |
| }; |